Changeset 1585

Show
Ignore:
Timestamp:
04/30/10 20:20:37 (3 years ago)
Author:
ahu
Message:

oops

Files:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/pdns/configure.ac

    r1569 r1585  
    1818AC_LANG_CPLUSPLUS 
    1919 
     20BOOST_REQUIRE([1.34]) 
     21BOOST_FOREACH 
     22BOOST_FILESYSTEM([mt]) 
     23BOOST_PROGRAM_OPTIONS([mt]) 
     24BOOST_SERIALIZATION([mt]) 
     25BOOST_SYSTEM([mt]) 
     26 
    2027dnl Checks for header files. 
    2128AC_HEADER_STDC 
    2229AC_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) 
    2530 
    2631dnl Checks for typedefs, structures, and compiler characteristics. 
     
    188193 
    189194AM_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/null 
    197         then 
    198                 enable_nedmalloc=yes 
    199         else 
    200                 enable_nedmalloc=no 
    201         fi 
    202          ) 
    203 AC_MSG_RESULT($enable_nedmalloc) 
    204  
    205 AM_CONDITIONAL(NEDMALLOC,test x"$enable_nedmalloc" = "xyes") 
    206  
    207195 
    208196for a in $modules $dynmodules