Changeset 898 for trunk/configure.in


Ignore:
Timestamp:
06/27/06 14:04:37 (7 years ago)
Author:
perry
Message:

Fix problems with zlib in the new build environment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r896 r898  
    211211AM_CONDITIONAL([HAVE_DAG], [test "$libtrace_dag" = true]) 
    212212AM_CONDITIONAL([DAG2_4], [test "$libtrace_dag2_4" = true]) 
    213 AM_CONDITIONAL([HAVE_CXX], [test "$libtrace_cxx" = true]) 
    214 AM_CONDITIONAL([HAVE_ZLIB], [test "$libtrace_zlib" = true]) 
     213AM_CONDITIONAL([HAVE_ZLIB], [test "$ac_cv_lib_z_gzopen" = yes]) 
    215214AM_CONDITIONAL([HAVE_NETPACKET_PACKET_H], [test "$libtrace_netpacket_packet_h" = true]) 
    216 AM_CONDITIONAL([LIBPACKETDUMP], [test "$libtrace_libpacketdump" = true]) 
    217 AM_CONDITIONAL([LIBGDC], [test "$libtrace_gdc" = true]) 
    218  
     215AM_CONDITIONAL([LIBGDC], [test "$ac_cv_header_gdc_h" = yes]) 
    219216 
    220217# Check for miscellaneous programs 
     
    245242} 
    246243 
     244echo 
    247245AC_MSG_NOTICE([Libtrace version $PACKAGE_VERSION]) 
    248 reportopt "Compiled with BPF filter support" $libtrace_bpf  
    249 reportopt "Compiled with PCAP support" $libtrace_pcap 
    250 reportopt "Compiled with compressed trace (zlib) support" $libtrace_zlib 
     246reportopt "Compiled with PCAP support" $ac_cv_lib_pcap_pcap_open_live 
     247reportopt "Compiled with compressed trace (zlib) support" $ac_cv_lib_z_gzopen 
    251248if test x"$libtrace_dag" = xtrue; then 
    252249        if test x"$libtrace_dag2_4"; then 
     
    259256fi 
    260257reportopt "Building man pages/documentation" $libtrace_doxygen 
    261 reportopt "Building libpacketdump" $libtrace_libpacketdump 
    262  
     258 
Note: See TracChangeset for help on using the changeset viewer.