configure.ac 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #----------------------------------------------------------------
  2. #
  3. # configure.ac
  4. #
  5. # Autoconf source file for the sgraph "supergraph"
  6. # for BLT graph widgets.
  7. #
  8. # This file, along with aclocal, autoconf, Makefile.am,
  9. # and automake can produce a highly functional configuration
  10. # script and Makefile.
  11. #
  12. # Bob Techentin
  13. # November 17, 2003
  14. #
  15. # Copyright 2003-2004 Mayo Foundation. All Rights Reserved
  16. # $Id: configure.ac,v 1.2 2004/02/10 16:05:40 techenti Exp $
  17. #
  18. #----------------------------------------------------------------
  19. #----------------------------------------------------------------
  20. # Declare the package name and version.
  21. # All the bouquets and brickbats go to Sharon. :-)
  22. #----------------------------------------------------------------
  23. AC_INIT(SGRAPH, 1.0, zahn.sharon@mayo.edu)
  24. #----------------------------------------------------------------
  25. # Give autoconf a point of reference, and tell it that
  26. # we're going to use automake later.
  27. #----------------------------------------------------------------
  28. AC_CONFIG_SRCDIR
  29. AM_INIT_AUTOMAKE(sgraph, 1.0)
  30. #----------------------------------------------------------------
  31. # Don't bother checking for host type, libraries, or
  32. # header file variations, as we're just dealing
  33. # with highly portable scripts at this level.
  34. #----------------------------------------------------------------
  35. AC_CONFIG_FILES([Makefile])
  36. AC_OUTPUT