From e602c6df19a285296f66a581a74c2c5ab8d3d379 Mon Sep 17 00:00:00 2001 From: cyrus Date: Mon, 9 Feb 2015 15:28:09 +0000 Subject: [PATCH] openssl: fix upstream regression for non-ec builds Signed-off-by: Steven Barth git-svn-id: svn://svn.openwrt.org/openwrt/branches/barrier_breaker@44365 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/libs/openssl/Makefile | 2 +- .../libs/openssl/patches/220-fix-no-ec-build.patch | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 package/libs/openssl/patches/220-fix-no-ec-build.patch diff --git a/package/libs/openssl/Makefile b/package/libs/openssl/Makefile index 860395e..b5f5ad7 100644 --- a/package/libs/openssl/Makefile +++ b/package/libs/openssl/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=openssl PKG_VERSION:=1.0.2 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_USE_MIPS16:=0 PKG_BUILD_PARALLEL:=1 diff --git a/package/libs/openssl/patches/220-fix-no-ec-build.patch b/package/libs/openssl/patches/220-fix-no-ec-build.patch new file mode 100644 index 0000000..44ec50e --- /dev/null +++ b/package/libs/openssl/patches/220-fix-no-ec-build.patch @@ -0,0 +1,14 @@ +--- a/ssl/t1_lib.c ++++ b/ssl/t1_lib.c +@@ -113,9 +113,11 @@ + #include + #include + #include ++#ifndef OPENSSL_NO_EC + #ifdef OPENSSL_NO_EC2M + # include + #endif ++#endif + #include + #include + #include "ssl_locl.h" -- 2.35.1