-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
1,562 additions
and
447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
libtrace 4.0.2 | ||
libtrace 4.0.3 | ||
|
||
--------------------------------------------------------------------------- | ||
Copyright (c) 2007-2017 The University of Waikato, Hamilton, New Zealand. | ||
Copyright (c) 2007-2018 The University of Waikato, Hamilton, New Zealand. | ||
All rights reserved. | ||
|
||
This code has been developed by the University of Waikato WAND | ||
|
@@ -26,14 +26,14 @@ Further information about libtrace, see | |
http://research.wand.net.nz/software/libtrace.php | ||
|
||
Bugs should be reported by either emailing [email protected] or filing | ||
an issue at https://github.com/wanduow/libtrace | ||
an issue at https://github.com/LibtraceTeam/libtrace | ||
|
||
It is licensed under the GNU Lesser General Public License (GPL) version 3. | ||
Please see the included files COPYING and COPYING.LESSER for details of this | ||
license. | ||
|
||
A detailed ChangeLog can be found on the libtrace wiki: | ||
https://github.com/wanduow/libtrace/wiki/ChangeLog | ||
https://github.com/LibtraceTeam/libtrace/wiki/ChangeLog | ||
|
||
Documentation, usage instructions and a detailed tutorial can also found | ||
on the libtrace wiki. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
# Now you only need to update the version number in two places - below, | ||
# and in the README | ||
|
||
AC_INIT([libtrace],[4.0.2],[[email protected]],[libtrace]) | ||
AC_INIT([libtrace],[4.0.3],[[email protected]],[libtrace]) | ||
|
||
LIBTRACE_MAJOR=4 | ||
LIBTRACE_MID=0 | ||
LIBTRACE_MINOR=2 | ||
LIBTRACE_MINOR=3 | ||
|
||
# OpenSolaris hides libraries like libncurses in /usr/gnu/lib, which is not | ||
# searched by default - add it to LDFLAGS so we at least have a chance of | ||
|
@@ -246,7 +246,7 @@ AC_ARG_WITH(man, | |
if test "$pcapfound" = 0; then | ||
AC_MSG_ERROR(libpcap0.8 or greater is required to compile libtrace. If you have installed it in a non-standard location please use LDFLAGS to specify the location of the library) | ||
else | ||
TOOL_LIBS="$TOOL_LIBS -lpcap" | ||
TOOLS_LIBS="$TOOLS_LIBS -lpcap" | ||
LIBTRACE_LIBS="$LIBTRACE_LIBS -lpcap" | ||
AC_DEFINE([HAVE_LIBPCAP],1,[compile with libpcap support]) | ||
|
||
|
@@ -402,18 +402,21 @@ libtrace_dpdk=false | |
if test "$want_dpdk" != no; then | ||
# So instead simply check for existence | ||
if test "$RTE_SDK" != ""; then | ||
AC_CHECK_FILE("$RTE_SDK/$RTE_TARGET/lib/libintel_dpdk.a", dpdk_found="libintel_dpdk.a", dpdk_found=0) | ||
AC_CHECK_FILE("$RTE_SDK/$RTE_TARGET/lib/libintel_dpdk.a", dpdk_found=":libintel_dpdk.a", dpdk_found=0) | ||
fi | ||
# DPDK 2.1.0+ renames this to libdpdk from libintel_dpdk | ||
if test "$dpdk_found" = 0 -a "$RTE_SDK" != ""; then | ||
AC_CHECK_FILE("$RTE_SDK/$RTE_TARGET/lib/libdpdk.a", dpdk_found="libdpdk.a", dpdk_found=0) | ||
AC_CHECK_FILE("$RTE_SDK/$RTE_TARGET/lib/libdpdk.a", dpdk_found=":libdpdk.a", dpdk_found=0) | ||
fi | ||
if test "$dpdk_found" = 0 -a "$RTE_SDK" != ""; then | ||
AC_CHECK_FILE("$RTE_SDK/$RTE_TARGET/lib/libdpdk.so", dpdk_found="dpdk", dpdk_found=0) | ||
fi | ||
if test "$dpdk_found" != 0 -a "$RTE_SDK" != ""; then | ||
# Save these now so that they can be re-exported later | ||
AC_SUBST([RTE_TARGET]) | ||
AC_SUBST([RTE_SDK]) | ||
# Force dpdk library to be statically linked to allow compiler optimisations | ||
LIBTRACE_LIBS="$LIBTRACE_LIBS -Wl,--whole-archive -Wl,-l:$dpdk_found -Wl,--no-whole-archive -Wl,-lm" | ||
LIBTRACE_LIBS="$LIBTRACE_LIBS -Wl,--whole-archive -Wl,-l$dpdk_found -Wl,--no-whole-archive -Wl,-lm" | ||
AC_DEFINE(HAVE_DPDK,1,[conditional for building with DPDK live capture support]) | ||
libtrace_dpdk=true | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.