aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 8 insertions, 2 deletions
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