Sun Mar 15 15:28:24 2015 UTC ()
wants to link with pthreads


(tnn)
diff -r1.4 -r1.5 pkgsrc/sysutils/watchman/Makefile

cvs diff -r1.4 -r1.5 pkgsrc/sysutils/watchman/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/watchman/Makefile 2015/02/14 22:36:53 1.4
+++ pkgsrc/sysutils/watchman/Makefile 2015/03/15 15:28:24 1.5
@@ -1,24 +1,25 @@ @@ -1,24 +1,25 @@
1# $NetBSD: Makefile,v 1.4 2015/02/14 22:36:53 nros Exp $ 1# $NetBSD: Makefile,v 1.5 2015/03/15 15:28:24 tnn Exp $
2 2
3DISTNAME= watchman-${VERSION} 3DISTNAME= watchman-${VERSION}
4VERSION= 3.0.0 4VERSION= 3.0.0
5CATEGORIES= sysutils 5CATEGORIES= sysutils
6MASTER_SITES= -https://github.com/facebook/watchman/archive/v${VERSION}.tar.gz 6MASTER_SITES= -https://github.com/facebook/watchman/archive/v${VERSION}.tar.gz
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://github.com/facebook/watchman/ 9HOMEPAGE= https://github.com/facebook/watchman/
10COMMENT= Watches files and takes action when they change 10COMMENT= Watches files and takes action when they change
11LICENSE= apache-2.0 11LICENSE= apache-2.0
12 12
13USE_TOOLS+= autoconf automake autoreconf gmake 13USE_TOOLS+= autoconf automake autoreconf gmake
14GNU_CONFIGURE= yes 14GNU_CONFIGURE= yes
15# https://github.com/facebook/watchman/issues/50 15# https://github.com/facebook/watchman/issues/50
16CONFIGURE_ARGS+= --enable-lenient 16CONFIGURE_ARGS+= --enable-lenient
17CONFIGURE_ARGS+= --enable-conffile=${PKG_SYSCONFDIR}/watchman.json 17CONFIGURE_ARGS+= --enable-conffile=${PKG_SYSCONFDIR}/watchman.json
18CONFIGURE_ARGS+= --with-pcre 18CONFIGURE_ARGS+= --with-pcre
19 19
20pre-configure: 20pre-configure:
21 cd ${WRKSRC} && ${SH} autogen.sh 21 cd ${WRKSRC} && ${SH} autogen.sh
22 22
23.include "../../devel/pcre/buildlink3.mk" 23.include "../../devel/pcre/buildlink3.mk"
 24.include "../../mk/pthread.buildlink3.mk"
24.include "../../mk/bsd.pkg.mk" 25.include "../../mk/bsd.pkg.mk"