diff options
author | trevor <trevor@FreeBSD.org> | 2005-01-14 19:24:38 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2005-01-14 19:24:38 +0800 |
commit | 074bb50bdfff799116dbbfd71813909f53ef796d (patch) | |
tree | 193bd56f3a3eec5e4d410da72daee8e47e903243 /lang | |
parent | e98401e3d5d0df0b7ba1601da8382e7d7b976a8b (diff) | |
download | freebsd-ports-gnome-074bb50bdfff799116dbbfd71813909f53ef796d.tar.gz freebsd-ports-gnome-074bb50bdfff799116dbbfd71813909f53ef796d.tar.zst freebsd-ports-gnome-074bb50bdfff799116dbbfd71813909f53ef796d.zip |
This does compile on the Alpha--well, sometimes it does. I agree with kris'
speculation that the default CFLAGS may be causing the problem seen on the
package-building cluster. Try to work around the problem.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc295/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/gcc295/Makefile b/lang/gcc295/Makefile index 9e33b31884c2..98cba44039e3 100644 --- a/lang/gcc295/Makefile +++ b/lang/gcc295/Makefile @@ -18,7 +18,7 @@ DISTFILES= gcc-core-${GCC_REV}${EXTRACT_SUFX} \ MAINTAINER= trevor@FreeBSD.org COMMENT= GNU Compiler Collection -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= alpha i386 USE_BZIP2= yes LATEST_LINK= gcc295 @@ -29,6 +29,10 @@ LATEST_LINK= gcc295 .include <bsd.port.pre.mk> +.if ${ARCH} = alpha +WITHOUT_CPU_CFLAGS= yes +.endif + .if ${OSVERSION} >= 500039 WITHOUT_CPU_CFLAGS= yes .endif |