Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Oct 2018 07:53:17 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r482646 - in branches/2018Q4/ftp/vsftpd: . files
Message-ID:  <201810210753.w9L7rHgE060650@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Sun Oct 21 07:53:17 2018
New Revision: 482646
URL: https://svnweb.freebsd.org/changeset/ports/482646

Log:
  MFH: r481692
  
  - fix OpenSSL 1.1.x build

Added:
  branches/2018Q4/ftp/vsftpd/files/patch-vsf_findlibs.sh
     - copied unchanged from r481692, head/ftp/vsftpd/files/patch-vsf_findlibs.sh
Modified:
  branches/2018Q4/ftp/vsftpd/Makefile
Directory Properties:
  branches/2018Q4/   (props changed)

Modified: branches/2018Q4/ftp/vsftpd/Makefile
==============================================================================
--- branches/2018Q4/ftp/vsftpd/Makefile	Sun Oct 21 07:51:32 2018	(r482645)
+++ branches/2018Q4/ftp/vsftpd/Makefile	Sun Oct 21 07:53:17 2018	(r482646)
@@ -3,6 +3,7 @@
 
 PORTNAME=	vsftpd
 PORTVERSION=	3.0.3
+PORTREVISION=	1
 CATEGORIES=	ftp ipv6
 MASTER_SITES=	https://security.appspot.com/downloads/ \
 		GENTOO

Copied: branches/2018Q4/ftp/vsftpd/files/patch-vsf_findlibs.sh (from r481692, head/ftp/vsftpd/files/patch-vsf_findlibs.sh)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q4/ftp/vsftpd/files/patch-vsf_findlibs.sh	Sun Oct 21 07:53:17 2018	(r482646, copy of r481692, head/ftp/vsftpd/files/patch-vsf_findlibs.sh)
@@ -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?201810210753.w9L7rHgE060650>