svn commit: r478186 - head/devel/librelp

Matthew Seaman matthew at FreeBSD.org
Mon Aug 27 09:50:24 UTC 2018


Author: matthew
Date: Mon Aug 27 09:50:23 2018
New Revision: 478186
URL: https://svnweb.freebsd.org/changeset/ports/478186

Log:
  Fix linkage against libcrypto.so when the OPENSSL option is selected.
  Previously this compiling successfully but resulting in run-time
  failures in applications (rsyslog essentially) that consumed librelp.
  
  PR:		230913
  Submitted by:	Axel.Rau at Chaos1.DE

Modified:
  head/devel/librelp/Makefile

Modified: head/devel/librelp/Makefile
==============================================================================
--- head/devel/librelp/Makefile	Mon Aug 27 09:38:10 2018	(r478185)
+++ head/devel/librelp/Makefile	Mon Aug 27 09:50:23 2018	(r478186)
@@ -3,6 +3,7 @@
 
 PORTNAME=	librelp
 PORTVERSION=	1.2.17
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://download.rsyslog.com/librelp/
 
@@ -20,7 +21,7 @@ GNUTLS_CONFIGURE_ENABLE=	tls
 
 OPENSSL_USES=			ssl
 OPENSSL_CONFIGURE_ENABLE=	tls-openssl
-OPENSSL_CONFIGURE_ENV=		OPENSSL_LIBS=${OPENSSLLIB} \
+OPENSSL_CONFIGURE_ENV=		OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" \
 				OPENSSL_CFLAGS="-I ${OPENSSLINC}"
 
 USES=		libtool pathfix pkgconfig


More information about the svn-ports-head mailing list