]> sjero.net Git - wget/commitdiff
Separate "https" feature.
authorMicah Cowan <micah@cowan.name>
Fri, 12 Jun 2009 20:28:17 +0000 (13:28 -0700)
committerMicah Cowan <micah@cowan.name>
Fri, 12 Jun 2009 20:28:17 +0000 (13:28 -0700)
src/ChangeLog
src/build_info.c

index 33362331e23f9c6327b6921d37b717ef3dec23fd..b76e7f9f104e2b04349dec93eb0a4e7b12a845ba 100644 (file)
@@ -1,5 +1,8 @@
 2009-06-12  Micah Cowan  <micah@cowan.name>
 
+       * build_info.c (library): Handle "https" as a feature in its own
+       right, apart from "gnutls" and "openssl".
+
        * host.c: Declare h_errno if no declaration is provided. Idea
        thanks to Maciej W. Rozycki.
 
index 551b7d944f5d0dff350903ad93a7a729a5c8daf6..f60c76ee7f8a76d4561e5340ede902a6c3c81ca8 100644 (file)
@@ -80,6 +80,12 @@ const char* (compiled_features[]) =
   "-md5",
 #endif
 
+#ifdef HAVE_SSL
+  "+https",
+#else
+  "-https",
+#endif
+
 #ifdef HAVE_LIBGNUTLS
   "+gnutls",
 #else