diff options
author | mrauch <mrauch@pkgsrc.org> | 2002-02-12 10:52:31 +0000 |
---|---|---|
committer | mrauch <mrauch@pkgsrc.org> | 2002-02-12 10:52:31 +0000 |
commit | 02ad3961880d6cbf60f6566814028a877a280706 (patch) | |
tree | c0425b53795952a6df6204822afbc407d118c510 /devel/pth | |
parent | a3c1ce40ddab618a24803770da079df1fe31fbd4 (diff) | |
download | pkgsrc-02ad3961880d6cbf60f6566814028a877a280706.tar.gz |
Disable optimization for i386 because it can cause segfaults with a
completely thrashed stack.
Diffstat (limited to 'devel/pth')
-rw-r--r-- | devel/pth/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/pth/Makefile b/devel/pth/Makefile index bdfce9d5cc3..df9bdb826f1 100644 --- a/devel/pth/Makefile +++ b/devel/pth/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.36 2001/09/27 23:17:57 jlam Exp $ +# $NetBSD: Makefile,v 1.37 2002/02/12 10:52:31 mrauch Exp $ # DISTNAME= pth-1.4.0 +PKGREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=pth/} @@ -16,6 +17,9 @@ USE_LIBTOOL= YES LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-pthread +.if (${MACHINE_ARCH} == "i386" && ${CFLAGS} == "-O2") +CFLAGS= -O0 +.endif # for PLIST PTH_MAJOR= 14 |