diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-04-26 14:45:31 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-26 19:24:30 +0200 |
commit | 697e624745842f374740f26ea86a702f4ea9650e (patch) | |
tree | d7a331ea673aa8381d6f9e6f373dadd6609e6eb2 /package/libsrtp/0002-A-autoconf-checks-for-libz-and-libdl-when-OpenSSL-is.patch | |
parent | 83c8fae3cdad8aa42b8907e76ab6c2b2ec2454d7 (diff) | |
download | buildroot-697e624745842f374740f26ea86a702f4ea9650e.tar.gz buildroot-697e624745842f374740f26ea86a702f4ea9650e.zip |
package/libsrtp: bump version to 1.5.2
Removed patches applied upstream:
https://github.com/cisco/libsrtp/commit/cae277e4377acc90ef787d09ed0d82968bbe809a
https://github.com/cisco/libsrtp/commit/b5fad5f893c7f323a8f8e1c512fa48cf6cdb1c8d
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libsrtp/0002-A-autoconf-checks-for-libz-and-libdl-when-OpenSSL-is.patch')
-rw-r--r-- | package/libsrtp/0002-A-autoconf-checks-for-libz-and-libdl-when-OpenSSL-is.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/libsrtp/0002-A-autoconf-checks-for-libz-and-libdl-when-OpenSSL-is.patch b/package/libsrtp/0002-A-autoconf-checks-for-libz-and-libdl-when-OpenSSL-is.patch deleted file mode 100644 index acb2c9a272..0000000000 --- a/package/libsrtp/0002-A-autoconf-checks-for-libz-and-libdl-when-OpenSSL-is.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 3107a0161bf30f7e3e0c356c3d040d99634fbf5b Mon Sep 17 00:00:00 2001 -From: jfigus <foleyj@cisco.com> -Date: Thu, 26 Feb 2015 12:25:08 -0500 -Subject: [PATCH] A autoconf checks for libz and libdl when OpenSSL is enabled - to allow for static linking of OpenSSL (via CFLAGS=-static). - -[Romain: - Drop the configure part of the patch since Buildroot - use AUTORECONF in libsrtp.mk] - -Signed-off-by: Romain Naour <romain.naour@openwide.fr> ---- - configure.in | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/configure.in b/configure.in -index ee30daf..71df46b 100644 ---- a/configure.in -+++ b/configure.in -@@ -147,6 +147,10 @@ if test "$enable_openssl" = "yes"; then - LDFLAGS="$LDFLAGS $(pkg-config --libs openssl)"; - CFLAGS="$CFLAGS $(pkg-config --cflags openssl)"; - -+ AC_CHECK_LIB([dl], [dlopen], [], -+ [AC_MSG_FAILURE([can't find libdl])]) -+ AC_CHECK_LIB([z], [inflate], [], -+ [AC_MSG_FAILURE([can't find libz])]) - AC_CHECK_LIB([crypto], [EVP_EncryptInit], [], - [AC_MSG_FAILURE([can't find openssl >1.0.1 crypto lib])]) - AC_CHECK_LIB([crypto], [EVP_aes_128_ctr], [], --- -1.9.3 - |