Changeset 0afc0d7
- Timestamp:
- 10/06/04 14:21:00 (18 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:
- b007afc
- Parents:
- cd6034c
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal.m4
r82f2b7b r0afc0d7 2334 2334 AC_MSG_WARN([output file `$ofile' does not exist]) 2335 2335 fi 2336 if test -z `grep -e 'shared_ext.*shrext' $ofile`; then2336 if test -z "`grep -e 'shared_ext.*shrext' $ofile`"; then 2337 2337 # Make sure $shared_ext gets set to $shrext 2338 2338 if sed -e 's/shared_ext/shrext/g' "$ofile" > "${ofile}T"; then -
configure
r257e35b r0afc0d7 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.59 for libtrace 2.0. 3.3 # Generated by GNU Autoconf 2.59 for libtrace 2.0.4. 4 4 # 5 5 # Report bugs to <libtrace@wand.net.nz>. … … 424 424 PACKAGE_NAME='libtrace' 425 425 PACKAGE_TARNAME='libtrace' 426 PACKAGE_VERSION='2.0. 3'427 PACKAGE_STRING='libtrace 2.0. 3'426 PACKAGE_VERSION='2.0.4' 427 PACKAGE_STRING='libtrace 2.0.4' 428 428 PACKAGE_BUGREPORT='libtrace@wand.net.nz' 429 429 … … 955 955 # This message is too long to be a string in the A/UX 3.1 sh. 956 956 cat <<_ACEOF 957 \`configure' configures libtrace 2.0. 3to adapt to many kinds of systems.957 \`configure' configures libtrace 2.0.4 to adapt to many kinds of systems. 958 958 959 959 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1021 1021 if test -n "$ac_init_help"; then 1022 1022 case $ac_init_help in 1023 short | recursive ) echo "Configuration of libtrace 2.0. 3:";;1023 short | recursive ) echo "Configuration of libtrace 2.0.4:";; 1024 1024 esac 1025 1025 cat <<\_ACEOF … … 1165 1165 if $ac_init_version; then 1166 1166 cat <<\_ACEOF 1167 libtrace configure 2.0. 31167 libtrace configure 2.0.4 1168 1168 generated by GNU Autoconf 2.59 1169 1169 … … 1179 1179 running configure, to aid debugging if configure makes a mistake. 1180 1180 1181 It was created by libtrace $as_me 2.0. 3, which was1181 It was created by libtrace $as_me 2.0.4, which was 1182 1182 generated by GNU Autoconf 2.59. Invocation command line was 1183 1183 … … 1805 1805 # Define the identity of the package. 1806 1806 PACKAGE=libtrace 1807 VERSION=2.0. 31807 VERSION=2.0.4 1808 1808 1809 1809 cat >>confdefs.h <<_ACEOF … … 19152 19152 echo "$as_me: WARNING: output file \`$ofile' does not exist" >&2;} 19153 19153 fi 19154 if test -z `grep -e 'shared_ext.*shrext' $ofile`; then19154 if test -z "`grep -e 'shared_ext.*shrext' $ofile`"; then 19155 19155 # Make sure $shared_ext gets set to $shrext 19156 19156 if sed -e 's/shared_ext/shrext/g' "$ofile" > "${ofile}T"; then … … 21033 21033 cat >&5 <<_CSEOF 21034 21034 21035 This file was extended by libtrace $as_me 2.0. 3, which was21035 This file was extended by libtrace $as_me 2.0.4, which was 21036 21036 generated by GNU Autoconf 2.59. Invocation command line was 21037 21037 … … 21096 21096 cat >>$CONFIG_STATUS <<_ACEOF 21097 21097 ac_cs_version="\\ 21098 libtrace config.status 2.0. 321098 libtrace config.status 2.0.4 21099 21099 configured by $0, generated by GNU Autoconf 2.59, 21100 21100 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" -
configure.in
r257e35b r0afc0d7 1 1 dnl Process this file with autoconf to produce a configure script. 2 AC_INIT(libtrace,2.0. 3,[libtrace@wand.net.nz],libtrace)2 AC_INIT(libtrace,2.0.4,[libtrace@wand.net.nz],libtrace) 3 3 AC_CONFIG_SRCDIR(lib/trace.c) 4 AM_INIT_AUTOMAKE(libtrace,2.0. 3)4 AM_INIT_AUTOMAKE(libtrace,2.0.4) 5 5 6 6 dnl GNU C library -
lib/Makefile.am
r53de8c0 r0afc0d7 3 3 include_HEADERS = libtrace.h dagformat.h wag.h 4 4 libtrace_la_LIBADD = @LIBPCAP@ @LIBZ@ 5 libtrace_la_LDFLAGS=-version-info 2: 3:0 @LIBPCAP_PATH@ @LIBZ_PATH@5 libtrace_la_LDFLAGS=-version-info 2:4:0 @LIBPCAP_PATH@ @LIBZ_PATH@ -
lib/Makefile.in
r9e33dbe r0afc0d7 95 95 include_HEADERS = libtrace.h dagformat.h wag.h 96 96 libtrace_la_LIBADD = @LIBPCAP@ @LIBZ@ 97 libtrace_la_LDFLAGS = -version-info 2: 2:0 @LIBPCAP_PATH@ @LIBZ_PATH@97 libtrace_la_LDFLAGS = -version-info 2:4:0 @LIBPCAP_PATH@ @LIBZ_PATH@ 98 98 subdir = lib 99 99 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -
lib/trace.c
rcd6034c r0afc0d7 1229 1229 if (SERVER(source) && CLIENT(dest)) { 1230 1230 return USE_SOURCE; 1231 } else if (SERVER(dest) && CLIENT( SOURCE)) {1231 } else if (SERVER(dest) && CLIENT(source)) { 1232 1232 return USE_DEST; 1233 1233 } else if (ROOT_SERVER(source) && !ROOT_SERVER(dest)) {
Note: See TracChangeset
for help on using the changeset viewer.