From f0790f6412e0a0ef9f62950b267ec8342b1ab54d Mon Sep 17 00:00:00 2001 From: Micah Cowan Date: Fri, 12 Jun 2009 13:28:17 -0700 Subject: [PATCH] Separate "https" feature. --- src/ChangeLog | 3 +++ src/build_info.c | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 33362331..b76e7f9f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2009-06-12 Micah Cowan + * 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. diff --git a/src/build_info.c b/src/build_info.c index 551b7d94..f60c76ee 100644 --- a/src/build_info.c +++ b/src/build_info.c @@ -80,6 +80,12 @@ const char* (compiled_features[]) = "-md5", #endif +#ifdef HAVE_SSL + "+https", +#else + "-https", +#endif + #ifdef HAVE_LIBGNUTLS "+gnutls", #else -- 2.39.2