svn commit: r478763 - head/devel/librelp

Matthew Seaman matthew at FreeBSD.org
Sun Sep 2 07:00:20 UTC 2018


Author: matthew
Date: Sun Sep  2 07:00:19 2018
New Revision: 478763
URL: https://svnweb.freebsd.org/changeset/ports/478763

Log:
  Second try at fixing the linking problems with librelp when the
  OPENSSL option is selected.  The undefined symbol 'SSL_set_ex_data'
  from the original PR clearly comes from libssl.so.
  
  PR:		230913
  Submitted by:	Axel.Rau at Chaos1.DE

Modified:
  head/devel/librelp/Makefile

Modified: head/devel/librelp/Makefile
==============================================================================
--- head/devel/librelp/Makefile	Sun Sep  2 06:58:17 2018	(r478762)
+++ head/devel/librelp/Makefile	Sun Sep  2 07:00:19 2018	(r478763)
@@ -3,7 +3,7 @@
 
 PORTNAME=	librelp
 PORTVERSION=	1.2.17
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 MASTER_SITES=	http://download.rsyslog.com/librelp/
 
@@ -21,7 +21,7 @@ GNUTLS_CONFIGURE_ENABLE=	tls
 
 OPENSSL_USES=			ssl
 OPENSSL_CONFIGURE_ENABLE=	tls-openssl
-OPENSSL_CONFIGURE_ENV=		OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" \
+OPENSSL_CONFIGURE_ENV=		OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" \
 				OPENSSL_CFLAGS="-I ${OPENSSLINC}"
 
 USES=		libtool pathfix pkgconfig


More information about the svn-ports-head mailing list