Skip to content
Snippets Groups Projects
Commit 736a40fe authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

When cross-compiling, the configure script no longer attempts to use

pkg-config on the build host in order to detect OpenSSL compiler options.
parent 4245400a
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,10 @@
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)
- Dan Fandrich:
......
......@@ -710,11 +710,17 @@ else
case "$OPT_SSL" in
yes)
dnl --with-ssl (without path) used
PKGTEST="yes"
if test x$cross_compiling != xyes; then
dnl only do pkg-config magic when not cross-compiling
PKGTEST="yes"
fi
EXTRA_SSL=/usr/local/ssl ;;
off)
dnl no --with-ssl option given, just check default places
PKGTEST="yes"
if test x$cross_compiling != xyes; then
dnl only do pkg-config magic when not cross-compiling
PKGTEST="yes"
fi
EXTRA_SSL= ;;
*)
dnl check the given --with-ssl spot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment