mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
USE_GCC=4.3 is deprecated (and no port uses it anymore). USE_GCC=4.3+
is transparently rewritten to USE_GCC=4.4+ and lang/gcc43 will be disconnected from the USE_GCC infrastructure soon.
This commit is contained in:
parent
023b8d63a7
commit
6c6e96d736
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=255910
2 changed files with 16 additions and 1 deletions
7
CHANGES
7
CHANGES
|
@ -10,6 +10,13 @@ in the release notes and/or placed into UPDATING.
|
||||||
|
|
||||||
All ports committers are allowed to commit to this file.
|
All ports committers are allowed to commit to this file.
|
||||||
|
|
||||||
|
20100606:
|
||||||
|
AUTHOR: gerald@FreeBSD.org
|
||||||
|
|
||||||
|
* USE_GCC=4.3 is deprecated (and no port uses it anymore). USE_GCC=4.3+
|
||||||
|
is transparently rewritten to USE_GCC=4.4+ and lang/gcc43 will be
|
||||||
|
disconnected from the USE_GCC infrastructure soon.
|
||||||
|
|
||||||
20100524:
|
20100524:
|
||||||
AUTHOR: alepulver@FreeBSD.org
|
AUTHOR: alepulver@FreeBSD.org
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,10 @@
|
||||||
# the version. Note that the Fortran compiler is specified with the
|
# the version. Note that the Fortran compiler is specified with the
|
||||||
# USE_FORTRAN knob.
|
# USE_FORTRAN knob.
|
||||||
#
|
#
|
||||||
# For example:
|
# As of 2010-06-06, USE_GCC=4.3 is deprecated and USE_GCC=4.3+ is
|
||||||
|
# transparently rewritten to USE_GCC=4.4+.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
# USE_GCC= 4.2+ # port requires GCC 4.2 or later.
|
# USE_GCC= 4.2+ # port requires GCC 4.2 or later.
|
||||||
# USE_GCC= 4.5 # port requires GCC 4.5.
|
# USE_GCC= 4.5 # port requires GCC 4.5.
|
||||||
#
|
#
|
||||||
|
@ -114,6 +117,11 @@ MAKE_ENV+= F77="${F77}" FC="${FC}" FFLAGS="${FFLAGS}"
|
||||||
|
|
||||||
.if defined(USE_GCC)
|
.if defined(USE_GCC)
|
||||||
|
|
||||||
|
# USE_GCC=4.3 is deprecated...
|
||||||
|
.if ${USE_GCC} == 4.3+
|
||||||
|
USE_GCC:=4.4+
|
||||||
|
.endif
|
||||||
|
|
||||||
# See if we can use a later version
|
# See if we can use a later version
|
||||||
_USE_GCC:= ${USE_GCC:S/+//}
|
_USE_GCC:= ${USE_GCC:S/+//}
|
||||||
.if ${USE_GCC} != ${_USE_GCC}
|
.if ${USE_GCC} != ${_USE_GCC}
|
||||||
|
|
Loading…
Add table
Reference in a new issue