svn commit: r377075 - head/devel/libgit2

William Grzybowski wg at FreeBSD.org
Thu Jan 15 11:01:26 UTC 2015


Author: wg
Date: Thu Jan 15 11:01:25 2015
New Revision: 377075
URL: https://svnweb.freebsd.org/changeset/ports/377075
QAT: https://qat.redports.org/buildarchive/r377075/

Log:
  devel/libgit2: add THREADS option and make it default
  
  PR:		196662
  Submitted by:	rm

Modified:
  head/devel/libgit2/Makefile

Modified: head/devel/libgit2/Makefile
==============================================================================
--- head/devel/libgit2/Makefile	Thu Jan 15 10:49:31 2015	(r377074)
+++ head/devel/libgit2/Makefile	Thu Jan 15 11:01:25 2015	(r377075)
@@ -2,6 +2,7 @@
 
 PORTNAME=	libgit2
 PORTVERSION=	0.21.1
+PORTREVISION=	1
 CATEGORIES=	devel
 
 MAINTAINER=	wg at FreeBSD.org
@@ -20,13 +21,15 @@ USE_OPENSSL=	yes
 
 PLIST_SUB=	SHLIB_VER=${PORTVERSION:R:E}
 
-OPTIONS_DEFINE=	SSH
-OPTIONS_DEFAULT=SSH
+OPTIONS_DEFINE=	SSH THREADS
+OPTIONS_DEFAULT=SSH THREADS
 SSH_DESC=	Enable SSH support through libssh2
 
 SSH_LIB_DEPENDS=	libssh2.so:${PORTSDIR}/security/libssh2
 SSH_CMAKE_ON=		-DUSE_SSH=ON
 SSH_CMAKE_OFF=		-DUSE_SSH=OFF
+THREADS_CMAKE_ON=	-DTHREADSAFE=ON
+THREADS_CMAKE_OFF=	-DTHREADSAFE=OFF
 
 .include <bsd.port.pre.mk>
 


More information about the svn-ports-all mailing list