This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 1 of 3] config/glibc: normalize glibc hidden version names


 config/libc/glibc.in |  36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)


# HG changeset patch
# User Bryan Hundven <bryanhundven@gmail.com>
# Date 1293823322 28800
# Node ID dc1cce388f9634a7c5bf06f1f912092ca9ad2e83
# Parent  cb0f625b3f9f704140aaeed024baac05e6b27df0
config/glibc: normalize glibc hidden version names

Hidden version names for glibc conflicted:

LIBC_GLIBC_V_2.10.1
LIBC_V_2.10

name them constantly as:
LIBC_GLIBC_V_<version>

Reported-by: Esben Haabendal <eha@doredevelopment.dk>
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>

diff -r cb0f625b3f9f -r dc1cce388f96 config/libc/glibc.in
--- a/config/libc/glibc.in	Wed Dec 29 19:41:17 2010 +0100
+++ b/config/libc/glibc.in	Fri Dec 31 11:22:02 2010 -0800
@@ -62,46 +62,46 @@
     prompt "2.11 (EXPERIMENTAL)"
     depends on EXPERIMENTAL
 
-config LIBC_V_2_10_1
+config LIBC_GLIBC_V_2_10_1
     bool
     prompt "2.10.1 (EXPERIMENTAL)"
     depends on EXPERIMENTAL
     select LIBC_GLIBC_USE_PORTS
 
-config LIBC_V_2_9
+config LIBC_GLIBC_V_2_9
     bool
     prompt "2.9"
 
-config LIBC_V_2_8
+config LIBC_GLIBC_V_2_8
     bool
     prompt "2.8"
 
-config LIBC_V_2_7
+config LIBC_GLIBC_V_2_7
     bool
     prompt "2.7 (OBSOLETE)"
     depends on OBSOLETE
 
-config LIBC_V_2_6_1
+config LIBC_GLIBC_V_2_6_1
     bool
     prompt "2.6.1 (OBSOLETE)"
     depends on OBSOLETE
 
-config LIBC_V_2_6
+config LIBC_GLIBC_V_2_6
     bool
     prompt "2.6 (OBSOLETE)"
     depends on OBSOLETE
 
-config LIBC_V_2_5_1
+config LIBC_GLIBC_V_2_5_1
     bool
     prompt "2.5.1 (OBSOLETE)"
     depends on OBSOLETE
 
-config LIBC_V_2_5
+config LIBC_GLIBC_V_2_5
     bool
     prompt "2.5 (OBSOLETE)"
     depends on OBSOLETE
 
-config LIBC_V_2_3_6
+config LIBC_GLIBC_V_2_3_6
     bool
     prompt "2.3.6 (OBSOLETE)"
     depends on OBSOLETE
@@ -116,12 +116,12 @@
     default "2.12.1" if LIBC_GLIBC_V_2_12_1
     default "2.11.1" if LIBC_GLIBC_V_2_11_1
     default "2.11" if LIBC_GLIBC_V_2_11
-    default "2.10.1" if LIBC_V_2_10_1
-    default "2.9" if LIBC_V_2_9
-    default "2.8" if LIBC_V_2_8
-    default "2.7" if LIBC_V_2_7
-    default "2.6.1" if LIBC_V_2_6_1
-    default "2.6" if LIBC_V_2_6
-    default "2.5.1" if LIBC_V_2_5_1
-    default "2.5" if LIBC_V_2_5
-    default "2.3.6" if LIBC_V_2_3_6
+    default "2.10.1" if LIBC_GLIBC_V_2_10_1
+    default "2.9" if LIBC_GLIBC_V_2_9
+    default "2.8" if LIBC_GLIBC_V_2_8
+    default "2.7" if LIBC_GLIBC_V_2_7
+    default "2.6.1" if LIBC_GLIBC_V_2_6_1
+    default "2.6" if LIBC_GLIBC_V_2_6
+    default "2.5.1" if LIBC_GLIBC_V_2_5_1
+    default "2.5" if LIBC_GLIBC_V_2_5
+    default "2.3.6" if LIBC_GLIBC_V_2_3_6

--
For unsubscribe information see http://sourceware.org/lists.html#faq


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]