Changeset 1585
- Timestamp:
- 04/30/10 20:20:37 (3 years ago)
- Files:
-
- 1 copied
-
trunk/pdns/configure.ac (copied) (copied from trunk/pdns/configure.in) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/configure.ac
r1569 r1585 18 18 AC_LANG_CPLUSPLUS 19 19 20 BOOST_REQUIRE([1.34]) 21 BOOST_FOREACH 22 BOOST_FILESYSTEM([mt]) 23 BOOST_PROGRAM_OPTIONS([mt]) 24 BOOST_SERIALIZATION([mt]) 25 BOOST_SYSTEM([mt]) 26 20 27 dnl Checks for header files. 21 28 AC_HEADER_STDC 22 29 AC_CHECK_HEADERS(fcntl.h getopt.h limits.h strings.h sys/time.h syslog.h unistd.h) 23 AC_CHECK_HEADERS(boost/shared_ptr.hpp, ,24 echo Missing boost - please install Boost packages or see http://doc.powerdns.com/compiling-powerdns.html; exit)25 30 26 31 dnl Checks for typedefs, structures, and compiler characteristics. … … 188 193 189 194 AM_CONDITIONAL(RECURSOR,test x"$enable_recursor" = "xyes") 190 191 192 AC_MSG_CHECKING(whether we should use nedmalloc allocator)193 AC_ARG_ENABLE(nedmalloc,194 [ --enable-nedmalloc If we should use nedmalloc],195 enable_nedmalloc=$enableval,196 if echo $host_os | grep -i freebsd > /dev/null197 then198 enable_nedmalloc=yes199 else200 enable_nedmalloc=no201 fi202 )203 AC_MSG_RESULT($enable_nedmalloc)204 205 AM_CONDITIONAL(NEDMALLOC,test x"$enable_nedmalloc" = "xyes")206 207 195 208 196 for a in $modules $dynmodules