summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-12-04 10:01:39 +0000
committerJeroen Roovers <jer@gentoo.org>2014-12-04 10:01:39 +0000
commitf0bf1cacf32db11604f884ebd6d9d6937e7e50cf (patch)
tree5e1fd193226dadb0915de2bc3c1f49bd318f6fd1 /net-analyzer/nfdump/files
parentVersion bump. Removed old (diff)
downloadgentoo-2-f0bf1cacf32db11604f884ebd6d9d6937e7e50cf.tar.gz
gentoo-2-f0bf1cacf32db11604f884ebd6d9d6937e7e50cf.tar.bz2
gentoo-2-f0bf1cacf32db11604f884ebd6d9d6937e7e50cf.zip
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/nfdump/files')
-rw-r--r--net-analyzer/nfdump/files/nfdump-1.6.13-libft.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/net-analyzer/nfdump/files/nfdump-1.6.13-libft.patch b/net-analyzer/nfdump/files/nfdump-1.6.13-libft.patch
new file mode 100644
index 000000000000..f6571505b965
--- /dev/null
+++ b/net-analyzer/nfdump/files/nfdump-1.6.13-libft.patch
@@ -0,0 +1,14 @@
+--- a/configure.ac
++++ b/configure.ac
+@@ -109,9 +109,8 @@
+ if test ! -f "$WHERE_FTPATH/include/ftlib.h"; then
+ AC_MSG_ERROR(ftlib.h file not found in flow-tools directory '$WHERE_FTPATH'. Use --with-ftpath=PATH)
+ fi
+- if test ! -f "$WHERE_FTPATH/lib/libft.a"; then
+- AC_MSG_ERROR(libft.a not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first)
+- fi
++ AC_CHECK_LIB([ft], [main],,
++ AC_MSG_ERROR(libft not found in flow-tools directory '$WHERE_FTPATH'. Build flow tools first))
+ FT_INCLUDES="-I$WHERE_FTPATH/include -I$WHERE_FTPATH/lib"
+ FT_LDFLAGS="-L$WHERE_FTPATH/lib"
+ else