diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2004-11-15 02:37:29 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2004-11-15 02:37:29 +0000 |
commit | 90c441e492446fec99b85a2a8f6ced421e099cad (patch) | |
tree | 7656c3efdf00742142d540d2a180b563a3290c9d /lang | |
parent | Add an UPDATING entry which suggests workarounds for default (diff) |
If built on a machine with GCC 3.2 or later; assume the machine has CPUTYPE
set to something GCC 2.95 won't understand.
Notes
Notes:
svn path=/head/; revision=121628
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc30/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/gcc30/Makefile b/lang/gcc30/Makefile index e0067cbecd17..daf02aca1fae 100644 --- a/lang/gcc30/Makefile +++ b/lang/gcc30/Makefile @@ -32,6 +32,9 @@ CONFIGURE_SCRIPT= ../${SRCDIR:C/${WRKDIR}//}/configure .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 500039 +WITHOUT_CPU_CFLAGS= yes +.endif .if ${OSVERSION} >= 500113 BROKEN= "Does not compile" USE_REINPLACE= yes |