Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Sep 2018 07:00:19 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478763 - head/devel/librelp
Message-ID:  <201809020700.w8270J3s091811@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809020700.w8270J3s091811>