Disable libcurl test when building wxiOS

It's not really useful in this case and somehow breaks Travis CI build.
This commit is contained in:
Vadim Zeitlin
2020-12-13 03:18:01 +01:00
parent 59bc7e59d7
commit 0db857a460
2 changed files with 10 additions and 0 deletions

View File

@@ -2928,6 +2928,11 @@ dnl ------------------------------------------------------------------------
dnl Check for libcurl
dnl ------------------------------------------------------------------------
dnl Using libcurl on iOS doesn't make much sense and currently breaks the
dnl build, probably because it finds a wrong (native) libcurl.pc file, so just
dnl disable it for now.
if test "$wxUSE_OSX_IPHONE" != 1; then
if test "$wxUSE_LIBCURL" != "no"; then
PKG_CHECK_MODULES(LIBCURL, [libcurl],
[
@@ -2952,6 +2957,8 @@ if test "$wxUSE_LIBCURL" != "no"; then
fi
fi
fi dnl wxUSE_OSX_IPHONE != 1
dnl ----------------------------------------------------------------
dnl search for toolkit (widget sets)
dnl ----------------------------------------------------------------