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 3 of 3] config/eglibc: normalize eglibc hidden version names


 config/libc/eglibc.in |  40 ++++++++++++++++++++--------------------
 1 files changed, 20 insertions(+), 20 deletions(-)


# HG changeset patch
# User Bryan Hundven <bryanhundven@gmail.com>
# Date 1293823467 28800
# Node ID 90fc5c382d6356045419b5f4d1cf348a70423d5a
# Parent  3dbf478aa121004ad748315b3176f6cb49ed2ed4
config/eglibc: normalize eglibc hidden version names

In the previous patches to glibc and uclibc, we standardized on hidden
version names:

LIBC_<LIBC NAME>_V_<VERSION>

This patch updates EGLIBC to be the same for consistency to:

LIBC_EGLIBC_V_<VERSION>

Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>

diff -r 3dbf478aa121 -r 90fc5c382d63 config/libc/eglibc.in
--- a/config/libc/eglibc.in	Fri Dec 31 11:22:10 2010 -0800
+++ b/config/libc/eglibc.in	Fri Dec 31 11:24:27 2010 -0800
@@ -18,45 +18,45 @@
 # Don't remove next line
 # CT_INSERT_VERSION_BELOW
 
-config EGLIBC_V_2_12
+config LIBC_EGLIBC_V_2_12
     bool
     prompt "2_12"
     depends on EXPERIMENTAL
 
-config EGLIBC_V_2_11
+config LIBC_EGLIBC_V_2_11
     bool
     prompt "2_11"
     depends on EXPERIMENTAL
 
-config EGLIBC_V_2_10
+config LIBC_EGLIBC_V_2_10
     bool
     prompt "2_10"
 
-config EGLIBC_V_2_9
+config LIBC_EGLIBC_V_2_9
     bool
     prompt "2_9"
 
-config EGLIBC_V_2_8
+config LIBC_EGLIBC_V_2_8
     bool
     prompt "2_8 (OBSOLETE)"
     depends on OBSOLETE
 
-config EGLIBC_V_2_7
+config LIBC_EGLIBC_V_2_7
     bool
     prompt "2_7 (OBSOLETE)"
     depends on OBSOLETE
 
-config EGLIBC_V_2_6
+config LIBC_EGLIBC_V_2_6
     bool
     prompt "2_6 (OBSOLETE)"
     depends on OBSOLETE
 
-config EGLIBC_V_2_5
+config LIBC_EGLIBC_V_2_5
     bool
     prompt "2_5 (OBSOLETE)"
     depends on OBSOLETE
 
-config EGLIBC_V_TRUNK
+config LIBC_EGLIBC_V_TRUNK
     bool
     prompt "'trunk'"
     help
@@ -68,15 +68,15 @@
     string
 # Don't remove next line
 # CT_INSERT_VERSION_STRING_BELOW
-    default "2_12" if EGLIBC_V_2_12
-    default "2_11" if EGLIBC_V_2_11
-    default "2_10" if EGLIBC_V_2_10
-    default "2_9" if EGLIBC_V_2_9
-    default "2_8" if EGLIBC_V_2_8
-    default "2_7" if EGLIBC_V_2_7
-    default "2_6" if EGLIBC_V_2_6
-    default "2_5" if EGLIBC_V_2_5
-    default "trunk" if EGLIBC_V_TRUNK
+    default "2_12" if LIBC_EGLIBC_V_2_12
+    default "2_11" if LIBC_EGLIBC_V_2_11
+    default "2_10" if LIBC_EGLIBC_V_2_10
+    default "2_9" if LIBC_EGLIBC_V_2_9
+    default "2_8" if LIBC_EGLIBC_V_2_8
+    default "2_7" if LIBC_EGLIBC_V_2_7
+    default "2_6" if LIBC_EGLIBC_V_2_6
+    default "2_5" if LIBC_EGLIBC_V_2_5
+    default "trunk" if LIBC_EGLIBC_V_TRUNK
 
 config EGLIBC_REVISION
     string
@@ -97,8 +97,8 @@
 config EGLIBC_CHECKOUT
     bool
     prompt "checkout instead of export"
-    default y if EGLIBC_V_TRUNK
-    default n if ! EGLIBC_V_TRUNK
+    default y if LIBC_EGLIBC_V_TRUNK
+    default n if ! LIBC_EGLIBC_V_TRUNK
     help
       By default, the eglibc download will be an export of the subversion
       repository. If you say 'y' here, then the repository will instead be

--
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]