configure.ac 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #----------------------------------------------------------------
  2. #
  3. # configure.ac
  4. #
  5. # Autoconf source file for the getFilePreview widget package
  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. # Bob Techentin
  12. # January 22, 2004
  13. # Copyright 2004 Mayo Foundation. All Rights Reserved
  14. #
  15. # $Id: configure.ac,v 1.1 2004/02/10 16:04:02 techenti Exp $
  16. #
  17. #----------------------------------------------------------------
  18. #----------------------------------------------------------------
  19. # Declare the package name and version.
  20. # All the bouquets and brickbats go to Bob. :-)
  21. #----------------------------------------------------------------
  22. AC_INIT(getFilePreview, 1.0, techentin.robert@mayo.edu)
  23. #----------------------------------------------------------------
  24. # Give autoconf a point of reference, and tell it that
  25. # we're going to use automake later.
  26. #----------------------------------------------------------------
  27. AC_CONFIG_SRCDIR
  28. AM_INIT_AUTOMAKE(getFilePreview, 1.0)
  29. #----------------------------------------------------------------
  30. # Don't bother checking for host type, libraries, or
  31. # header file variations, as we're just dealing
  32. # with highly portable scripts at this level.
  33. #----------------------------------------------------------------
  34. AC_CONFIG_FILES([Makefile])
  35. AC_OUTPUT