configure.ac 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #----------------------------------------------------------------
  2. #
  3. # configure.ac
  4. #
  5. # Autoconf source file for the addressDialog.
  6. #
  7. # This file, along with aclocal, autoconf, Makefile.am,
  8. # and automake can produce a highly functional configuration
  9. # script and Makefile.
  10. #
  11. #----------------------------------------------------------------
  12. #----------------------------------------------------------------
  13. # Declare the package name and version.
  14. #----------------------------------------------------------------
  15. AC_INIT(ADDRESSDIALOG, 1.0, schrauf@mayo.edu)
  16. #----------------------------------------------------------------
  17. # Give autoconf a point of reference, and tell it that
  18. # we're going to use automake later.
  19. #----------------------------------------------------------------
  20. AC_CONFIG_SRCDIR
  21. AM_INIT_AUTOMAKE(addressDialog, 1.0)
  22. #----------------------------------------------------------------
  23. # Don't bother checking for host type, libraries, or
  24. # header file variations, as we're just dealing
  25. # with highly portable scripts at this level.
  26. #----------------------------------------------------------------
  27. AC_CONFIG_FILES([Makefile])
  28. AC_OUTPUT