Date: Wed, 10 Oct 2018 06:11:43 +0000 (UTC) From: Dirk Meyer <dinoex@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481692 - in head/ftp/vsftpd: . files Message-ID: <201810100611.w9A6Bh4m008746@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dinoex Date: Wed Oct 10 06:11:42 2018 New Revision: 481692 URL: https://svnweb.freebsd.org/changeset/ports/481692 Log: - fix OpenSSL 1.1.x build Added: head/ftp/vsftpd/files/patch-vsf_findlibs.sh (contents, props changed) Modified: head/ftp/vsftpd/Makefile Modified: head/ftp/vsftpd/Makefile ============================================================================== --- head/ftp/vsftpd/Makefile Wed Oct 10 06:10:46 2018 (r481691) +++ head/ftp/vsftpd/Makefile Wed Oct 10 06:11:42 2018 (r481692) @@ -3,6 +3,7 @@ PORTNAME= vsftpd PORTVERSION= 3.0.3 +PORTREVISION= 1 CATEGORIES= ftp ipv6 MASTER_SITES= https://security.appspot.com/downloads/ \ GENTOO Added: head/ftp/vsftpd/files/patch-vsf_findlibs.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/vsftpd/files/patch-vsf_findlibs.sh Wed Oct 10 06:11:42 2018 (r481692) @@ -0,0 +1,11 @@ +--- vsf_findlibs.sh.orig 2012-03-28 02:17:41 UTC ++++ vsf_findlibs.sh +@@ -69,7 +69,7 @@ locate_library /usr/shlib/librt.so && ec + locate_library /usr/lib/libsendfile.so && echo "-lsendfile"; + + # OpenSSL +-if find_func SSL_library_init ssl.o; then ++if find_func SSL_CTX_new ssl.o; then + echo "-lssl -lcrypto"; + fi +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810100611.w9A6Bh4m008746>