diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-06-16 21:23:13 +0800 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-06-16 21:23:13 +0800 |
commit | 5b55a8a53e383d5e641472b56a6d631e59da3967 (patch) | |
tree | f5237f7173e7b9a5cbac11e6a57f460d84e79314 /net-im/telepathy-idle | |
parent | 769a9f1570ce818b49b6170bf5745363ffbe79e0 (diff) | |
download | freebsd-ports-gnome-5b55a8a53e383d5e641472b56a6d631e59da3967.tar.gz freebsd-ports-gnome-5b55a8a53e383d5e641472b56a6d631e59da3967.tar.zst freebsd-ports-gnome-5b55a8a53e383d5e641472b56a6d631e59da3967.zip |
Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
Diffstat (limited to 'net-im/telepathy-idle')
-rw-r--r-- | net-im/telepathy-idle/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/telepathy-idle/Makefile b/net-im/telepathy-idle/Makefile index b20a1ee5dc02..48c2d878757b 100644 --- a/net-im/telepathy-idle/Makefile +++ b/net-im/telepathy-idle/Makefile @@ -23,7 +23,7 @@ INSTALL_TARGET= install-strip .include <bsd.port.pre.mk> -.if defined(WITH_OPENSSL_BASE) +.if ${SSL_DEFAULT} == base CONFIGURE_ENV+= OPENSSL_LIBS="-L/usr/lib -lssl -lcrypto" OPENSSL_CFLAGS="-I/usr/include" .endif |