diff options
author | Nicholas Vinson <nvinson234@gmail.com> | 2016-06-02 20:28:53 -0700 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2016-07-03 17:58:26 -0400 |
commit | 4bb40c4276fd8bf1f0e109a033eae18dab1da480 (patch) | |
tree | 03da7dc1aca48c103b1addeae24d9625b2c50397 /net-firewall/nftables/files/nftables-0.5-pdf-doc.patch | |
parent | app-text/libwpd: Drop old (diff) | |
download | gentoo-4bb40c4276fd8bf1f0e109a033eae18dab1da480.tar.gz gentoo-4bb40c4276fd8bf1f0e109a033eae18dab1da480.tar.bz2 gentoo-4bb40c4276fd8bf1f0e109a033eae18dab1da480.zip |
net-firewall/nftables: version bump to 0.6
Fixes bug #584898 and updates the nftables-0.5-pdf-doc.patch to match
upstream submission.
Gentoo-bug: 584898
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'net-firewall/nftables/files/nftables-0.5-pdf-doc.patch')
-rw-r--r-- | net-firewall/nftables/files/nftables-0.5-pdf-doc.patch | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/net-firewall/nftables/files/nftables-0.5-pdf-doc.patch b/net-firewall/nftables/files/nftables-0.5-pdf-doc.patch index b6f7834f920e..d09faa3ddd9f 100644 --- a/net-firewall/nftables/files/nftables-0.5-pdf-doc.patch +++ b/net-firewall/nftables/files/nftables-0.5-pdf-doc.patch @@ -4,22 +4,22 @@ generation. --- a/configure.ac +++ b/configure.ac @@ -27,10 +27,16 @@ - AS_IF([test "x$enable_debug" = "xno"], [with_debug=no], [with_debug=yes]), - [with_debug=yes]) - AC_SUBST(with_debug) - AM_CONDITIONAL([BUILD_DEBUG], [test "x$with_debug" != xno]) + AC_CONFIG_HEADER([config.h]) + + AC_DEFINE([_GNU_SOURCE], [], [Enable various GNU extensions]) + AC_DEFINE([_STDC_FORMAT_MACROS], [], [printf-style format macros]) +AC_ARG_ENABLE([pdf-doc], -+ AS_HELP_STRING([--enable-pdf-doc], [Enable PDF documentation]), ++ AS_HELP_STRING([--disable-pdf-doc], [Disable PDF documentation]), + AS_IF([test "x$enable_pdf_doc" = "xno"], [enable_pdf_doc=no], -+ [enable_pdf_doc=yes]), [enable_pdf_doc=no]) ++ [enable_pdf_doc=yes]), [enable_pdf_doc=yes]) +AM_CONDITIONAL([BUILD_PDF], [test "x$enable_pdf_doc" == "xyes" ]) + - # Checks for programs. - AC_PROG_CC - AC_PROG_MKDIR_P - AC_PROG_INSTALL - AC_PROG_SED + AC_ARG_ENABLE([debug], + AS_HELP_STRING([--enable-debug], [Disable debugging]), + AS_IF([test "x$enable_debug" = "xno"], [with_debug=no], [with_debug=yes]), + [with_debug=yes]) + AC_SUBST(with_debug) @@ -61,15 +67,15 @@ )] ) |