From 58f48077a4ae300f820549b606a5efb5e05137b1 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 11 Dec 2011 14:57:13 +0000 Subject: [PATCH] [packages_10.03.1] merge r29498 SVN-Revision: 29499 --- libs/curl/Makefile | 9 +- libs/curl/patches/100-cross-compile.patch | 119 ++++++++++++++++++++++ 2 files changed, 120 insertions(+), 8 deletions(-) create mode 100644 libs/curl/patches/100-cross-compile.patch diff --git a/libs/curl/Makefile b/libs/curl/Makefile index 905fa45bc9..806192d0fd 100644 --- a/libs/curl/Makefile +++ b/libs/curl/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2009 OpenWrt.org +# Copyright (C) 2007-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -84,13 +84,6 @@ CONFIGURE_VARS += \ LDFLAGS="$$$$LDFLAGS -lcrypto -lssl -lz" \ CC="$(filter-out ccache,$(TARGET_CC))" -#define Build/Configure -# (cd $(PKG_BUILD_DIR); \ -# autoreconf -v --install || exit 1 \ -# ); -# $(call Build/Configure/Default) -#endef - define Build/Compile $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ diff --git a/libs/curl/patches/100-cross-compile.patch b/libs/curl/patches/100-cross-compile.patch new file mode 100644 index 0000000000..91109409e0 --- /dev/null +++ b/libs/curl/patches/100-cross-compile.patch @@ -0,0 +1,119 @@ +Index: curl-7.21.7/configure.ac +=================================================================== +--- curl-7.21.7.orig/configure.ac ++++ curl-7.21.7/configure.ac +@@ -1522,15 +1522,6 @@ if test X"$OPT_SSL" != Xno; then + fi + + if test "$OPENSSL_ENABLED" = "1"; then +- if test -n "$LIB_OPENSSL"; then +- dnl when the ssl shared libs were found in a path that the run-time +- dnl linker doesn't search through, we need to add it to LD_LIBRARY_PATH +- dnl to prevent further configure tests to fail due to this +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$LIB_OPENSSL" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $LIB_OPENSSL to LD_LIBRARY_PATH]) +- fi + CURL_CHECK_OPENSSL_API + fi + +@@ -1759,17 +1750,6 @@ if test "$OPENSSL_ENABLED" != "1"; then + + if test "x$USE_GNUTLS" = "xyes"; then + AC_MSG_NOTICE([detected GnuTLS version $version]) +- +- if test -n "$gtlslib"; then +- dnl when shared libs were found in a path that the run-time +- dnl linker doesn't search through, we need to add it to +- dnl LD_LIBRARY_PATH to prevent further configure tests to fail +- dnl due to this +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$gtlslib" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $gtlslib to LD_LIBRARY_PATH]) +- fi + fi + + fi +@@ -1869,18 +1849,6 @@ if test "$OPENSSL_ENABLED" != "1"; then + + CURL_LIBS="$CURL_LIBS -lpolarssl" + LIBS="$LIBS -lpolarssl" +- +- if test -n "$polarssllib"; then +- dnl when shared libs were found in a path that the run-time +- dnl linker doesn't search through, we need to add it to +- dnl LD_LIBRARY_PATH to prevent further configure tests to fail +- dnl due to this +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$polarssllib" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $polarssllib to LD_LIBRARY_PATH]) +- fi +- + fi + + fi dnl PolarSSL not disabled +@@ -1958,18 +1926,6 @@ if test "$OPENSSL_ENABLED" != "1"; then + + CURL_LIBS="$CURL_LIBS -lcyassl -lm" + LIBS="$LIBS -lcyassl -lm" +- +- if test -n "$cyassllib"; then +- dnl when shared libs were found in a path that the run-time +- dnl linker doesn't search through, we need to add it to +- dnl LD_LIBRARY_PATH to prevent further configure tests to fail +- dnl due to this +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$cyassllib" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $cyassllib to LD_LIBRARY_PATH]) +- fi +- + fi + + fi dnl CyaSSL not disabled +@@ -2053,19 +2009,6 @@ if test "$OPENSSL_ENABLED" != "1" -a "$G + CPPFLAGS="$CLEANCPPFLAGS" + ]) + +- if test "x$USE_NSS" = "xyes"; then +- AC_MSG_NOTICE([detected NSS version $version]) +- +- dnl when shared libs were found in a path that the run-time +- dnl linker doesn't search through, we need to add it to +- dnl LD_LIBRARY_PATH to prevent further configure tests to fail +- dnl due to this +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$nssprefix/lib$libsuff" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $nssprefix/lib$libsuff to LD_LIBRARY_PATH]) +- fi +- + fi + + fi dnl NSS not disabled +@@ -2114,11 +2057,6 @@ if test "$curl_ssl_msg" = "$init_ssl_msg + AXTLS_ENABLED=1 + USE_AXTLS="yes" + curl_ssl_msg="enabled (axTLS)" +- +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$LIB_AXTLS" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $LIB_AXTLS to LD_LIBRARY_PATH]) + ],[ + LDFLAGS="$CLEANLDFLAGS" + CPPFLAGS="$CLEANCPPFLAGS" +@@ -2220,10 +2158,6 @@ if test X"$OPT_LIBSSH2" != Xno; then + dnl libssh2_session_handshake was added in 1.2.8 + AC_CHECK_FUNCS( libssh2_version libssh2_init libssh2_exit \ + libssh2_scp_send64 libssh2_session_handshake) +- +- LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$DIR_SSH2" +- export LD_LIBRARY_PATH +- AC_MSG_NOTICE([Added $DIR_SSH2 to LD_LIBRARY_PATH]) + fi + else + dnl no libssh2, revert back to clean variables -- 2.30.2