pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk/compiler Make GCC_REQD+= 4.5 to 4.8 resolve to 4.8 ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/45401a5883e4
branches:  trunk
changeset: 356314:45401a5883e4
user:      maya <maya%pkgsrc.org@localhost>
date:      Thu Dec 29 22:21:13 2016 +0000

description:
Make GCC_REQD+= 4.5 to 4.8 resolve to 4.8 (dropping the possibility to
match for 4.5, 4.6, 4.7, which will soon be dropped).

This commit is the functional change. Cleanup will be done in separate
commits.

diffstat:

 mk/compiler/gcc.mk |  15 +++------------
 1 files changed, 3 insertions(+), 12 deletions(-)

diffs (29 lines):

diff -r 3aed61957070 -r 45401a5883e4 mk/compiler/gcc.mk
--- a/mk/compiler/gcc.mk        Thu Dec 29 20:29:40 2016 +0000
+++ b/mk/compiler/gcc.mk        Thu Dec 29 22:21:13 2016 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: gcc.mk,v 1.171 2016/11/25 20:36:49 marino Exp $
+# $NetBSD: gcc.mk,v 1.172 2016/12/29 22:21:13 maya Exp $
 #
 # This is the compiler definition for the GNU Compiler Collection.
 #
@@ -123,17 +123,8 @@
 # _GCC44_PATTERNS matches N s.t. 4.4 <= N < 4.5.
 _GCC44_PATTERNS= 4.4 4.4.*
 
-# _GCC45_PATTERNS matches N s.t. 4.5 <= N < 4.6.
-_GCC45_PATTERNS= 4.5 4.5.*
-
-# _GCC46_PATTERNS matches N s.t. 4.6 <= N < 4.7.
-_GCC46_PATTERNS= 4.6 4.6.*
-
-# _GCC47_PATTERNS matches N s.t. 4.7 <= N < 4.8.
-_GCC47_PATTERNS= 4.7 4.7.*
-
-# _GCC48_PATTERNS matches N s.t. 4.8 <= N < 4.9.
-_GCC48_PATTERNS= 4.8 4.8.*
+# _GCC48_PATTERNS matches N s.t. 4.5 <= N < 4.9.
+_GCC48_PATTERNS= 4.[5678] 4.[5678].*
 
 # _GCC49_PATTERNS matches N s.t. 4.9 <= N < 4.10.
 _GCC49_PATTERNS= 4.9 4.9.*



Home | Main Index | Thread Index | Old Index