GNOME Bugzilla – Bug 789109
Allow Cerbero curl recipe to use gnutls instead of openssl
Last modified: 2017-10-20 15:45:55 UTC
Created attachment 361755 [details] [review] Use gnutls instead of openssl in Cerbero curl recipe In some licensing situations/name space environments (Android), openssl is difficult to use. To avoid such problems, gnutls may be a suitable alternative. THis patch changes the curl recipe to use gnutls instead.
Review of attachment 361755 [details] [review]: ::: recipes/curl.recipe @@ +17,3 @@ --enable-threaded-resolver --disable-manual \ --disable-smb' + configure_tpl = "%(config-sh)s --prefix=%(prefix)s --libdir=%(libdir)s --without-ssl --with-gnutls=%(prefix)s " + configure_options --without-ssl is actually "without *Open*SSL"?
Please also merge that with the patches in bug #774799 which are not included yet *** This bug has been marked as a duplicate of bug 774799 ***
(In reply to Sebastian Dröge (slomo) from comment #1) > Review of attachment 361755 [details] [review] [review]: > > ::: recipes/curl.recipe > @@ +17,3 @@ > --enable-threaded-resolver --disable-manual \ > --disable-smb' > + configure_tpl = "%(config-sh)s --prefix=%(prefix)s --libdir=%(libdir)s > --without-ssl --with-gnutls=%(prefix)s " + configure_options > > --without-ssl is actually "without *Open*SSL"? Yes. that is the goal of this patch. To turn off openssl, and turn on gnutls instead. In the configure script, OpenSSL is disabled with the "--without-ssl" flag. The curl developers refer to other SSL implementations with fuller names, such as "--without-polarssl". They refer to OpenSSL as just "ssl".