diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-12-30 17:01:27 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-12-30 17:01:27 +0000 |
commit | 1e106f4f651421fbf7636b456ff6492c7aa152d0 (patch) | |
tree | b5f4564e8e63eab13a16d121ba39c3b120956f51 /lang | |
parent | ba4e641442fb87770cef0635c8e0ca20b447f5c2 (diff) | |
download | pkgsrc-1e106f4f651421fbf7636b456ff6492c7aa152d0.tar.gz |
Use the same configure flags for NetBSD 1.[56] as for 1.[56].x (i.e.
adjust the tests to understand that 1.[56] is not written as 1.[56].0).
Bump PKGREVISION.
This solves PR pkg/28499.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/tcl/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lang/tcl/Makefile b/lang/tcl/Makefile index fcc46e26a59..d77c8620dec 100644 --- a/lang/tcl/Makefile +++ b/lang/tcl/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.43 2004/11/29 14:55:32 adam Exp $ +# $NetBSD: Makefile,v 1.44 2004/12/30 17:01:27 kristerw Exp $ DISTNAME= tcl8.4.8-src PKGNAME= tcl-8.4.8 +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} @@ -30,7 +31,7 @@ CONFIGURE_ARGS+= --mandir=${WRKDIR}/man .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "NetBSD" -.if empty(OS_VERSION:M1.[56].*) +.if empty(OS_VERSION:M1.[56]*) CONFIGURE_ARGS+= --enable-threads .else CONFIGURE_ARGS+= --disable-threads @@ -41,7 +42,7 @@ CONFIGURE_ARGS+= --disable-threads CONFIGURE_ENV+= TCL_PACKAGE_PATH="${VIEWBASE}/lib/tcl" .if ${OPSYS} == "NetBSD" -.if empty(OS_VERSION:M1.[56].*) +.if empty(OS_VERSION:M1.[56]*) .include "../../mk/pthread.buildlink3.mk" .endif .endif |