Changeset 7b2a39b
- Timestamp:
- 04/22/06 00:59:24 (15 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 411f3c7
- Parents:
- 2d96bf2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
redb18ce r7b2a39b 54 54 55 55 AC_CHECK_HEADERS(netinet/in.h) 56 AC_CHECK_HEADER(netpacket/packet.h, 57 libtrace_netpacket_packet_h=true 58 AC_DEFINE(HAVE_NETPACKET_PACKET_H,1,[We have netpacket/packet.h]), 59 [libtrace_netpacket_packet_h=false]) 56 60 57 61 AC_CHECK_HEADER(net/if.h, … … 350 354 AM_CONDITIONAL([HAVE_CXX], [test "$libtrace_cxx" = true]) 351 355 AM_CONDITIONAL([HAVE_ZLIB], [test "$libtrace_zlib" = true]) 356 AM_CONDITIONAL([HAVE_NETPACKET_PACKET_H], [test "$libtrace_netpacket_packet_h" = true]) 352 357 AM_CONDITIONAL([LIBPACKETDUMP], [test "$libtrace_libpacketdump" = true]) 353 358 AM_CONDITIONAL([LIBTRACE_TOOLS], [test "$libtrace_tools" = true]) -
lib/Makefile.am
rdd2eaee r7b2a39b 5 5 libtrace_la_SOURCES = trace.c fifo.c fifo.h common.h \ 6 6 format_erf.c format_pcap.c format_wag.c format_legacy.c \ 7 format_rt.c format_helper.c format_helper.h format_linux.c \ 8 format_pcapfile.c \ 7 format_rt.c format_helper.c format_helper.h format_pcapfile.c \ 9 8 parse_cmd.c parse_cmd.h libtrace_int.h lt_inttypes.h \ 10 9 linktypes.c protocols.c 10 if HAVE_NETPACKET_PACKET_H 11 libtrace_la_SOURCES+=format_linux.c 12 endif 13 11 14 if HAVE_ZLIB 12 15 libtrace_la_SOURCES+=libtraceio-zlib.c … … 14 17 libtrace_la_SOURCES+=libtraceio-stdio.c 15 18 endif 16 #libtrace_la_SOURCES+=libtraceio-bzlib.c17 19 18 20 if DAG2_4 -
lib/trace.c
r114b8d6 r7b2a39b 212 212 erf_constructor(); 213 213 legacy_constructor(); 214 #ifdef HAVE_NETPACKET_PACKET_H 214 215 linuxnative_constructor(); 216 #endif 215 217 #ifdef HAVE_PCAP 216 218 pcap_constructor();
Note: See TracChangeset
for help on using the changeset viewer.