summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2021-09-10 14:36:17 +0200
committerMichael Stahl <michael.stahl@allotropia.de>2021-09-14 11:16:55 +0200
commit37e7398e9cb02d19a0825fe2e72f5adc2296d06d (patch)
treef4ca779ab8a29a61443166b50b509b2fe4462ed7
parent5f4a84ce5b775eb017bd784db95857684b7e90ed (diff)
configure: test_curl is always "yes"
Presumably this should check enable_curl instead. Change-Id: Ifc0b871e9c34bdb43ef14b8002d4997860266a3a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122040 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
-rw-r--r--configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index a2dd5dc5eeb9..4af48fc034d7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -819,7 +819,6 @@ disable_database_connectivity_dependencies()
# ===================================================================
build_crypto=yes
test_cmis=yes
-test_curl=yes
test_gdb_index=no
test_openldap=yes
test_split_debug=no
@@ -10269,7 +10268,7 @@ if test "$with_system_curl" = "auto"; then
with_system_curl="$with_system_libs"
fi
-if test "$test_curl" = "yes" -a "$enable_curl" = "yes" -a "$with_system_curl" = "yes"; then
+if test "$enable_curl" = "yes" -a "$with_system_curl" = "yes"; then
AC_MSG_RESULT([external])
SYSTEM_CURL=TRUE
@@ -10301,7 +10300,7 @@ if test "$test_curl" = "yes" -a "$enable_curl" = "yes" -a "$with_system_curl" =
fi
ENABLE_CURL=TRUE
-elif test "$test_curl" = "no"; then
+elif test "$enable_curl" = "no"; then
AC_MSG_RESULT([none])
else
AC_MSG_RESULT([internal])