diff options
author | bapt <bapt@FreeBSD.org> | 2013-09-07 05:51:26 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-09-07 05:51:26 +0800 |
commit | 3f6cc2d92d744089ff9122acba3fd6b036212bca (patch) | |
tree | c51e61de363613aa573457c1f95a2541c1d3bed4 /lang | |
parent | e3c4ac79c57140230ad7e570f56b0137793600e1 (diff) | |
download | freebsd-ports-gnome-3f6cc2d92d744089ff9122acba3fd6b036212bca.tar.gz freebsd-ports-gnome-3f6cc2d92d744089ff9122acba3fd6b036212bca.tar.zst freebsd-ports-gnome-3f6cc2d92d744089ff9122acba3fd6b036212bca.zip |
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
Diffstat (limited to 'lang')
-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 6fd6d1f8d414..01cbeaadf113 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 |