I update the eglibc package in my build tree to version 2.13, patch attached. Also made a litte modification to the eglibc.conf script to allow the libc customization via a target specific configuration file. See eglibc_option-groups.config.sample for details.

All patches are also rebased against 2.13.

Sure the eglibc32 compatibility library needs also to be aligned but I'm unable to test a 64 bit target at this time.

To every one... Happy new year!!

--
TeeBX VoIP communication platform (coming soon)
http://code.google.com/p/teebx/
-----------------------------------------------
Lightweight++ Business Friendly++ Open++
diff -ruN package/base/eglibc-t2-trunk-r41211//eglibc-2.10.1-fixes.patch 
package/base/eglibc//eglibc-2.10.1-fixes.patch
--- package/base/eglibc-t2-trunk-r41211//eglibc-2.10.1-fixes.patch      
2010-01-30 21:05:39.000000000 +0000
+++ package/base/eglibc//eglibc-2.10.1-fixes.patch      1970-01-01 
00:00:00.000000000 +0000
@@ -1,67 +0,0 @@
-# --- T2-COPYRIGHT-NOTE-BEGIN ---
-# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
-# 
-# T2 SDE: package/.../eglibc/eglibc-2.10.1-fixes.patch
-# Copyright (C) 2009 The T2 SDE Project
-# 
-# More information can be found in the files COPYING and README.
-# 
-# This patch file is dual-licensed. It is available under the license the
-# patched project is licensed under, as long as it is an OpenSource license
-# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
-# of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or (at your option) any later
-# version.
-# --- T2-COPYRIGHT-NOTE-END ---
-
-Submitted By: Jim Gifford (jim at cross-lfs dot org)
-Date: 07-27-2009
-Initial Package Version: 2.10.1
-Origin: Upstream
-Upstream Status: Applied
-Description: These are fixes eglibc-2.10.1, and should be
-             rechecked periodically.
-
-diff -Naur libc.orig/elf/ldd.bash.in libc/elf/ldd.bash.in
---- libc.orig/elf/ldd.bash.in  2009-02-13 18:31:14.000000000 +0000
-+++ libc/elf/ldd.bash.in       2009-06-07 23:26:18.000000000 +0000
-@@ -1,4 +1,4 @@
--#! @BASH@
-+#! /bin/bash
- # Copyright (C) 1996-2008, 2009 Free Software Foundation, Inc.
- # This file is part of the GNU C Library.
- 
-diff -Naur libc.orig/sunrpc/Makefile libc/sunrpc/Makefile
---- libc.orig/sunrpc/Makefile  2008-04-25 11:12:05.000000000 +0000
-+++ libc/sunrpc/Makefile       2009-06-07 23:26:18.000000000 +0000
-@@ -144,11 +144,11 @@
-       $(+link)
- 
- $(addprefix $(objpfx)cross-,$(rpcgen-objs)): $(objpfx)cross-%.o: %.c
--      gcc $< -c -D_RPC_THREAD_SAFE_ -D_CROSS_RPCGEN_ \
-+      $(BUILD_CC) $< -c -D_RPC_THREAD_SAFE_ -D_CROSS_RPCGEN_ \
-               $(OUTPUT_OPTION) $(compile-mkdep-flags)
- 
- $(objpfx)cross-rpcgen: $(addprefix $(objpfx)cross-,$(rpcgen-objs))
--      gcc $^ -o $@
-+      $(BUILD_CC) $^ -o $@
- 
- # This makes sure -DNOT_IN_libc is passed for all these modules.
- cpp-srcs-left := $(rpcgen-objs:.o=.c)
-diff -Naur libc.orig/timezone/Makefile libc/timezone/Makefile
---- libc.orig/timezone/Makefile        2009-03-03 13:14:09.000000000 +0000
-+++ libc/timezone/Makefile     2009-06-07 23:26:18.000000000 +0000
-@@ -181,11 +181,11 @@
- $(objpfx)zic: $(addprefix $(objpfx), $(zic-objs))
- 
- $(addprefix $(objpfx)cross-,$(zic-objs)): $(objpfx)cross-%.o: %.c
--      gcc $< -c $(OUTPUT_OPTION) $(CFLAGS-$*.c) $(CPPFLAGS-$*) \
-+      $(BUILD_CC) $< -c $(OUTPUT_OPTION) $(CFLAGS-$*.c) $(CPPFLAGS-$*) \
-               -DCROSS_ZIC $(compile-mkdep-flags)
- 
- $(objpfx)cross-zic: $(addprefix $(objpfx)cross-,$(zic-objs))
--      gcc $(addprefix $(objpfx)cross-,$(zic-objs)) -o $@
-+      $(BUILD_CC) $(addprefix $(objpfx)cross-,$(zic-objs)) -o $@
- 
- tz-cflags = -DTZDIR='"$(zonedir)"' \
-           -DTZDEFAULT='"$(localtime-file)"' \
diff -ruN package/base/eglibc-t2-trunk-r41211//eglibc-2.13-fixes.patch 
package/base/eglibc//eglibc-2.13-fixes.patch
--- package/base/eglibc-t2-trunk-r41211//eglibc-2.13-fixes.patch        
1970-01-01 00:00:00.000000000 +0000
+++ package/base/eglibc//eglibc-2.13-fixes.patch        2012-12-25 
22:11:53.000000000 +0000
@@ -0,0 +1,67 @@
+# --- T2-COPYRIGHT-NOTE-BEGIN ---
+# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
+# 
+# T2 SDE: package/.../eglibc/eglibc-2.10.1-fixes.patch
+# Copyright (C) 2009 - 2012 The T2 SDE Project
+# 
+# More information can be found in the files COPYING and README.
+# 
+# This patch file is dual-licensed. It is available under the license the
+# patched project is licensed under, as long as it is an OpenSource license
+# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
+# of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+# --- T2-COPYRIGHT-NOTE-END ---
+
+Submitted By: Jim Gifford (jim at cross-lfs dot org)
+Date: 07-27-2009
+Initial Package Version: 2.10.1
+Origin: Upstream
+Upstream Status: Applied
+Description: These are fixes eglibc-2.10.1, and should be
+             rechecked periodically.
+
+--- libc/elf/ldd.bash.in.orig  2000-01-01 00:00:00.000000000 +0000
++++ libc/elf/ldd.bash.in       2012-12-24 21:23:06.596205363 +0000
+@@ -1,4 +1,4 @@
+-#! @BASH@
++#! /bin/bash
+ # Copyright (C) 1996-2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+ # This file is part of the GNU C Library.
+ 
+
+--- libc/sunrpc/Makefile.orig  2012-12-24 21:26:56.080000211 +0000
++++ libc/sunrpc/Makefile       2012-12-24 21:23:06.596205363 +0000
+@@ -144,11 +144,11 @@
+       $(+link)
+ 
+ $(addprefix $(objpfx)cross-,$(rpcgen-objs)): $(objpfx)cross-%.o: %.c
+-      gcc $< -c -D_RPC_THREAD_SAFE_ -D_CROSS_RPCGEN_ \
++      $(BUILD_CC) $< -c -D_RPC_THREAD_SAFE_ -D_CROSS_RPCGEN_ \
+               $(OUTPUT_OPTION) $(compile-mkdep-flags)
+ 
+ $(objpfx)cross-rpcgen: $(addprefix $(objpfx)cross-,$(rpcgen-objs))
+-      gcc $^ -o $@
++      $(BUILD_CC) $^ -o $@
+ 
+ # This makes sure -DNOT_IN_libc is passed for all these modules.
+ cpp-srcs-left := $(rpcgen-objs:.o=.c)
+
+--- libc/timezone/Makefile.orig        2000-01-01 00:00:00.000000000 +0000
++++ libc/timezone/Makefile     2012-12-24 21:23:06.596205363 +0000
+@@ -181,11 +181,11 @@
+ $(objpfx)zic: $(addprefix $(objpfx), $(zic-objs))
+ 
+ $(addprefix $(objpfx)cross-,$(zic-objs)): $(objpfx)cross-%.o: %.c
+-      gcc $< -c $(OUTPUT_OPTION) $(CFLAGS-$*.c) $(CPPFLAGS-$*) \
++      $(BUILD_CC) $< -c $(OUTPUT_OPTION) $(CFLAGS-$*.c) $(CPPFLAGS-$*) \
+               -DCROSS_ZIC $(compile-mkdep-flags)
+ 
+ $(objpfx)cross-zic: $(addprefix $(objpfx)cross-,$(zic-objs))
+-      gcc $(addprefix $(objpfx)cross-,$(zic-objs)) -o $@
++      $(BUILD_CC) $(addprefix $(objpfx)cross-,$(zic-objs)) -o $@
+ 
+ tz-cflags = -DTZDIR='"$(zonedir)"' \
+           -DTZDEFAULT='"$(localtime-file)"' \
+
diff -ruN package/base/eglibc-t2-trunk-r41211//eglibc.conf 
package/base/eglibc//eglibc.conf
--- package/base/eglibc-t2-trunk-r41211//eglibc.conf    2012-12-28 
10:55:46.000000000 +0000
+++ package/base/eglibc//eglibc.conf    2012-12-29 18:44:19.000000000 +0000
@@ -84,7 +84,7 @@
 var_append makeopt " " "slibdir=/\$slibdir"
 var_append makeinstopt " " "slibdir=/\$slibdir install_root=\$root"
 
