From owner-svn-ports-all@FreeBSD.ORG Sun Jul 21 04:58:52 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 403E63F5; Sun, 21 Jul 2013 04:58:52 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 336D6247; Sun, 21 Jul 2013 04:58:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6L4wp6S075914; Sun, 21 Jul 2013 04:58:51 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6L4wpVO075913; Sun, 21 Jul 2013 04:58:51 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201307210458.r6L4wpVO075913@svn.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 21 Jul 2013 04:58:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323366 - head/net/spserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Jul 2013 04:58:52 -0000 Author: vanilla Date: Sun Jul 21 04:58:51 2013 New Revision: 323366 URL: http://svnweb.freebsd.org/changeset/ports/323366 Log: Make MAKE_JOBS_UNSAFE. Obtained from: miwi@ Modified: head/net/spserver/Makefile Modified: head/net/spserver/Makefile ============================================================================== --- head/net/spserver/Makefile Sun Jul 21 04:45:05 2013 (r323365) +++ head/net/spserver/Makefile Sun Jul 21 04:58:51 2013 (r323366) @@ -17,6 +17,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER 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 .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