Fri Jul 27 10:23:12 2018 UTC ()
boehm-gc: Enable threads by default on SunOS.

Bump PKGREVISION.


(jperkin)
diff -r1.91 -r1.92 pkgsrc/devel/boehm-gc/Makefile
diff -r1.4 -r1.5 pkgsrc/devel/boehm-gc/options.mk

cvs diff -r1.91 -r1.92 pkgsrc/devel/boehm-gc/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/boehm-gc/Makefile 2018/06/08 20:17:43 1.91
+++ pkgsrc/devel/boehm-gc/Makefile 2018/07/27 10:23:12 1.92
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1# $NetBSD: Makefile,v 1.91 2018/06/08 20:17:43 leot Exp $ 1# $NetBSD: Makefile,v 1.92 2018/07/27 10:23:12 jperkin Exp $
2 2
3DISTNAME= gc-7.6.4 3DISTNAME= gc-7.6.4
4PKGNAME= ${DISTNAME:S/gc/boehm-gc/} 4PKGNAME= ${DISTNAME:S/gc/boehm-gc/}
5PKGREVISION= 2 5PKGREVISION= 3
6CATEGORIES= devel 6CATEGORIES= devel
7MASTER_SITES= http://www.hboehm.info/gc/gc_source/ 7MASTER_SITES= http://www.hboehm.info/gc/gc_source/
8 8
9MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://www.hboehm.info/gc/ 10HOMEPAGE= http://www.hboehm.info/gc/
11COMMENT= Garbage collection and memory leak detection for C and C++ 11COMMENT= Garbage collection and memory leak detection for C and C++
12 12
13USE_TOOLS+= gmake pkg-config 13USE_TOOLS+= gmake pkg-config
14USE_LANGUAGES= c c++ 14USE_LANGUAGES= c c++
15USE_LIBTOOL= YES 15USE_LIBTOOL= YES
16GNU_CONFIGURE= YES 16GNU_CONFIGURE= YES
17CONFIGURE_ARGS+= --enable-cplusplus 17CONFIGURE_ARGS+= --enable-cplusplus
18CONFIGURE_ARGS+= --datadir=${PREFIX}/share/doc 18CONFIGURE_ARGS+= --datadir=${PREFIX}/share/doc

cvs diff -r1.4 -r1.5 pkgsrc/devel/boehm-gc/options.mk (expand / switch to unified diff)

--- pkgsrc/devel/boehm-gc/options.mk 2016/02/25 12:12:47 1.4
+++ pkgsrc/devel/boehm-gc/options.mk 2018/07/27 10:23:12 1.5
@@ -1,17 +1,18 @@ @@ -1,17 +1,18 @@
1# $NetBSD: options.mk,v 1.4 2016/02/25 12:12:47 jperkin Exp $ 1# $NetBSD: options.mk,v 1.5 2018/07/27 10:23:12 jperkin Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.boehm-gc 3PKG_OPTIONS_VAR= PKG_OPTIONS.boehm-gc
4PKG_SUPPORTED_OPTIONS= threads 4PKG_SUPPORTED_OPTIONS= threads
5 5
6PKG_SUGGESTED_OPTIONS.Darwin+= threads 6PKG_SUGGESTED_OPTIONS.Darwin+= threads
 7PKG_SUGGESTED_OPTIONS.SunOS+= threads
7 8
8.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
9 10
10### 11###
11### threads support 12### threads support
12### 13###
13.if !empty(PKG_OPTIONS:Mthreads) 14.if !empty(PKG_OPTIONS:Mthreads)
14.include "../../mk/pthread.buildlink3.mk" 15.include "../../mk/pthread.buildlink3.mk"
15.else 16.else
16CONFIGURE_ARGS+= --disable-threads 17CONFIGURE_ARGS+= --disable-threads
17.endif 18.endif