configure.ac |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 87f0da8023081398d72372367db11d4a97d91833
Author:     Mike Kaganski <[email protected]>
AuthorDate: Fri Nov 10 15:15:43 2023 +0100
Commit:     Mike Kaganski <[email protected]>
CommitDate: Fri Nov 10 17:52:27 2023 +0100

    Fix --disable-curl checks: --disable-online-update is needed
    
    Change-Id: I63598815a2ed3c7300102180a8a8439e2ef1605d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159234
    Tested-by: Jenkins
    Reviewed-by: Mike Kaganski <[email protected]>

diff --git a/configure.ac b/configure.ac
index 99fe7e311871..7ec877ed5a78 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13581,6 +13581,9 @@ UPDATE_CONFIG=
 if test "$enable_online_update" = ""; then
     AC_MSG_RESULT([no])
 else
+    if test "$enable_curl" != "yes"; then
+        AC_MSG_ERROR([--disable-online-update must be used when --disable-curl 
is used])
+    fi
     if test "$enable_online_update" = "mar"; then
         AC_MSG_RESULT([yes - MAR-based online update])
         ENABLE_ONLINE_UPDATE_MAR="TRUE"

Reply via email to