summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2019-06-21 11:35:38 +0200
committerJoe Orton <jorton@apache.org>2019-06-21 11:35:38 +0200
commitf724666056ce88adbfce848d68651fa724526925 (patch)
treee34d9b9b42304770d8abbd7386e2c97bb117d961 /configure.in
parent* build/config_vars.sh.in: Remove test-suite (builddir-specific) vars (diff)
downloadapache2-f724666056ce88adbfce848d68651fa724526925.tar.xz
apache2-f724666056ce88adbfce848d68651fa724526925.zip
* configure.in: Fix enabling httpdunit w/o --enable-reduced-exports.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1861768 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ec0336785e..24257a10fc 100644
--- a/configure.in
+++ b/configure.in
@@ -744,7 +744,7 @@ AC_ARG_WITH(valgrind,
dnl Enable the unit test executable if Check is installed.
dnl TODO: at the moment, only pkg-config discovery is supported.
AC_MSG_CHECKING([for Check to enable unit tests])
-if test "x$PKGCONFIG" != "x" -a "$AP_FORCE_EXPORTS" = "yes" && `$PKGCONFIG --atleast-version='0.9.12' check`; then
+if test "x$PKGCONFIG" != "x" -a "$ap_reduced_exports" = "no" && `$PKGCONFIG --atleast-version='0.9.12' check`; then
UNITTEST_CFLAGS=`$PKGCONFIG --cflags check`
UNITTEST_LIBS=`$PKGCONFIG --libs check`
other_targets="$other_targets test/httpdunit"