Compiling a minimal wget works fine, but make check fails. /////////////////// ./configure \ --disable-nls \ --without-ssl \ --enable-ipv6 \ --without-zlib \ --without-libiconv-prefix \ --disable-iri \ --disable-ntlm \ --disable-pcre \ --without-libpsl \ --without-libuuid \ --without-libintl-prefix
make /////////////////// builds happy but: ////////////////// make check ////////////////// fails: Cos there's no SSL HAVE_HSTS is undefined, so init.c line 2008 fails. opt.hsts_file would get initialised, but in this build it doesn't exist. So solution is to wrap that line with "#ifdef HAVE_HSTS". Now all happy. //////////////// Simon
