configure.ac 542 B

1234567891011121314151617181920212223
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.59])
  4. AC_INIT(bind10-examples, 20120817, bind10-dev@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_LANG([C++])
  11. # Checks for BIND 10 headers and libraries
  12. AX_ISC_BIND10
  13. # Checks for typedefs, structures, and compiler characteristics.
  14. AC_HEADER_STDBOOL
  15. AC_CONFIG_FILES([Makefile
  16. host/Makefile])
  17. AC_OUTPUT