pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/pkgsrc-2017Q1]: pkgsrc/mk/compiler Pullup ticket #5265 - requested by...
details: https://anonhg.NetBSD.org/pkgsrc/rev/49650b30b067
branches: pkgsrc-2017Q1
changeset: 360248:49650b30b067
user: bsiegert <bsiegert%pkgsrc.org@localhost>
date: Sun Apr 16 14:56:21 2017 +0000
description:
Pullup ticket #5265 - requested by sevan
mk/compiler/gcc.mk: bugfix
Revisions pulled up:
- mk/compiler/gcc.mk 1.175
---
Module Name: pkgsrc
Committed By: jperkin
Date: Mon Apr 10 12:22:07 UTC 2017
Modified Files:
pkgsrc/mk/compiler: gcc.mk
Log Message:
Let GCC 4.4 handle requests for GCC 4.[0-4] to ensure we are consistent in
using the closest match for each request, as well as fixing platforms where
GCC 6 does not yet build or is unsupported.
diffstat:
mk/compiler/gcc.mk | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (24 lines):
diff -r febff3de5515 -r 49650b30b067 mk/compiler/gcc.mk
--- a/mk/compiler/gcc.mk Sun Apr 16 14:55:01 2017 +0000
+++ b/mk/compiler/gcc.mk Sun Apr 16 14:56:21 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: gcc.mk,v 1.174 2016/12/29 23:16:26 maya Exp $
+# $NetBSD: gcc.mk,v 1.174.2.1 2017/04/16 14:56:21 bsiegert Exp $
#
# This is the compiler definition for the GNU Compiler Collection.
#
@@ -120,11 +120,11 @@
# _GCC34_PATTERNS matches N s.t. 3.4 <= N < 4.
_GCC34_PATTERNS= 3.[4-9] 3.[4-9].* 3.[1-9][0-9]*
-# _GCC44_PATTERNS matches N s.t. 4.4 <= N < 4.5.
-_GCC44_PATTERNS= 4.4 4.4.*
+# _GCC44_PATTERNS matches N s.t. 4.0 <= N < 4.5.
+_GCC44_PATTERNS= 4.[0-4] 4.[0-4].*
# _GCC48_PATTERNS matches N s.t. 4.5 <= N < 4.9.
-_GCC48_PATTERNS= 4.[5678] 4.[5678].*
+_GCC48_PATTERNS= 4.[5-8] 4.[5-8].*
# _GCC49_PATTERNS matches N s.t. 4.9 <= N < 4.10.
_GCC49_PATTERNS= 4.9 4.9.*
Home |
Main Index |
Thread Index |
Old Index