blob: a8294966a4b301b41ce44d47a21ebe2598a4b99e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $NetBSD: hacks.mk,v 1.1 2004/12/15 17:13:17 jlam Exp $
### [Wed Dec 15 12:06:48 EST 2004 : jlam]
### On alpha, GCC-2.95.x gives a compiler error when building
### src/ec_inet.c and src/ec_logtofile.c. Simply require GCC>=3.0 to
### avoid this problem.
###
.if ${MACHINE_ARCH} == "alpha"
PKG_HACKS+= gcc2-alpha-optimization
GCC_REQD+= 3.0
.endif
|