summaryrefslogtreecommitdiff
path: root/devel/glib
diff options
context:
space:
mode:
authortron <tron>1999-05-01 12:22:46 +0000
committertron <tron>1999-05-01 12:22:46 +0000
commit85e11bd7112a44791b19b83f38c02e2b651787a6 (patch)
treea4e069be18a2565b07dd6adca85f80aab4fe6b78 /devel/glib
parent31ca2cb4a3baea7f4b47085a3c6020dc47867f2b (diff)
downloadpkgsrc-85e11bd7112a44791b19b83f38c02e2b651787a6.tar.gz
Use "-O0" under NetBSD-arm32 until egcs gets fixed.
Diffstat (limited to 'devel/glib')
-rw-r--r--devel/glib/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/glib/Makefile b/devel/glib/Makefile
index 48dff545c8c..cf5d3a4a799 100644
--- a/devel/glib/Makefile
+++ b/devel/glib/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 1999/04/16 19:18:54 tron Exp $
+# $NetBSD: Makefile,v 1.15 1999/05/01 12:22:46 tron Exp $
# FreeBSD Id: Makefile,v 1.2 1998/08/06 14:55:12 vanilla Exp
#
@@ -21,5 +21,9 @@ INFO_FILES= glib.info
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/glib
LIBTOOL_FLAGS= --install-la
+# XXX egcs is still broken on arm32.
+.if (${MACHINE_ARCH} == arm32)
+CFLAGS= -O0
+.endif
.include "../../mk/bsd.pkg.mk"