diff options
author | bapt <bapt@FreeBSD.org> | 2013-09-06 21:51:26 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-09-06 21:51:26 +0000 |
commit | 3f6cc2d92d744089ff9122acba3fd6b036212bca (patch) | |
tree | c51e61de363613aa573457c1f95a2541c1d3bed4 | |
parent | e3c4ac79c57140230ad7e570f56b0137793600e1 (diff) | |
download | FreeBSD-ports-3f6cc2d92d744089ff9122acba3fd6b036212bca.zip FreeBSD-ports-3f6cc2d92d744089ff9122acba3fd6b036212bca.tar.gz |
Fix build on head by removing USE_GCC=any and properly define USE_CSTD=gnu89 instead
PR: ports/181816
Submitted by: tijl
Approved by: gerald
-rw-r--r-- | lang/gcc42/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lang/gcc42/Makefile b/lang/gcc42/Makefile index 6fd6d1f..01cbeaa 100644 --- a/lang/gcc42/Makefile +++ b/lang/gcc42/Makefile @@ -23,11 +23,10 @@ VERSIONSTRING= ${PORTVERSION:C/([0-9]+\.[0-9]+).*\.([0-9]+)/\1-\2/} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} NOT_FOR_ARCHS= arm powerpc -USES= bison iconv +USES= bison gmake iconv perl5 USE_BZIP2= yes -USE_GCC= any -USE_GMAKE= yes -USE_PERL5_BUILD=yes +USE_CSTD= gnu89 +USE_PERL5= build PATCH_WRKSRC= ${SRCDIR} CONFIGURE_SCRIPT= ../${SRCDIR:S/${WRKDIR}\///}/configure |