Changeset 496 for trunk/configure.in


Ignore:
Timestamp:
11/03/05 17:17:41 (8 years ago)
Author:
dlawson
Message:

2.0.25

Fixes for builds under openbsd:

  • pcap uses a struct bpf_filter, not struct timeval. fixed format_pcap to solve this
  • #includes in libpacketdump - libpacketdump still not working properly
  • rijndael.c and .h conflicted with a system function called 'encrypt' - renamed encrypt and decrypt to r_* within rijndael*
  • UINT64_MAX not defined under freebsd
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r489 r496  
    33LIBTRACE_MAJOR=2 
    44LIBTRACE_MID=0 
    5 LIBTRACE_MINOR=24 
    6  
    7 AC_INIT(libtrace,2.0.24,[contact@wand.net.nz],libtrace) 
     5LIBTRACE_MINOR=25 
     6 
     7AC_INIT(libtrace,2.0.25,[contact@wand.net.nz],libtrace) 
    88AC_CONFIG_SRCDIR(lib/trace.c) 
    9 AM_INIT_AUTOMAKE(libtrace,2.0.24) 
     9AM_INIT_AUTOMAKE(libtrace,2.0.25) 
    1010 
    1111AC_CONFIG_FILES([Makefile lib/Makefile docs/Makefile libpacketdump/Makefile tools/Makefile tools/traceanon/Makefile tools/tracedump/Makefile tools/tracemerge/Makefile tools/tracereport/Makefile tools/tracertstats/Makefile tools/tracesplit/Makefile  ]) 
     
    3737AC_CHECK_FUNCS(socket strdup) 
    3838 
     39AC_CHECK_SIZEOF([long int]) 
     40 
     41# Check for various broken functions 
     42AC_FUNC_MALLOC 
     43AC_FUNC_REALLOC 
     44 
     45# *BSD doesn't have strndup. Currently provide our own. 
     46AC_REPLACE_FUNCS(strndup) 
     47 
    3948# Checks for header files. 
    4049AC_HEADER_STDC 
     
    5059]) 
    5160 
     61 
     62AC_CHECK_HEADER(netinet/ether.h, 
     63                AC_DEFINE(HAVE_NETINET_ETHER_H,1,[We have netinet/ether.h] 
     64), [], 
     65[ 
     66 #include <sys/types.h> 
     67 #include <sys/socket.h> 
     68 #include <netinet/in.h> 
     69 #include <net/if.h> 
     70]) 
    5271 
    5372AC_CHECK_HEADER(netinet/if_ether.h, 
     
    96115             [AC_DEFINE(HAVE_GDC_H,0,[Conditional for building with libGDC support]) libtrace_gdc=false]) 
    97116 
    98 # Check for various broken functions 
    99 AC_FUNC_MALLOC 
    100 AC_FUNC_REALLOC 
    101  
    102 # *BSD doesn't have strndup. Currently provide our own. 
    103 AC_REPLACE_FUNCS(strndup) 
    104117 
    105118# Check to see if we have libpcap 
     
    354367AC_OUTPUT 
    355368 
    356 function reportopt() { 
     369reportopt() { 
    357370        if test x"$2" = xtrue -o x"$2" = xyes; then 
    358371                AC_MSG_NOTICE([$1: Yes]) 
Note: See TracChangeset for help on using the changeset viewer.