diff options
author | brnrd <brnrd@FreeBSD.org> | 2016-02-15 02:13:39 +0800 |
---|---|---|
committer | brnrd <brnrd@FreeBSD.org> | 2016-02-15 02:13:39 +0800 |
commit | 81e2e67f3b1ae1df0a35d10f89d60cd32f9a6188 (patch) | |
tree | a79a5323b359e18c2c7536f3df2ac10ddb563693 /net/svnup | |
parent | 9175401f6887cb67fa1c3399568e213be27dcbd1 (diff) | |
download | freebsd-ports-gnome-81e2e67f3b1ae1df0a35d10f89d60cd32f9a6188.tar.gz freebsd-ports-gnome-81e2e67f3b1ae1df0a35d10f89d60cd32f9a6188.tar.zst freebsd-ports-gnome-81e2e67f3b1ae1df0a35d10f89d60cd32f9a6188.zip |
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
Diffstat (limited to 'net/svnup')
-rw-r--r-- | net/svnup/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/svnup/Makefile b/net/svnup/Makefile index 8f24eace2af4..df9027a88f59 100644 --- a/net/svnup/Makefile +++ b/net/svnup/Makefile @@ -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 |