You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, --with-secure-transport is used, despite libcurl configure help suggests.
Modified (again) bindings/jni/ci_build.sh reset libcurl source tree to commit HEAD is now at 46f11a4 Makefile.am: fix portability issues and builds goes further.
Some modification happend in libcurl since commit :
commit 46f11a4cef48f5ba95f7757e4e4ab96fa43e0444 (HEAD -> master)
Author: Christian Weisgerber via curl-library <[email protected]>
Date: Thu May 19 15:45:07 2022 +0200
Makefile.am: fix portability issues
Commit a04f0b961333e1a19848d073d8c7db9c20b2a371 made me notice that
there is a portability issue in curl's top-level Makefile.am.
$< can only be used in rules that deal with .SUFFIXES. Its use
for general prerequisites is a GNU make extension.
$< could be replaced by $?, but I think in an autotools context,
something like this is better:
Bug: https://curl.se/mail/lib-2022-05/0024.html
Closes #8861
Currently workging to identify the latest working commit.
The text was updated successfully, but these errors were encountered:
commit 576e507c78bdd2ec88da442a5354f9dd661b9a8a
Author: Daniel Stenberg <[email protected]>
Date: Thu Aug 25 17:29:48 2022 +0200
configure: if asked to use TLS, fail if no TLS lib was detected
Previously the configure script would just warn about this fact and
continue with TLS disabled build which is not always helpful. TLS should
be explicitly disabled if that is what the user wants.
Closes #9367
Surprisingly, when building ZYRE with zyre/bindings/jni/ci_build.sh, this issue is not seen.
After investigations, one can see that CZMQ dependencies are not built with the same process.
For instance, libcurl, libmicrohttpd, ... are not rebuilt, when building ZYRE.
This happens when building the native libraries.
Don't know yet what happens when building cross-compiled libraries for Android.
Moreover, I don't know what are the TLS-capable libraries provided by Android SDK.
ends with
Modified
bindings/jni/ci_build.sh
to dump CONFIG_OPTS when building libcurl and it shows :So,
--with-secure-transport
is used, despite libcurl configure help suggests.Modified (again)
bindings/jni/ci_build.sh
reset libcurl source tree to commitHEAD is now at 46f11a4 Makefile.am: fix portability issues
and builds goes further.Some modification happend in libcurl since commit :
Currently workging to identify the latest working commit.
The text was updated successfully, but these errors were encountered: