diff options
author | gerald <gerald@FreeBSD.org> | 2013-08-18 00:27:24 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2013-08-18 00:27:24 +0800 |
commit | 92621d361d009a9f1c5fbfe137cf9e878dbe34cf (patch) | |
tree | c1657d06d35b5f160b90b16620933ca757495766 /editors | |
parent | 9e9651b8c9f8d3ec1375dfb2e0d48a491ad6c121 (diff) | |
download | freebsd-ports-gnome-92621d361d009a9f1c5fbfe137cf9e878dbe34cf.tar.gz freebsd-ports-gnome-92621d361d009a9f1c5fbfe137cf9e878dbe34cf.tar.zst freebsd-ports-gnome-92621d361d009a9f1c5fbfe137cf9e878dbe34cf.zip |
Replace USE_GCC=4.6+ and USE_GCC=4.4+ by USE_GCC=yes.
Right now this is a noop in the former case and a noop in the latter
case unless lang/gcc44 has been installed explicitly.
This puts a bit more emphasis on standardizing on a canonical version
"current" GCC and makes it easier to update that canonical version
by changing the default in Mk/bsd.gcc.mk and updating the lang/gcc port.
That is, USE_GCC=yes means "use a decent/modern version of GCC" without
having to worry about details.
Approved by: portmgr (bdrewery)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs-devel/Makefile | 2 | ||||
-rw-r--r-- | editors/libreoffice/Makefile | 2 | ||||
-rw-r--r-- | editors/openoffice-3/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index 077943a72466..75447a16f014 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -232,7 +232,7 @@ CONFIGURE_ARGS+= --without-gnutls .endif .if ${PORT_OPTIONS:MLTO} -USE_GCC= 4.6+ +USE_GCC= yes CONFIGURE_ARGS+= --enable-link-time-optimization .endif diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index fe344ba4a59c..3222dcc769fa 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -339,7 +339,7 @@ CONFIGURE_ARGS+= --disable-neon .include <bsd.port.pre.mk> .if defined(WITH_GCC) -USE_GCC= 4.6+ +USE_GCC= yes CONFIGURE_ENV+= CXXCPP="${CPP}" .else .if exists(/usr/bin/clang) && ${OSVERSION} > 901502 diff --git a/editors/openoffice-3/Makefile b/editors/openoffice-3/Makefile index 2b58b53a858c..2c440f193aeb 100644 --- a/editors/openoffice-3/Makefile +++ b/editors/openoffice-3/Makefile @@ -24,7 +24,7 @@ USE_XORG= x11 ice xaw xau xext xrender xrandr \ xi xt xcursor xdamage xcomposite xfixes USE_GL= gl glu USE_GSTREAMER= yes -#USE_GCC= 4.6+ +#USE_GCC= yes USE_GMAKE= yes USE_PYTHON= yes USE_PERL5= build |