summaryrefslogtreecommitdiff
path: root/graphics/aalib/hacks.mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2006-03-31 17:11:54 +0000
committerjlam <jlam@pkgsrc.org>2006-03-31 17:11:54 +0000
commit11a4af36937dba73f14101e5e3af04d9b4ec2f27 (patch)
treecb413d8c8bfde6e26048f564716b4041cf367372 /graphics/aalib/hacks.mk
parent9e062e1310821172956382448b1ce4557fb9e2c7 (diff)
downloadpkgsrc-11a4af36937dba73f14101e5e3af04d9b4ec2f27.tar.gz
* Avoid an unnecessary SUBST_FILES class by using environnment variables
to accomplish the same thing. * Move the arm compiler hack into a hacks.mk file.
Diffstat (limited to 'graphics/aalib/hacks.mk')
-rw-r--r--graphics/aalib/hacks.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/graphics/aalib/hacks.mk b/graphics/aalib/hacks.mk
new file mode 100644
index 00000000000..d6a2ac28012
--- /dev/null
+++ b/graphics/aalib/hacks.mk
@@ -0,0 +1,8 @@
+# $NetBSD: hacks.mk,v 1.1 2006/03/31 17:11:54 jlam Exp $
+
+### [Mon Mar 25 14:45:05 2002 UTC : cjep]
+### On arm{,32}, avoid internal compiler errors with old GCC versions.
+###
+.if (${MACHINE_ARCH} == "arm") || (${MACHINE_ARCH} == "arm32")
+GCC_REQD+= 2.95.3
+.endif