configure.ac 729 B

12345678910111213141516171819202122232425262728
  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. # For the example host program, we require the BIND 10 DNS library
  14. if test "x$BIND10_DNS_LIB" = "x"; then
  15. AC_MSG_ERROR([unable to find BIND 10 DNS library needed to build 'host'])
  16. fi
  17. # Checks for typedefs, structures, and compiler characteristics.
  18. AC_HEADER_STDBOOL
  19. AC_CONFIG_FILES([Makefile
  20. host/Makefile])
  21. AC_OUTPUT