Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Dec 2016 16:25:45 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r428076 - head/security/trousers
Message-ID:  <201612071625.uB7GPjws053644@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Wed Dec  7 16:25:44 2016
New Revision: 428076
URL: https://svnweb.freebsd.org/changeset/ports/428076

Log:
  security/trousers: Fix libressl support regression
  
  The CFLAGS and LDFLAGS additions introduced on 9 Sep 16 are critical
  to supporting building with LibreSSL.  They were removed with the
  last version upgrade, so put them back again.
  
  Approved by:	SSL blanket

Modified:
  head/security/trousers/Makefile

Modified: head/security/trousers/Makefile
==============================================================================
--- head/security/trousers/Makefile	Wed Dec  7 16:19:44 2016	(r428075)
+++ head/security/trousers/Makefile	Wed Dec  7 16:25:44 2016	(r428076)
@@ -31,6 +31,8 @@ CONFIGURE_ARGS=	--with-gui=none --enable
 		RANLIB=:
 MAKE_ENV=	ICONV_LIB=${ICONV_LIB} \
 		ICONV_PREFIX=${ICONV_PREFIX}
+CFLAGS+=	-I${OPENSSLINC}
+LDFLAGS+=	-L${OPENSSLLIB}
 SUB_FILES=	pkg-message
 SUB_LIST=	USERS="${USERS}" GROUPS="${GROUPS}"
 PLIST_SUB=	USERS="${USERS}" GROUPS="${GROUPS}"



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