Changeset 183b39e
- Timestamp:
- 11/30/04 16:09:16 (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:
- 68d4cd7
- Parents:
- 48ea5b6
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r48ea5b6 r183b39e 14 14 15 15 16 SHELL = / bin/sh16 SHELL = /usr/local/bin/bash 17 17 18 18 srcdir = . … … 39 39 top_builddir = . 40 40 41 ACLOCAL = ${SHELL} /home/d aniel/libtrace/missing --run aclocal42 AUTOCONF = ${SHELL} /home/d aniel/libtrace/missing --run autoconf43 AUTOMAKE = ${SHELL} /home/d aniel/libtrace/missing --run automake44 AUTOHEADER = ${SHELL} /home/d aniel/libtrace/missing --run autoheader45 46 INSTALL = / bin/install -c41 ACLOCAL = ${SHELL} /home/dlawson/libtrace/missing --run aclocal 42 AUTOCONF = ${SHELL} /home/dlawson/libtrace/missing --run autoconf 43 AUTOMAKE = ${SHELL} /home/dlawson/libtrace/missing --run automake 44 AUTOHEADER = ${SHELL} /home/dlawson/libtrace/missing --run autoheader 45 46 INSTALL = /usr/bin/install -c 47 47 INSTALL_PROGRAM = ${INSTALL} 48 48 INSTALL_DATA = ${INSTALL} -m 644 … … 57 57 POST_UNINSTALL = : 58 58 host_alias = 59 host_triplet = i 686-pc-linux-gnu59 host_triplet = i386-unknown-freebsd5.2.1 60 60 ADD_INCLS = 61 61 ADD_LDFLAGS = -L/usr/lib -L/usr/lib 62 62 ADD_LIBS = -lpcap -lz 63 AMTAR = ${SHELL} /home/d aniel/libtrace/missing --run tar63 AMTAR = ${SHELL} /home/dlawson/libtrace/missing --run tar 64 64 AR = ar 65 65 AS = @AS@ 66 AWK = gawk66 AWK = nawk 67 67 CC = gcc 68 68 CXX = g++ … … 74 74 EGREP = grep -E 75 75 EXEEXT = 76 F77 = 76 F77 = f77 77 77 GCJ = @GCJ@ 78 78 GCJFLAGS = @GCJFLAGS@ … … 89 89 am__include = include 90 90 am__quote = 91 install_sh = /home/d aniel/libtrace/install-sh91 install_sh = /home/dlawson/libtrace/install-sh 92 92 93 93 SUBDIRS = replace lib -
config.h
r48ea5b6 r183b39e 15 15 16 16 /* Define to 1 if you have the <libxml2/libxml/parser.h> header file. */ 17 #define HAVE_LIBXML2_LIBXML_PARSER_H 1 17 /* #undef HAVE_LIBXML2_LIBXML_PARSER_H */ 18 18 19 19 /* Define to 1 if you have the <libxml/parser.h> header file. */ … … 27 27 28 28 /* Define to 1 if you have the <net/bpf.h> header file. */ 29 /* #undef HAVE_NET_BPF_H */ 29 #define HAVE_NET_BPF_H 1 30 30 31 31 /* Define to 1 if you have the <parser.h> header file. */ … … 33 33 34 34 /* Define to 1 if you have the <pcap-bpf.h> header file. */ 35 #define HAVE_PCAP_BPF_H 1 35 /* #undef HAVE_PCAP_BPF_H */ 36 36 37 37 /* Define to 1 if you have the <pcap.h> header file. */ … … 60 60 61 61 /* Define to 1 if you have the `strndup' function. */ 62 #define HAVE_STRNDUP 1 62 /* #undef HAVE_STRNDUP */ 63 63 64 64 /* Define to 1 if you have the <sys/limits.h> header file. */ 65 /* #undef HAVE_SYS_LIMITS_H */ 65 #define HAVE_SYS_LIMITS_H 1 66 66 67 67 /* Define to 1 if you have the <sys/stat.h> header file. */ … … 109 109 110 110 /* Number of bits in a file offset, on hosts where this is settable. */ 111 #define _FILE_OFFSET_BITS 64 111 /* #undef _FILE_OFFSET_BITS */ 112 112 113 113 /* Define for large files, on AIX-style hosts. */ -
examples/tracedump/Makefile
rdce95f3 r183b39e 1 1 CXX=g++ 2 INCLUDES=-I/usr/local/ wand/include2 INCLUDES=-I/usr/local/include 3 3 # Directory to search for plugins 4 4 LIBDIR="./" -
libtool
r48ea5b6 r183b39e 1 #! / bin/sh1 #! /usr/local/bin/bash 2 2 3 3 # libtoolT - Provide generalized library-building support services. … … 31 31 32 32 # A sed program that does not truncate output. 33 SED="/ bin/sed"33 SED="/usr/bin/sed" 34 34 35 35 # Sed that helps us avoid accidentally triggering echo(1) options like -n. 36 Xsed="/ bin/sed -e s/^X//"36 Xsed="/usr/bin/sed -e s/^X//" 37 37 38 38 # The HP-UX ksh and POSIX shell print the target directory to stdout … … 41 41 42 42 # The names of the tagged configurations supported by this script. 43 available_tags=" CXX "43 available_tags=" CXX F77" 44 44 45 45 # ### BEGIN LIBTOOL CONFIG 46 46 47 # Libtool was configured on host carbon:47 # Libtool was configured on host gnub.wandnet: 48 48 49 49 # Shell to use when invoking shell scripts. 50 SHELL="/ bin/sh"50 SHELL="/usr/local/bin/bash" 51 51 52 52 # Whether or not to build shared libraries. … … 57 57 58 58 # Whether or not to add -lc for building shared libraries. 59 build_libtool_need_lc= no59 build_libtool_need_lc=yes 60 60 61 61 # Whether or not to disallow shared libs when runtime libs are static … … 67 67 # The host system. 68 68 host_alias= 69 host=i 686-pc-linux-gnu69 host=i386-unknown-freebsd5.2.1 70 70 71 71 # An echo program that does not interpret backslashes. … … 89 89 90 90 # The linker used to build libraries. 91 LD="/usr/ i686-pc-linux-gnu/bin/ld"91 LD="/usr/bin/ld" 92 92 93 93 # Whether we need hard or soft links. … … 139 139 140 140 # What is the maximum length of a command? 141 max_cmd_len= 32768141 max_cmd_len=16384 142 142 143 143 # Does compiler simultaneously support -c and -o options? … … 178 178 179 179 # Library versioning type. 180 version_type= linux180 version_type=freebsd-elf 181 181 182 182 # Format of library name prefix. … … 185 185 # List of archive names. First name is the real one, the rest are links. 186 186 # The last name is the one that the linker finds with -lNAME. 187 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext} \$major\$libname\${shared_ext}"187 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext} \$libname\${shared_ext}" 188 188 189 189 # The coded name of the library, if different from the real name. 190 soname_spec=" \${libname}\${release}\${shared_ext}\$major"190 soname_spec="" 191 191 192 192 # Commands used to build and install an old-style archive. … … 204 204 # Commands used to build and install a shared archive. 205 205 archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" 206 archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ 207 cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ 208 \$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ 209 \$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib" 206 archive_expsym_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib" 210 207 postinstall_cmds="" 211 208 postuninstall_cmds="" … … 252 249 253 250 # Commands used to finish a libtool library installation in a directory. 254 finish_cmds=" PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"251 finish_cmds="" 255 252 256 253 # Same as above, but a single script fragment to be evaled but not shown. … … 317 314 318 315 # Compile-time system search path for libraries 319 sys_lib_search_path_spec=" /lib /usr/lib /usr/local/lib"316 sys_lib_search_path_spec=" /usr/lib/" 320 317 321 318 # Run-time system search path for libraries … … 6835 6832 # ### BEGIN LIBTOOL TAG CONFIG: CXX 6836 6833 6837 # Libtool was configured on host carbon:6834 # Libtool was configured on host gnub.wandnet: 6838 6835 6839 6836 # Shell to use when invoking shell scripts. 6840 SHELL="/ bin/sh"6837 SHELL="/usr/local/bin/bash" 6841 6838 6842 6839 # Whether or not to build shared libraries. … … 6857 6854 # The host system. 6858 6855 host_alias= 6859 host=i 686-pc-linux-gnu6856 host=i386-unknown-freebsd5.2.1 6860 6857 6861 6858 # An echo program that does not interpret backslashes. … … 6879 6876 6880 6877 # The linker used to build libraries. 6881 LD="/usr/ i686-pc-linux-gnu/bin/ld"6878 LD="/usr/bin/ld" 6882 6879 6883 6880 # Whether we need hard or soft links. … … 6929 6926 6930 6927 # What is the maximum length of a command? 6931 max_cmd_len= 327686928 max_cmd_len=16384 6932 6929 6933 6930 # Does compiler simultaneously support -c and -o options? … … 6968 6965 6969 6966 # Library versioning type. 6970 version_type= linux6967 version_type=freebsd-elf 6971 6968 6972 6969 # Format of library name prefix. … … 6975 6972 # List of archive names. First name is the real one, the rest are links. 6976 6973 # The last name is the one that the linker finds with -lNAME. 6977 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext} \$major\$libname\${shared_ext}"6974 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext} \$libname\${shared_ext}" 6978 6975 6979 6976 # The coded name of the library, if different from the real name. 6980 soname_spec=" \${libname}\${release}\${shared_ext}\$major"6977 soname_spec="" 6981 6978 6982 6979 # Commands used to build and install an old-style archive. … … 7008 7005 # Dependencies to place before the objects being linked to create a 7009 7006 # shared library. 7010 predep_objects="/usr/lib/ gcc-lib/i686-pc-linux-gnu/3.3.4/../../../crti.o /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/crtbeginS.o"7007 predep_objects="/usr/lib/crti.o /usr/lib/crtbeginS.o" 7011 7008 7012 7009 # Dependencies to place after the objects being linked to create a 7013 7010 # shared library. 7014 postdep_objects="/usr/lib/ gcc-lib/i686-pc-linux-gnu/3.3.4/crtendS.o /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/../../../crtn.o"7011 postdep_objects="/usr/lib/crtendS.o /usr/lib/crtn.o" 7015 7012 7016 7013 # Dependencies to place before the objects being linked to create a … … 7020 7017 # Dependencies to place after the objects being linked to create a 7021 7018 # shared library. 7022 postdeps="-lstdc++ -lm -lgcc_ s -lc -lgcc_s"7019 postdeps="-lstdc++ -lm -lgcc_pic -lgcc_pic" 7023 7020 7024 7021 # The library search path used internally by the compiler when linking 7025 7022 # a shared library. 7026 compiler_lib_search_path="-L/usr/lib /gcc-lib/i686-pc-linux-gnu/3.3.4 -L/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/../../../../i686-pc-linux-gnu/lib -L/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.4/../../.."7023 compiler_lib_search_path="-L/usr/lib" 7027 7024 7028 7025 # Method to check whether dependent libraries are shared objects. … … 7039 7036 7040 7037 # Commands used to finish a libtool library installation in a directory. 7041 finish_cmds=" PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"7038 finish_cmds="" 7042 7039 7043 7040 # Same as above, but a single script fragment to be evaled but not shown. … … 7104 7101 7105 7102 # Compile-time system search path for libraries 7106 sys_lib_search_path_spec=" /lib /usr/lib /usr/local/lib"7103 sys_lib_search_path_spec=" /usr/lib/" 7107 7104 7108 7105 # Run-time system search path for libraries … … 7129 7126 # ### END LIBTOOL TAG CONFIG: CXX 7130 7127 7128 # ### BEGIN LIBTOOL TAG CONFIG: F77 7129 7130 # Libtool was configured on host gnub.wandnet: 7131 7132 # Shell to use when invoking shell scripts. 7133 SHELL="/usr/local/bin/bash" 7134 7135 # Whether or not to build shared libraries. 7136 build_libtool_libs=yes 7137 7138 # Whether or not to build static libraries. 7139 build_old_libs=yes 7140 7141 # Whether or not to add -lc for building shared libraries. 7142 build_libtool_need_lc=no 7143 7144 # Whether or not to disallow shared libs when runtime libs are static 7145 allow_libtool_libs_with_static_runtimes=no 7146 7147 # Whether or not to optimize for fast installation. 7148 fast_install=yes 7149 7150 # The host system. 7151 host_alias= 7152 host=i386-unknown-freebsd5.2.1 7153 7154 # An echo program that does not interpret backslashes. 7155 echo="echo" 7156 7157 # The archiver. 7158 AR="ar" 7159 AR_FLAGS="cru" 7160 7161 # A C compiler. 7162 LTCC="gcc" 7163 7164 # A language-specific compiler. 7165 CC="f77" 7166 7167 # Is the compiler the GNU C compiler? 7168 with_gcc=yes 7169 7170 # An ERE matcher. 7171 EGREP="grep -E" 7172 7173 # The linker used to build libraries. 7174 LD="/usr/bin/ld" 7175 7176 # Whether we need hard or soft links. 7177 LN_S="ln -s" 7178 7179 # A BSD-compatible nm program. 7180 NM="/usr/bin/nm -B" 7181 7182 # A symbol stripping program 7183 STRIP="strip" 7184 7185 # Used to examine libraries when file_magic_cmd begins "file" 7186 MAGIC_CMD=file 7187 7188 # Used on cygwin: DLL creation program. 7189 DLLTOOL="dlltool" 7190 7191 # Used on cygwin: object dumper. 7192 OBJDUMP="objdump" 7193 7194 # Used on cygwin: assembler. 7195 AS="as" 7196 7197 # The name of the directory that contains temporary libtool files. 7198 objdir=.libs 7199 7200 # How to create reloadable object files. 7201 reload_flag=" -r" 7202 reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" 7203 7204 # How to pass a linker flag through the compiler. 7205 wl="-Wl," 7206 7207 # Object file suffix (normally "o"). 7208 objext="o" 7209 7210 # Old archive suffix (normally "a"). 7211 libext="a" 7212 7213 # Shared library suffix (normally ".so"). 7214 shrext='.so' 7215 7216 # Executable file suffix (normally ""). 7217 exeext="" 7218 7219 # Additional compiler flags for building library objects. 7220 pic_flag=" -fPIC" 7221 pic_mode=default 7222 7223 # What is the maximum length of a command? 7224 max_cmd_len=16384 7225 7226 # Does compiler simultaneously support -c and -o options? 7227 compiler_c_o="yes" 7228 7229 # Must we lock files when doing compilation ? 7230 need_locks="no" 7231 7232 # Do we need the lib prefix for modules? 7233 need_lib_prefix=no 7234 7235 # Do we need a version for libraries? 7236 need_version=no 7237 7238 # Whether dlopen is supported. 7239 dlopen_support=unknown 7240 7241 # Whether dlopen of programs is supported. 7242 dlopen_self=unknown 7243 7244 # Whether dlopen of statically linked programs is supported. 7245 dlopen_self_static=unknown 7246 7247 # Compiler flag to prevent dynamic linking. 7248 link_static_flag="-static" 7249 7250 # Compiler flag to turn off builtin functions. 7251 no_builtin_flag="" 7252 7253 # Compiler flag to allow reflexive dlopens. 7254 export_dynamic_flag_spec="\${wl}--export-dynamic" 7255 7256 # Compiler flag to generate shared objects directly from archives. 7257 whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" 7258 7259 # Compiler flag to generate thread-safe objects. 7260 thread_safe_flag_spec="" 7261 7262 # Library versioning type. 7263 version_type=freebsd-elf 7264 7265 # Format of library name prefix. 7266 libname_spec="lib\$name" 7267 7268 # List of archive names. First name is the real one, the rest are links. 7269 # The last name is the one that the linker finds with -lNAME. 7270 library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext} \$libname\${shared_ext}" 7271 7272 # The coded name of the library, if different from the real name. 7273 soname_spec="" 7274 7275 # Commands used to build and install an old-style archive. 7276 RANLIB="ranlib" 7277 old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs\$old_deplibs~\$RANLIB \$oldlib" 7278 old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib" 7279 old_postuninstall_cmds="" 7280 7281 # Create an old-style archive from a shared archive. 7282 old_archive_from_new_cmds="" 7283 7284 # Create a temporary old-style archive to link instead of a shared archive. 7285 old_archive_from_expsyms_cmds="" 7286 7287 # Commands used to build and install a shared archive. 7288 archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" 7289 archive_expsym_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib" 7290 postinstall_cmds="" 7291 postuninstall_cmds="" 7292 7293 # Commands used to build a loadable module (assumed same as above if empty) 7294 module_cmds="" 7295 module_expsym_cmds="" 7296 7297 # Commands to strip libraries. 7298 old_striplib="strip --strip-debug" 7299 striplib="strip --strip-unneeded" 7300 7301 # Dependencies to place before the objects being linked to create a 7302 # shared library. 7303 predep_objects="" 7304 7305 # Dependencies to place after the objects being linked to create a 7306 # shared library. 7307 postdep_objects="" 7308 7309 # Dependencies to place before the objects being linked to create a 7310 # shared library. 7311 predeps="" 7312 7313 # Dependencies to place after the objects being linked to create a 7314 # shared library. 7315 postdeps="" 7316 7317 # The library search path used internally by the compiler when linking 7318 # a shared library. 7319 compiler_lib_search_path="" 7320 7321 # Method to check whether dependent libraries are shared objects. 7322 deplibs_check_method="pass_all" 7323 7324 # Command to use when deplibs_check_method == file_magic. 7325 file_magic_cmd="\$MAGIC_CMD" 7326 7327 # Flag that allows shared libraries with undefined symbols to be built. 7328 allow_undefined_flag="" 7329 7330 # Flag that forces no undefined symbols. 7331 no_undefined_flag="" 7332 7333 # Commands used to finish a libtool library installation in a directory. 7334 finish_cmds="" 7335 7336 # Same as above, but a single script fragment to be evaled but not shown. 7337 finish_eval="" 7338 7339 # Take the output of nm and produce a listing of raw symbols and C names. 7340 global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'" 7341 7342 # Transform the output of nm in a proper C declaration 7343 global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'" 7344 7345 # Transform the output of nm in a C name address pair 7346 global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'" 7347 7348 # This is the shared library runtime path variable. 7349 runpath_var=LD_RUN_PATH 7350 7351 # This is the shared library path variable. 7352 shlibpath_var=LD_LIBRARY_PATH 7353 7354 # Is shlibpath searched before the hard-coded library search path? 7355 shlibpath_overrides_runpath=no 7356 7357 # How to hardcode a shared library path into an executable. 7358 hardcode_action=immediate 7359 7360 # Whether we should hardcode library paths into libraries. 7361 hardcode_into_libs=yes 7362 7363 # Flag to hardcode $libdir into a binary during linking. 7364 # This must work even if $libdir does not exist. 7365 hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir" 7366 7367 # If ld is used when linking, flag to hardcode $libdir into 7368 # a binary during linking. This must work even if $libdir does 7369 # not exist. 7370 hardcode_libdir_flag_spec_ld="" 7371 7372 # Whether we need a single -rpath flag with a separated argument. 7373 hardcode_libdir_separator="" 7374 7375 # Set to yes if using DIR/libNAME during linking hardcodes DIR into the 7376 # resulting binary. 7377 hardcode_direct=no 7378 7379 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the 7380 # resulting binary. 7381 hardcode_minus_L=no 7382 7383 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into 7384 # the resulting binary. 7385 hardcode_shlibpath_var=unsupported 7386 7387 # Set to yes if building a shared library automatically hardcodes DIR into the library 7388 # and all subsequent libraries and executables linked against it. 7389 hardcode_automatic=no 7390 7391 # Variables whose values should be saved in libtool wrapper scripts and 7392 # restored at relink time. 7393 variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" 7394 7395 # Whether libtool must link a program against all its dependency libraries. 7396 link_all_deplibs=unknown 7397 7398 # Compile-time system search path for libraries 7399 sys_lib_search_path_spec=" /usr/lib/" 7400 7401 # Run-time system search path for libraries 7402 sys_lib_dlsearch_path_spec="/lib /usr/lib" 7403 7404 # Fix the shell variable $srcfile for the compiler. 7405 fix_srcfile_path="" 7406 7407 # Set to yes if exported symbols are required. 7408 always_export_symbols=no 7409 7410 # The commands to list exported symbols. 7411 export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" 7412 7413 # The commands to extract the exported symbol list from a shared archive. 7414 extract_expsyms_cmds="" 7415 7416 # Symbols that should not be listed in the preloaded symbols. 7417 exclude_expsyms="_GLOBAL_OFFSET_TABLE_" 7418 7419 # Symbols that must always be exported. 7420 include_expsyms="" 7421 7422 # ### END LIBTOOL TAG CONFIG: F77 7423
Note: See TracChangeset
for help on using the changeset viewer.