summaryrefslogtreecommitdiff
path: root/devel/pth
diff options
context:
space:
mode:
authorskrll <skrll@pkgsrc.org>2002-10-21 23:36:13 +0000
committerskrll <skrll@pkgsrc.org>2002-10-21 23:36:13 +0000
commit3f5989343f71e4cd106c1c8d04d07b40d414949f (patch)
treea913dfb971b599d1a2b90aa5a847104a4f08d1dd /devel/pth
parentb313b1d3238d32951370a71fe68772ca87ed7f93 (diff)
downloadpkgsrc-3f5989343f71e4cd106c1c8d04d07b40d414949f.tar.gz
Correct the logic around --enable-syscall-hard
Bump PKGREVISION++ Thanks to Rhialto <rhialto at azenomei at knuffel at net> for pointing this out. This will probably fix the xmms problems as well.
Diffstat (limited to 'devel/pth')
-rw-r--r--devel/pth/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/devel/pth/Makefile b/devel/pth/Makefile
index 34d78bdf088..a77d65b2cd8 100644
--- a/devel/pth/Makefile
+++ b/devel/pth/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.50 2002/10/18 19:22:09 jlam Exp $
+# $NetBSD: Makefile,v 1.51 2002/10/21 23:36:13 skrll Exp $
#
DISTNAME= pth-1.4.1
-PKGREVISION= 3
+PKGREVISION= 4
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=pth/}
@@ -29,13 +29,11 @@ PLIST_SUBST+= PTH_MAJOR=${PTH_MAJOR} PTH_MINOR=${PTH_MINOR}
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
-. if ${MACHINE_ARCH} == "m68k"
-. if !empty(OS_VERSION:M1.5.[12]*) || !empty(OS_VERSION:M1.[0-4]*)
+. if ${MACHINE_ARCH} == "m68k" && (!empty(OS_VERSION:M1.5.[12]*) || !empty(OS_VERSION:M1.[0-4]*))
pre-configure:
@${ECHO} Building without --enable-syscall-hard. lib/18644 needs fixing.
-. else
+. else
CONFIGURE_ARGS+= --enable-syscall-hard
-. endif
. endif
.endif