configure.ac 652 B

1234567891011121314151617181920212223242526272829
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.64])
  4. AC_INIT(bind, 10.0.0, bind10-bugs@isc.org)
  5. AC_CONFIG_SRCDIR(README)
  6. AM_INIT_AUTOMAKE
  7. AC_CONFIG_HEADERS([config.h])
  8. # Checks for programs.
  9. AC_PROG_CXX
  10. AC_PROG_CC
  11. AC_PROG_RANLIB
  12. # Checks for libraries.
  13. # Checks for header files.
  14. # Checks for typedefs, structures, and compiler characteristics.
  15. AC_HEADER_STDBOOL
  16. AC_TYPE_SIZE_T
  17. # Checks for library functions.
  18. AC_CONFIG_FILES([Makefile
  19. src/Makefile
  20. src/lib/Makefile
  21. src/lib/dns/Makefile])
  22. AC_OUTPUT