-glibc_prepatch() {
+eglibc_prepatch() {
        mkdir -p $root$includedir/{gnu,bits}
 
        if [ $pkg == eglibc ]; then
@@ -100,7 +100,13 @@
        fi
 }
 
-glibc_postmake()
+eglibc_preconf() {
+       if [ -f "$base/target/$target/eglibc_option-groups.config" ] ; then
+               cp $base/target/$target/eglibc_option-groups.config 
$builddir/eglibc-$ver/libc/objdir/option-groups.config
+       fi
+}
+
+eglibc_postmake()
 {
        if atstage toolchain; then
                cp -v ../include/features.h $root$includedir
@@ -192,5 +198,6 @@
 
 [[ $libdir = *lib64 ]] && slibdir=lib64 || slibdir=lib
 
-hook_add prepatch 3 "glibc_prepatch"
-hook_add postmake 5 "glibc_postmake"
+hook_add prepatch 3 "eglibc_prepatch"
+hook_add preconf 5 "eglibc_preconf"
+hook_add postmake 5 "eglibc_postmake"
diff -ruN package/base/eglibc-t2-trunk-r41211//eglibc.desc 
package/base/eglibc//eglibc.desc
--- package/base/eglibc-t2-trunk-r41211//eglibc.desc    2009-11-11 
20:41:17.000000000 +0000
+++ package/base/eglibc//eglibc.desc    2012-12-29 01:01:24.000000000 +0000
@@ -39,7 +39,7 @@
 
 [L] GPL
 [S] Stable
-[V] 2_10-r9124
+[V] 2_13
 [P] O 01---5---9 101.600
 
-[D] X eglibc-2_10-r9124.tar.bz2 svn://svn.eglibc.org/branches/eglibc-2_10 
eglibc-2_10 -r 9124
+[D] X eglibc-2_13-r15871.tar.bz2 svn://svn.eglibc.org/branches/eglibc-2_13 
eglibc-2_13 -r 15871
diff -ruN 
package/base/eglibc-t2-trunk-r41211//eglibc_option-groups.config.sample 
package/base/eglibc//eglibc_option-groups.config.sample
--- package/base/eglibc-t2-trunk-r41211//eglibc_option-groups.config.sample     
1970-01-01 00:00:00.000000000 +0000
+++ package/base/eglibc//eglibc_option-groups.config.sample     2012-12-29 
18:13:51.000000000 +0000
@@ -0,0 +1,49 @@
+# This file sets default custom values for the eglibc option group variables.
+# See option-groups.def in the libc source dir for a description
+# of each option group.
+#
+# This file need only refer to those options whose default settings
+# are to be changed.
+# Note that all options are listed here only for reference.
+#
+# Put this file file into the target directory then rename it to
+# eglibc_option-groups.config to customize the eglibc build.
+#
+OPTION_EGLIBC_ADVANCED_INET6 = y
+OPTION_EGLIBC_BACKTRACE = y
+OPTION_EGLIBC_BIG_MACROS = y
+OPTION_EGLIBC_BSD = y
+OPTION_EGLIBC_CXX_TESTS = y
+OPTION_EGLIBC_CATGETS = y
+OPTION_EGLIBC_CHARSETS = n
+OPTION_EGLIBC_CRYPT = y
+OPTION_EGLIBC_CRYPT_UFC = y
+OPTION_EGLIBC_DB_ALIASES = n
+OPTION_EGLIBC_ENVZ = y
+OPTION_EGLIBC_FCVT = y
+OPTION_EGLIBC_FMTMSG = y
+OPTION_EGLIBC_FSTAB = y
+OPTION_EGLIBC_FTRAVERSE = y
+OPTION_EGLIBC_GETLOGIN = y
+OPTION_EGLIBC_IDN = y
+OPTION_EGLIBC_INET = y
+OPTION_EGLIBC_INET_ANL = y
+OPTION_EGLIBC_LIBM = y
+OPTION_EGLIBC_LIBM_BIG = n
+OPTION_EGLIBC_LOCALES = n
+OPTION_EGLIBC_LOCALE_CODE = y
+OPTION_EGLIBC_MEMUSAGE = y
+OPTION_EGLIBC_NIS = y
+OPTION_EGLIBC_NSSWITCH = y
+OPTION_EGLIBC_RCMD = y
+OPTION_EGLIBC_RTLD_DEBUG = y
+OPTION_EGLIBC_SPAWN = y
+OPTION_EGLIBC_STREAMS = y
+OPTION_EGLIBC_SUNRPC = y
+OPTION_EGLIBC_UTMP = y
+OPTION_EGLIBC_UTMPX = y
+OPTION_EGLIBC_WORDEXP = y
+OPTION_POSIX_C_LANG_WIDE_CHAR = y
+OPTION_POSIX_REGEXP = y
+OPTION_POSIX_REGEXP_GLIBC = y
+OPTION_POSIX_WIDE_CHAR_DEVICE_IO = y
diff -ruN package/base/eglibc-t2-trunk-r41211//fl_wrapper_testfix.patch 
package/base/eglibc//fl_wrapper_testfix.patch
--- package/base/eglibc-t2-trunk-r41211//fl_wrapper_testfix.patch       
2010-01-30 21:05:39.000000000 +0000
+++ package/base/eglibc//fl_wrapper_testfix.patch       2012-12-25 
19:42:20.000000000 +0000
@@ -2,7 +2,7 @@
 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
 # 
 # T2 SDE: package/.../eglibc/fl_wrapper_testfix.patch
-# Copyright (C) 2004 - 2007 The T2 SDE Project
+# Copyright (C) 2004 - 2012 The T2 SDE Project
 # 
 # More information can be found in the files COPYING and README.
 # 
@@ -14,8 +14,8 @@
 # version.
 # --- T2-COPYRIGHT-NOTE-END ---
 
---- ./scripts/test-installation.pl.gv  Fri Nov 15 13:20:48 2002
-+++ ./scripts/test-installation.pl     Fri Nov 15 13:21:07 2002
+--- libc/scripts/test-installation.pl.orig     2000-01-01 00:00:00.000000000 
+0000
++++ libc/scripts/test-installation.pl  2012-12-24 21:23:06.604011225 +0000
 @@ -156,6 +156,7 @@
  open LDD, "ldd /tmp/test-prg$$ |"
    or die ("Couldn't execute ldd");
@@ -24,3 +24,4 @@
    if (/^\s*lib/) {
      ($name, $version1, $version2) =
        /^\s*lib(\w*)\.so\.([0-9\.]*)\s*=>.*\.so\.([0-9\.]*)/;
+
diff -ruN package/base/eglibc-t2-trunk-r41211//gcc_eh.patch.cross 
package/base/eglibc//gcc_eh.patch.cross
--- package/base/eglibc-t2-trunk-r41211//gcc_eh.patch.cross     2010-01-30 
21:05:39.000000000 +0000
+++ package/base/eglibc//gcc_eh.patch.cross     2012-12-25 19:42:43.000000000 
+0000
@@ -2,7 +2,7 @@
 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
 # 
 # T2 SDE: package/.../eglibc/gcc_eh.patch.cross
-# Copyright (C) 2004 - 2007 The T2 SDE Project
+# Copyright (C) 2004 - 2012 The T2 SDE Project
 # 
 # More information can be found in the files COPYING and README.
 # 
@@ -20,9 +20,9 @@
 
   - Rene Rebe <[email protected]>
 
---- libc/Makeconfig.orig       2004-12-31 20:33:44.918457704 +0100
-+++ libc/Makeconfig    2004-12-31 20:55:54.452337832 +0100
-@@ -514,12 +514,12 @@
+--- libc/Makeconfig.orig       2000-01-01 00:00:00.000000000 +0000
++++ libc/Makeconfig    2012-12-24 21:23:06.620004401 +0000
+@@ -547,12 +547,12 @@
    libunwind = -lunwind
  endif
  ifneq ($(have-as-needed),yes)
@@ -37,3 +37,4 @@
  libc.so-gnulib := -lgcc
  endif
  ifeq ($(elf),yes)
+
diff -ruN package/base/eglibc-t2-trunk-r41211//ldconfig-glob.patch 
package/base/eglibc//ldconfig-glob.patch
--- package/base/eglibc-t2-trunk-r41211//ldconfig-glob.patch    2010-01-30 
21:05:39.000000000 +0000
+++ package/base/eglibc//ldconfig-glob.patch    2012-12-25 19:43:11.000000000 
+0000
@@ -2,7 +2,7 @@
 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
 # 
 # T2 SDE: package/.../eglibc/ldconfig-glob.patch
-# Copyright (C) 2004 - 2007 The T2 SDE Project
+# Copyright (C) 2004 - 2012 The T2 SDE Project
 # 
 # More information can be found in the files COPYING and README.
 # 
@@ -19,9 +19,9 @@
 
   - Valentin Ziegler <[email protected]>
 
---- ./elf/ldconfig.c.orig      2004-09-14 13:28:34.000000000 +0200
-+++ ./elf/ldconfig.c   2004-09-14 14:19:07.000000000 +0200
-@@ -359,21 +359,57 @@
+--- libc/elf/ldconfig.c.orig   2000-01-01 00:00:00.000000000 +0000
++++ libc/elf/ldconfig.c        2012-12-24 21:23:06.608203236 +0000
+@@ -400,21 +400,57 @@
    if (opt_chroot)
      path = chroot_canon (opt_chroot, path);
  
diff -ruN package/base/eglibc-t2-trunk-r41211//no-binutils-powerpc.patch.cross 
package/base/eglibc//no-binutils-powerpc.patch.cross
--- package/base/eglibc-t2-trunk-r41211//no-binutils-powerpc.patch.cross        
2010-01-30 21:05:39.000000000 +0000
+++ package/base/eglibc//no-binutils-powerpc.patch.cross        2012-12-25 
19:43:38.000000000 +0000
@@ -2,7 +2,7 @@
 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
 # 
 # T2 SDE: package/.../eglibc/no-binutils-powerpc.patch.cross
-# Copyright (C) 2004 - 2007 The T2 SDE Project
+# Copyright (C) 2004 - 2012 The T2 SDE Project
 # 
 # More information can be found in the files COPYING and README.
 # 
@@ -19,14 +19,14 @@
 
   - Rene Rebe <[email protected]>
 
---- libc/sysdeps/powerpc/configure.orig        2004-10-29 16:13:54.446333079 
+0200
-+++ libc/sysdeps/powerpc/configure     2004-10-29 16:18:34.546713844 +0200
+--- libc/sysdeps/powerpc/configure.orig        2000-01-01 00:00:00.000000000 
+0000
++++ libc/sysdeps/powerpc/configure     2012-12-24 21:23:06.624193547 +0000
 @@ -25,7 +25,7 @@
  fi
- echo "$as_me:$LINENO: result: $libc_cv_ppc_machine" >&5
- echo "${ECHO_T}$libc_cv_ppc_machine" >&6
+ { $as_echo "$as_me:$LINENO: result: $libc_cv_ppc_machine" >&5
+ $as_echo "$libc_cv_ppc_machine" >&6; }
 -if test $libc_cv_ppc_machine != yes; then
 +if false ; then
-   { { echo "$as_me:$LINENO: error:
+   { { $as_echo "$as_me:$LINENO: error:
  *** A binutils version which can handle
  ***    .machine \"altivec\"
diff -ruN package/base/eglibc-t2-trunk-r41211//ppc-header.patch.cross0 
package/base/eglibc//ppc-header.patch.cross0
--- package/base/eglibc-t2-trunk-r41211//ppc-header.patch.cross0        
2010-01-30 21:05:39.000000000 +0000
+++ package/base/eglibc//ppc-header.patch.cross0        2012-12-25 
22:48:47.000000000 +0000
@@ -18,34 +18,34 @@
 
   - Rene Rebe <[email protected]>
 
---- glibc-20060605/sysdeps/unix/sysv/linux/powerpc/configure.vanilla   
2006-09-28 16:00:39.000000000 +0200
-+++ glibc-20060605/sysdeps/unix/sysv/linux/powerpc/configure   2006-09-28 
16:00:50.000000000 +0200
-@@ -55,7 +55,7 @@
-   echo "$as_me: failed program was:" >&5
+--- libc/sysdeps/unix/sysv/linux/powerpc/configure.orig        2000-01-01 
00:00:00.000000000 +0000
++++ libc/sysdeps/unix/sysv/linux/powerpc/configure     2012-12-26 
00:36:37.852844114 +0000
+@@ -51,7 +51,7 @@
+   $as_echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
--libc_cv_mlong_double_128ibm=no
-+libc_cv_mlong_double_128ibm=yes
+-      libc_cv_mlong_double_128ibm=no
++      libc_cv_mlong_double_128ibm=yes
  fi
- rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
- CFLAGS="$save_CFLAGS"
-@@ -117,7 +117,7 @@
-   echo "$as_me: failed program was:" >&5
+ 
+ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+@@ -110,7 +110,7 @@
+   $as_echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
--libc_cv_mabi_ibmlongdouble=no
-+libc_cv_mabi_ibmlongdouble=yes
+-      libc_cv_mabi_ibmlongdouble=no
++      libc_cv_mabi_ibmlongdouble=yes
  fi
- rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
-   CFLAGS="$save_CFLAGS"
---- glibc-20060605/sysdeps/ieee754/ldbl-opt/configure.vanilla  2006-09-28 
16:09:06.000000000 +0200
-+++ glibc-20060605/sysdeps/ieee754/ldbl-opt/configure  2006-09-28 
16:09:14.000000000 +0200
-@@ -55,7 +55,7 @@
-   echo "$as_me: failed program was:" >&5
+ 
+ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+--- libc/sysdeps/ieee754/ldbl-opt/configure.orig       2000-01-01 
00:00:00.000000000 +0000
++++ libc/sysdeps/ieee754/ldbl-opt/configure    2012-12-26 00:39:50.300079337 
+0000
+@@ -51,7 +51,7 @@
+   $as_echo "$as_me: failed program was:" >&5
  sed 's/^/| /' conftest.$ac_ext >&5
  
--libc_cv_mlong_double_128=no
-+libc_cv_mlong_double_128=yes
+-      libc_cv_mlong_double_128=no
++      libc_cv_mlong_double_128=yes
  fi
- rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
- CFLAGS="$save_CFLAGS"
+ 
+ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
diff -ruN package/base/eglibc-t2-trunk-r41211//x86-i686.patch 
package/base/eglibc//x86-i686.patch
--- package/base/eglibc-t2-trunk-r41211//x86-i686.patch 2010-01-30 
21:05:39.000000000 +0000
+++ package/base/eglibc//x86-i686.patch 2012-12-25 19:44:49.000000000 +0000
@@ -2,7 +2,7 @@
 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
 # 
 # T2 SDE: package/.../eglibc/x86-i686.patch
-# Copyright (C) 2004 - 2007 The T2 SDE Project
+# Copyright (C) 2004 - 2012 The T2 SDE Project
 # 
 # More information can be found in the files COPYING and README.
 # 
@@ -19,16 +19,17 @@
 
   - Rene Rebe <[email protected]>
 
---- glibc-20050919/csu/defs.awk.vanilla        2005-11-03 13:16:56.000000000 
+0100
-+++ glibc-20050919/csu/defs.awk        2005-11-03 13:17:10.000000000 +0100
+--- libc/csu/defs.awk.orig     2000-01-01 00:00:00.000000000 +0000
++++ libc/csu/defs.awk  2012-12-24 21:23:06.612034400 +0000
 @@ -24,4 +24,5 @@
  
      print "#include <libc-symbols.h>";
      print "weak_extern (__gmon_start__)";
 +    print "#undef __i686";
  }
---- glibc-20050919/sysdeps/i386/bp-asm.h.vanilla       2005-11-03 
14:27:22.000000000 +0100
-+++ glibc-20050919/sysdeps/i386/bp-asm.h       2005-11-03 14:27:39.000000000 
+0100
+
+--- libc/sysdeps/i386/bp-asm.h.orig    2000-01-01 00:00:00.000000000 +0000
++++ libc/sysdeps/i386/bp-asm.h 2012-12-24 21:23:06.612034400 +0000
 @@ -22,6 +22,8 @@
  #ifndef _bp_asm_h_
  # define _bp_asm_h_ 1
----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[email protected] with a subject of: unsubscribe t2

Reply via email to