diff options
author | gerald <gerald@FreeBSD.org> | 2014-11-03 05:15:21 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2014-11-03 05:15:21 +0800 |
commit | 0539916508b82971c4e8959c6c91ebfa4b2a8783 (patch) | |
tree | bea32571acdf695d4cbbe94ed0537abf931a4817 /Mk | |
parent | 8ddbcd179c74a3682ff46051b7d73f659c0a5e9f (diff) | |
download | freebsd-ports-gnome-0539916508b82971c4e8959c6c91ebfa4b2a8783.tar.gz freebsd-ports-gnome-0539916508b82971c4e8959c6c91ebfa4b2a8783.tar.zst freebsd-ports-gnome-0539916508b82971c4e8959c6c91ebfa4b2a8783.zip |
Add support for USE_GCC=5 and its preferred form USE_GCC=5+.
PR: 194676
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gcc.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mk/bsd.gcc.mk b/Mk/bsd.gcc.mk index 2495c463d4ad..b728fd4a9212 100644 --- a/Mk/bsd.gcc.mk +++ b/Mk/bsd.gcc.mk @@ -35,7 +35,7 @@ GCC_Include_MAINTAINER= gerald@FreeBSD.org # All GCC versions supported by the ports framework. Keep them in # ascending order and in sync with the table below. -GCCVERSIONS= 040200 040600 040700 040800 040900 +GCCVERSIONS= 040200 040600 040700 040800 040900 050000 # The first field if the OSVERSION in which it appeared in the base. # The second field is the OSVERSION in which it disappeared from the base. @@ -45,6 +45,7 @@ GCCVERSION_040600= 0 0 4.6 GCCVERSION_040700= 0 0 4.7 GCCVERSION_040800= 0 0 4.8 GCCVERSION_040900= 0 0 4.9 +GCCVERSION_050000= 0 0 5 # Version of lang/gcc GCC_DEFAULT_V= 4.8 |