Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Feb 2016 18:13:39 +0000 (UTC)
From:      Bernard Spil <brnrd@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r408876 - head/net/svnup
Message-ID:  <201602141813.u1EIDdlo033724@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: brnrd
Date: Sun Feb 14 18:13:39 2016
New Revision: 408876
URL: https://svnweb.freebsd.org/changeset/ports/408876

Log:
  net/svnup: Fix linking correct libssl
  
    - Use bsd.openssl.mk defined variable for libs
  
  Reviewed by:	koobs (mentor), feld (mentor)
  Approved by:	feld (mentor)
  Differential Revision:	D4843

Modified:
  head/net/svnup/Makefile

Modified: head/net/svnup/Makefile
==============================================================================
--- head/net/svnup/Makefile	Sun Feb 14 17:53:21 2016	(r408875)
+++ head/net/svnup/Makefile	Sun Feb 14 18:13:39 2016	(r408876)
@@ -2,7 +2,7 @@
 
 PORTNAME=	svnup
 PORTVERSION=	1.07
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net
 MASTER_SITES=	http://jcm.dsl.visi.com/freebsd/svnup/ \
 		LOCAL/jgh/net/${PORTNAME}/
@@ -14,7 +14,8 @@ LICENSE=	BSD2CLAUSE
 
 OPTIONS_DEFINE=	DOCS
 
-LDFLAGS+=	-lmd -lssl
+CFLAGS=		-I${OPENSSLINC}
+LDFLAGS=	-L${OPENSSLLIB} -lmd -lssl
 USES=		tar:xz
 USE_OPENSSL=	yes
 



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