diff options
author | wg <wg@FreeBSD.org> | 2013-11-17 23:58:38 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-11-17 23:58:38 +0800 |
commit | 537f39760e94be417a98a8fc0d30a74c9b77ea7f (patch) | |
tree | 0d2f2849058f321b4009dbca4d0858282f9fbc2a /security | |
parent | 02fa55c1b3da538055cd8f7dc5a1e8dc754fde81 (diff) | |
download | freebsd-ports-gnome-537f39760e94be417a98a8fc0d30a74c9b77ea7f.tar.gz freebsd-ports-gnome-537f39760e94be417a98a8fc0d30a74c9b77ea7f.tar.zst freebsd-ports-gnome-537f39760e94be417a98a8fc0d30a74c9b77ea7f.zip |
security/gnutls3: fix libtasn1 option
PR: ports/183992
Submitted by: sunpoet
Diffstat (limited to 'security')
-rw-r--r-- | security/gnutls3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/gnutls3/Makefile b/security/gnutls3/Makefile index 25a022eb29b5..8c773804e522 100644 --- a/security/gnutls3/Makefile +++ b/security/gnutls3/Makefile @@ -43,13 +43,13 @@ OPTIONS_DEFINE= CXX DOCS EXAMPLES LIBTASN1 OPTIONS_DEFAULT= CXX OPTIONS_SUB= yes -LIBTASN1_DESC= Use system libtasn1 +LIBTASN1_DESC= Use libtasn1 from ports CXX_CONFIGURE_ENABLE= cxx .include <bsd.port.options.mk> -.if defined(PORT_OPTIONS:MLIBTASN1) || exists(${LOCALBASE}/lib/libtasn1.so.7) +.if ${PORT_OPTIONS:MLIBTASN1} || exists(${LOCALBASE}/lib/libtasn1.so.7) LIB_DEPENDS+= libtasn1.so:${PORTSDIR}/security/libtasn1 .else CONFIGURE_ARGS+= --with-included-libtasn1 |