12345678910111213141516171819202122232425262728 |
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ([2.59])
- AC_INIT(bind10-examples, 20120817, bind10-dev@isc.org)
- AC_CONFIG_SRCDIR([README])
- AM_INIT_AUTOMAKE
- AC_CONFIG_HEADERS([config.h])
- # Checks for programs.
- AC_PROG_CXX
- AC_LANG([C++])
- # Checks for BIND 10 headers and libraries
- AX_ISC_BIND10
- # For the example host program, we require the BIND 10 DNS library
- if test "x$BIND10_DNS_LIB" = "x"; then
- AC_MSG_ERROR([unable to find BIND 10 DNS library needed to build 'host'])
- fi
- # Checks for typedefs, structures, and compiler characteristics.
- AC_HEADER_STDBOOL
- AC_CONFIG_FILES([Makefile
- host/Makefile])
- AC_OUTPUT
|