Changeset 23c13e8
- Timestamp:
- 03/24/05 14:58:01 (16 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:
- 05e83dc
- Parents:
- 9075d49
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
rea161ea r23c13e8 20 20 AC_HEADER_STDC 21 21 dnl AC_CHECK_HEADERS(errno.h stdlib.h stdio.h assert.h string.h netinet/in.h assert.h errno.h fcntl.h net/ethernet.h netdb.h pcap.h stdio.h stdlib.h string.h sys/stat.h sys/types.h sys/socket.h sys/un.h unistd.h time.h sys/ioctl.h net/bpf.h pcap.h zlib.h pcap-bpf.h) 22 AC_CHECK_HEADERS(pcap.h pcap-bpf.h net/bpf.h zlib.h sys/limits.h stddef.h stdint.h limits.h dagapi.h )22 AC_CHECK_HEADERS(pcap.h pcap-bpf.h net/bpf.h zlib.h sys/limits.h stddef.h inttypes.h limits.h dagapi.h ) 23 23 24 24 # Checking for the right bpf header to include -
lib/fifo.c
rb1a0f24 r23c13e8 40 40 #include <sys/types.h> 41 41 42 #ifdef HAVE_STDINT_H 43 # include <stdint.h> 42 #ifdef HAVE_INTTYPES_H 43 # include <inttypes.h> 44 #else 45 # error "Can't find inttypes.h, this needs to be fixed" 44 46 #endif 45 47 -
lib/trace.c
r9075d49 r23c13e8 68 68 #include <sys/ioctl.h> 69 69 70 #ifdef HAVE_ STDINT_H71 # include < stdint.h>70 #ifdef HAVE_INTTYPES_H 71 # include <inttypes.h> 72 72 #else 73 # error "Can't find stdint.h - you need to replace this"73 # error "Can't find inttypes.h - this needs to be fixed" 74 74 #endif 75 75
Note: See TracChangeset
for help on using the changeset viewer.