commit 059a5795d32cae9f5801cdc980a7abbd22996ba3
parent 22482fd45472525c5ebaf2e68880b61b7703cad3
Author: Nick Mathewson <nickm@torproject.org>
Date: Wed, 6 Nov 2019 08:57:21 -0500
Merge branch 'maint-0.4.2'
Diffstat:
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/changes/ticket32191 b/changes/ticket32191
@@ -0,0 +1,3 @@
+ o Minor features (build system):
+ - Make pkg-config use --prefix when cross-compiling, if PKG_CONFIG_PATH
+ is not set. Closes ticket 32191.
diff --git a/configure.ac b/configure.ac
@@ -39,6 +39,11 @@ else
pkg_config_user_action="check the PKG_CONFIG_PATH environment variable"
fi
+if test "x$PKG_CONFIG_PATH" = "x" && test "x$prefix" != "xNONE" && test "$host" != "$build"; then
+ export PKG_CONFIG_PATH=$prefix/lib/pkgconfig
+ AC_MSG_NOTICE([set PKG_CONFIG_PATH=$PKG_CONFIG_PATH to support cross-compiling])
+fi
+
AC_ARG_ENABLE(openbsd-malloc,
AS_HELP_STRING(--enable-openbsd-malloc, [use malloc code from OpenBSD. Linux only. Deprecated: see --with-malloc]))
AC_ARG_ENABLE(static-openssl,