diff options
author | Jeroen Roovers <jer@gentoo.org> | 2019-08-08 22:21:38 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2019-08-08 22:22:09 +0200 |
commit | c002b02664b99fc197091567e9cc2529f9abdf05 (patch) | |
tree | 3465818beb7d6b7be3c5c06cfb4448775e941d7e /net-analyzer/ngrep/files | |
parent | kde-misc/kshutdown: Fix build with USE=kde and cmake-3.15 (diff) | |
download | gentoo-c002b02664b99fc197091567e9cc2529f9abdf05.tar.gz gentoo-c002b02664b99fc197091567e9cc2529f9abdf05.tar.bz2 gentoo-c002b02664b99fc197091567e9cc2529f9abdf05.zip |
net-analyzer/ngrep: Version 1.47
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Fixes: https://bugs.gentoo.org/674926
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-analyzer/ngrep/files')
-rw-r--r-- | net-analyzer/ngrep/files/ngrep-1.47-regex.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-analyzer/ngrep/files/ngrep-1.47-regex.patch b/net-analyzer/ngrep/files/ngrep-1.47-regex.patch new file mode 100644 index 000000000000..613643cf0e6d --- /dev/null +++ b/net-analyzer/ngrep/files/ngrep-1.47-regex.patch @@ -0,0 +1,29 @@ +--- a/configure.in ++++ b/configure.in +@@ -6,6 +6,7 @@ + dnl NOTE: configure.in requires autoconf 2.57 or more recent. + + AC_INIT(ngrep.c) ++AC_CONFIG_SUBDIRS([regex-0.12]) + + AC_MSG_RESULT + AC_MSG_RESULT(Configuring System ...) +--- a/regex-0.12/Makefile.in ++++ b/regex-0.12/Makefile.in +@@ -26,13 +26,13 @@ + # -DEXTRACT_MACROS to use the macros EXTRACT_* (as opposed to + # the corresponding C procedures). If not -DDEBUG, the macros + # are used. +-CPPFLAGS = ++CPPFLAGS ?= + + # Likewise, you can override CFLAGS to optimize, use -Wall, etc. +-CFLAGS = -g ++CFLAGS ?= -g + + # Ditto for LDFLAGS and LOADLIBES. +-LDFLAGS = ++LDFLAGS ?= + LOADLIBES = + + srcdir = @srcdir@ |