mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
When cross-compiling, the configure script no longer attempts to use
pkg-config on the build host in order to detect OpenSSL compiler options.
This commit is contained in:
parent
4245400ae4
commit
736a40fec9
4
CHANGES
4
CHANGES
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
Daniel (1 November 2004)
|
||||||
|
- When cross-compiling, the configure script no longer attempts to use
|
||||||
|
pkg-config on the build host in order to detect OpenSSL compiler options.
|
||||||
|
|
||||||
Daniel (27 October 2004)
|
Daniel (27 October 2004)
|
||||||
- Dan Fandrich:
|
- Dan Fandrich:
|
||||||
|
|
||||||
|
@ -710,11 +710,17 @@ else
|
|||||||
case "$OPT_SSL" in
|
case "$OPT_SSL" in
|
||||||
yes)
|
yes)
|
||||||
dnl --with-ssl (without path) used
|
dnl --with-ssl (without path) used
|
||||||
|
if test x$cross_compiling != xyes; then
|
||||||
|
dnl only do pkg-config magic when not cross-compiling
|
||||||
PKGTEST="yes"
|
PKGTEST="yes"
|
||||||
|
fi
|
||||||
EXTRA_SSL=/usr/local/ssl ;;
|
EXTRA_SSL=/usr/local/ssl ;;
|
||||||
off)
|
off)
|
||||||
dnl no --with-ssl option given, just check default places
|
dnl no --with-ssl option given, just check default places
|
||||||
|
if test x$cross_compiling != xyes; then
|
||||||
|
dnl only do pkg-config magic when not cross-compiling
|
||||||
PKGTEST="yes"
|
PKGTEST="yes"
|
||||||
|
fi
|
||||||
EXTRA_SSL= ;;
|
EXTRA_SSL= ;;
|
||||||
*)
|
*)
|
||||||
dnl check the given --with-ssl spot
|
dnl check the given --with-ssl spot
|
||||||
|
Loading…
Reference in New Issue
Block a user