diff options
author | vanilla <vanilla@FreeBSD.org> | 2013-07-21 12:58:51 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2013-07-21 12:58:51 +0800 |
commit | d9d53e8fc63eb45d3516c99366068b94d88b48db (patch) | |
tree | b1901ae5386914750fada8aa406ff7576469b63e /net | |
parent | 5e1d698224216626067450480c3afad9444842d9 (diff) | |
download | freebsd-ports-gnome-d9d53e8fc63eb45d3516c99366068b94d88b48db.tar.gz freebsd-ports-gnome-d9d53e8fc63eb45d3516c99366068b94d88b48db.tar.zst freebsd-ports-gnome-d9d53e8fc63eb45d3516c99366068b94d88b48db.zip |
Make MAKE_JOBS_UNSAFE.
Obtained from: miwi@
Diffstat (limited to 'net')
-rw-r--r-- | net/spserver/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/spserver/Makefile b/net/spserver/Makefile index 49141985d446..840e7e7c35fc 100644 --- a/net/spserver/Makefile +++ b/net/spserver/Makefile @@ -17,6 +17,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_LDCONFIG= yes USE_GMAKE= yes ALL_TARGET= all build_openssl +MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= GNUTLS # MATRIXSSL "Enable matrixssl support" off \ @@ -25,7 +26,7 @@ OPTIONS_DEFINE= GNUTLS .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MMATRIXSSL} -BUILD_DEPENDS= ${PREFIX}/lib/libmatrixsslstatic.a:${PORTSDIR}/security/matrixssl +BUILD_DEPENDS= ${LOCALBASE}/lib/libmatrixsslstatic.a:${PORTSDIR}/security/matrixssl ALL_TARGET+= build_matrixssl PLIST_SUB+= WITH_MATRIXSSL="" .else @@ -41,7 +42,7 @@ PLIST_SUB+= WITH_GNUTLS="@comment " .endif .if ${PORT_OPTIONS:MXYSSL} -BUILD_DEPENDS= ${PREFIX}/lib/libxyssl.a:${PORTSDIR}/security/xyssl +BUILD_DEPENDS= ${LOCALBASE}/lib/libxyssl.a:${PORTSDIR}/security/xyssl ALL_TARGET+= build_xyssl PLIST_SUB+= WITH_XYSSL="" .else |