summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2021-05-25 15:25:30 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2021-05-27 11:10:32 +0200
commit3e7fefa0cd5ccdb4aa862744d0cdea103633b0fd (patch)
tree33bbc9443cff45e92fd623e3c90e996a25dd3e7d
parentm4: Add test flag to libo_CHECK_SYSTEM_MODULE (diff)
downloadcore-3e7fefa0cd5ccdb4aa862744d0cdea103633b0fd.tar.gz
core-3e7fefa0cd5ccdb4aa862744d0cdea103633b0fd.zip
configure: drop --disable-neon
Use --with-webdav instead, which supports neon, serf or no and is available since commit dcae0509135c2067635ae3cf84b05dc9fb3d2d02 ("Build webdav based on serf if neon is disabled.") from 2014. Change-Id: I4b329b9c1d28e88961e86272a5554bfa4481f01e
-rw-r--r--configure.ac27
1 files changed, 13 insertions, 14 deletions
diff --git a/configure.ac b/configure.ac
index cc3b25313873..77d4b20696ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -815,6 +815,7 @@ test_cairo=no
test_gdb_index=no
test_split_debug=no
test_openldap=yes
+test_webdav=yes
# Default values, as such probably valid just for Linux, set
# differently below just for Mac OSX, but at least better than
@@ -968,6 +969,7 @@ ios*) # iOS
test_fontconfig=no
test_dbus=no
test_openldap=no
+ test_webdav=no
if test -n "$LODE_HOME" ; then
mac_sanitize_path
AC_MSG_NOTICE([sanitized the PATH to $PATH])
@@ -1090,6 +1092,7 @@ linux-android*)
test_gtk3_kde5=no
test_openldap=no
test_randr=no
+ test_webdav=no
test_xrender=no
_os=Android
@@ -1655,11 +1658,6 @@ libo_FUZZ_ARG_ENABLE(gstreamer-1-0,
[Disable building with the gstreamer 1.0 avmedia backend.]),
,test "${enable_gstreamer_1_0+set}" = set || enable_gstreamer_1_0=yes)
-libo_FUZZ_ARG_ENABLE(neon,
- AS_HELP_STRING([--disable-neon],
- [Disable neon and the compilation of webdav binding.]),
-,)
-
libo_FUZZ_ARG_ENABLE([eot],
[AS_HELP_STRING([--enable-eot],
[Enable support for Embedded OpenType fonts.])],
@@ -2356,9 +2354,7 @@ AC_ARG_WITH(webdav,
AS_HELP_STRING([--with-webdav],
[Specify which library to use for webdav implementation.
Possible values: "neon", "serf", "no". The default value is "neon".
- Example: --with-webdav="serf"]),
- WITH_WEBDAV=$withval,
- WITH_WEBDAV="neon")
+ Example: --with-webdav="serf"]))
AC_ARG_WITH(linker-hash-style,
AS_HELP_STRING([--with-linker-hash-style],
@@ -10865,14 +10861,17 @@ AC_SUBST(XRANDR_CFLAGS)
AC_SUBST(XRANDR_LIBS)
AC_SUBST(ENABLE_RANDR)
-if test "$enable_neon" = "no" -o "$enable_mpl_subset" = "yes"; then
- if test -z "$WITH_WEBDAV"; then
- WITH_WEBDAV="serf"
+if test "$test_webdav" = yes; then
+ if test -z "$with_webdav"; then
+ WITH_WEBDAV=neon
+ if test "$enable_mpl_subset" = yes; then
+ WITH_WEBDAV=serf
+ fi
+ else
+ WITH_WEBDAV="$with_webdav"
fi
fi
-if test $_os = iOS -o $_os = Android; then
- WITH_WEBDAV="no"
-fi
+
AC_MSG_CHECKING([for webdav library])
case "$WITH_WEBDAV" in
serf)