diff options
author | 2018-06-18 13:34:27 +0100 | |
---|---|---|
committer | 2018-06-18 14:31:07 +0100 | |
commit | 4eb290ca49ac2270122db0c4c4420c2b2456502f (patch) | |
tree | b345b4de4633daef14cac3c788cbe597b49d654a /net-libs/libsrtp/files | |
parent | dev-util/hadolint: Remove old (diff) | |
download | gentoo-4eb290ca49ac2270122db0c4c4420c2b2456502f.tar.gz gentoo-4eb290ca49ac2270122db0c4c4420c2b2456502f.tar.bz2 gentoo-4eb290ca49ac2270122db0c4c4420c2b2456502f.zip |
net-libs/libsrtp: 2.2.0 version bump
As requested by Arfrever Frehtes Taifersar on IRC.
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-libs/libsrtp/files')
-rw-r--r-- | net-libs/libsrtp/files/libsrtp-2.2.0-pcap-automagic-r0.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-libs/libsrtp/files/libsrtp-2.2.0-pcap-automagic-r0.patch b/net-libs/libsrtp/files/libsrtp-2.2.0-pcap-automagic-r0.patch new file mode 100644 index 000000000000..1075825945cb --- /dev/null +++ b/net-libs/libsrtp/files/libsrtp-2.2.0-pcap-automagic-r0.patch @@ -0,0 +1,20 @@ +diff -uNr libsrtp-2.2.0.ORIG/configure.ac libsrtp-2.2.0/configure.ac +--- libsrtp-2.2.0.ORIG/configure.ac 2018-06-18 13:28:52.385014993 +0100 ++++ libsrtp-2.2.0/configure.ac 2018-06-18 13:31:09.217020686 +0100 +@@ -273,6 +273,8 @@ + + dnl Checking for PCAP + ++AC_ARG_ENABLE([pcap], AS_HELP_STRING([--disable-pcap], [Build without `pcap' library (-lpcap)])) ++AS_IF([test "x$enable_pcap" != "xno"], [ + PCAP_LIB="" + AC_CHECK_LIB([pcap], [pcap_create], + [PCAP_LIB="-lpcap" +@@ -284,6 +286,7 @@ + AC_DEFINE([HAVE_PCAP], [1], [Define to 1 if you have the `winpcap' library (-lwpcap)]) + AC_SUBST([HAVE_PCAP], [1])]) + AC_SUBST([PCAP_LIB]) ++]) + + AC_MSG_CHECKING([whether to redirect logging to stdout]) + AC_ARG_ENABLE([log-stdout], |