mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 08:10:31 -04:00
GNU Wget2 is the successor of GNU Wget, a file and recursive website downloader. Designed and written from scratch it wraps around libwget, that provides the basic functions needed by a web client. Wget2 works multi-threaded and uses many features to allow fast operation. In many cases Wget2 downloads much faster than Wget1.x due to HTTP2, HTTP compression, parallel connections and use of If-Modified-Since HTTP header. WWW: https://gitlab.com/gnuwget/wget2 Unlike wget, this was placed into www category as it does no longer support ftp.
12 lines
470 B
Text
12 lines
470 B
Text
Fix openssl library name
|
|
--- configure.ac.orig 2021-09-12 11:12:41 UTC
|
|
+++ configure.ac
|
|
@@ -503,7 +502,7 @@ AS_IF([test "$with_ssl" = "openssl" || (test "$with_ss
|
|
CFLAGS="$OPENSSL_CFLAGS $CFLAGS"
|
|
AC_DEFINE([WITH_OPENSSL], [1], [Use OpenSSL])
|
|
], [
|
|
- AC_SEARCH_LIBS(SSL_CTX_new, openssl,
|
|
+ AC_SEARCH_LIBS(SSL_CTX_new, ssl,
|
|
[with_openssl=yes; AC_DEFINE([WITH_OPENSSL], [1], [Use OpenSSL])],
|
|
[AC_MSG_WARN(*** OpenSSL was not found.)
|
|
])
|