diff options
author | drochner <drochner> | 2005-05-25 17:48:13 +0000 |
---|---|---|
committer | drochner <drochner> | 2005-05-25 17:48:13 +0000 |
commit | f065d7aa0a86c197adb6cf8c7718198b28e37992 (patch) | |
tree | 996440ee873224b6b6837d86868f801f0c8bd189 /lang/cint | |
parent | c5e60edb3beeae7ce8893c699cb51bf6bb24ee88 (diff) | |
download | pkgsrc-f065d7aa0a86c197adb6cf8c7718198b28e37992.tar.gz |
require gcc>=3 and native threads
This effectively removes support for NetBSD-1.6, thus closing
PR pkg/30317 by diro@nixsys.bz.
Diffstat (limited to 'lang/cint')
-rw-r--r-- | lang/cint/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/cint/Makefile b/lang/cint/Makefile index 33965ead445..82197cc7cd6 100644 --- a/lang/cint/Makefile +++ b/lang/cint/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/05/19 17:11:45 drochner Exp $ +# $NetBSD: Makefile,v 1.15 2005/05/25 17:48:13 drochner Exp $ DISTNAME= cint5.15 PKGNAME= cint-5.15.174 @@ -13,6 +13,8 @@ COMMENT= C/C++ interpreter #same distribution file name for minor versions DIST_SUBDIR= ${PKGNAME} WRKSRC= ${WRKDIR} +GCC_REQD+= 3.0 +PTHREAD_OPTS+= require native post-extract: ${FIND} -d ${WRKSRC} -type d -name CVS -exec ${RM} -rf {} \; @@ -41,4 +43,5 @@ do-install: ${CP} -r ${WRKDIR}/lib/prec_stl ${PREFIX}/cint/lib ${INSTALL_DATA} ${WRKDIR}/G__ci.h ${PREFIX}/cint +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |