]> sjero.net Git - wget/blobdiff - src/build_info.c
Correct a mis-merge: return type for url_error is char*, not const char*
[wget] / src / build_info.c
index 1ac682a75be9b7a313f7555e5fbc2cd779a38e53..542fed8a3c529400007345c2f984ba59cc3dd42e 100644 (file)
@@ -30,7 +30,7 @@ Corresponding Source for a non-source form of such a combination
 shall include the source code for the parts of OpenSSL used as well
 as that of the covered work.  */
 
-#include "config.h"
+#include "wget.h"
 #include <stdio.h>
 
 char *system_wgetrc = SYSTEM_WGETRC;
@@ -90,9 +90,9 @@ const char* (compiled_features[]) =
 #endif
 
 #ifdef HAVE_LIBSSL
-  "+ssl",
+  "+openssl",
 #else
-  "-ssl",
+  "-openssl",
 #endif
 
 #ifdef HAVE_GETTEXT
@@ -100,6 +100,13 @@ const char* (compiled_features[]) =
 #else
   "-gettext",
 #endif
+
+#ifdef ENABLE_IRI
+  "+iri",
+#else
+  "-iri",
+#endif
+
   /* sentinel value */
   NULL
 };