Description of problem: $ curl-config --protocols | grep HTTPS $ curl-config --features | grep SSL SSL Version-Release number of selected component (if applicable): curl-devel-7.17.1-2.fc8
In the curl-config script, USE_SSL is set to "yes" But you do: if test "$USE_SSL" = "1"; then echo "HTTPS" fi in curl-config, USE_SSL is set with: USE_SSL="@USE_SSLEAY@@USE_GNUTLS@@USE_NSS@" but USE_NSS is 'yes' USE_SSLEAY or USE_GNUTLS will be 1 if used.
Created attachment 299203 [details] Correctly test USE_SSL This patch replace the curl-7.16.4-curl-config.patch patch. It replace two 'test "$USE_SSL" = "1"' by 'test -n "$USE_SSL"' The patch is required because USE_SSL is set to "yes"
The new curl 7.18.1 now contains the new @SSL_ENABLED@ symbol that should fix it. At least the HTTPS is now correctly advertised for me now.
curl-7.18.2-1.fc8 has been submitted as an update for Fedora 8
curl-7.18.2-1.fc8 has been pushed to the Fedora 8 stable repository. If problems still persist, please make note of it in this bug report.