diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-11-01 22:50:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-01 22:50:59 +0000 |
commit | 736a40fec9a13fcad55e646189b3419a9280ab98 (patch) | |
tree | 1afc240f66f9e1d056891555cfc8c13c3f5613f5 | |
parent | 4245400ae4c2623c49280ffeb295d4eb6790f7e2 (diff) |
When cross-compiling, the configure script no longer attempts to use
pkg-config on the build host in order to detect OpenSSL compiler options.
-rw-r--r-- | CHANGES | 4 | ||||
-rw-r--r-- | configure.ac | 10 |
2 files changed, 12 insertions, 2 deletions
@@ -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: diff --git a/configure.ac b/configure.ac index a9aa71529..82b733c8c 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |