1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGS

(respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
This commit is contained in:
Dan Fandrich 2009-02-04 23:33:34 +00:00
parent 01140217f5
commit 4b441ebac5
2 changed files with 9 additions and 2 deletions

View File

@ -6,6 +6,10 @@
Changelog Changelog
Daniel Fandrich (4 Feb 2009)
- Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGS
(respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
Daniel Stenberg (3 Feb 2009) Daniel Stenberg (3 Feb 2009)
- Hidemoto Nakada provided a small fix that makes it possible to get the - Hidemoto Nakada provided a small fix that makes it possible to get the
CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with

View File

@ -1171,8 +1171,11 @@ if test X"$OPT_SSL" != Xno; then
PKGTEST="no" PKGTEST="no"
PREFIX_OPENSSL=$OPT_SSL PREFIX_OPENSSL=$OPT_SSL
LIB_OPENSSL="$PREFIX_OPENSSL/lib$libsuff" LIB_OPENSSL="$PREFIX_OPENSSL/lib$libsuff"
LDFLAGS="$LDFLAGS -L$LIB_OPENSSL" if [ "$PREFIX_OPENSSL" != "/usr" ] ; then
CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include/openssl -I$PREFIX_OPENSSL/include" LDFLAGS="$LDFLAGS -L$LIB_OPENSSL"
CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include"
fi
CPPFLAGS="$CPPFLAGS -I$PREFIX_OPENSSL/include/openssl"
;; ;;
esac esac