[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r8446 - in /branches/eglibc-2_10/ports: ChangeLog.eglibc sysdeps/arm/eabi/Makefile
- To: commits@xxxxxxxxxx
- Subject: [commits] r8446 - in /branches/eglibc-2_10/ports: ChangeLog.eglibc sysdeps/arm/eabi/Makefile
- From: maxim@xxxxxxxxxx
- Date: Tue, 12 May 2009 16:51:55 -0000
Author: maxim
Date: Tue May 12 09:51:53 2009
New Revision: 8446
Log:
Backport:
2009-05-12 Maxim Kuvyrkov <maxim@xxxxxxxxxxxxxxxx>
* sysdeps/arm/eabi/Makefile (aeabi_localeconv): Don't build without
EGLIBC_LOCAL_CODE option group.
Modified:
branches/eglibc-2_10/ports/ChangeLog.eglibc
branches/eglibc-2_10/ports/sysdeps/arm/eabi/Makefile
Modified: branches/eglibc-2_10/ports/ChangeLog.eglibc
==============================================================================
--- branches/eglibc-2_10/ports/ChangeLog.eglibc (original)
+++ branches/eglibc-2_10/ports/ChangeLog.eglibc Tue May 12 09:51:53 2009
@@ -1,3 +1,11 @@
+2009-05-12 Maxim Kuvyrkov <maxim@xxxxxxxxxxxxxxxx>
+
+ Backport:
+
+ 2009-05-12 Maxim Kuvyrkov <maxim@xxxxxxxxxxxxxxxx>
+ * sysdeps/arm/eabi/Makefile (aeabi_localeconv): Don't build without
+ EGLIBC_LOCAL_CODE option group.
+
2008-12-19 Joseph Myers <joseph@xxxxxxxxxxxxxxxx>
* sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c,
Modified: branches/eglibc-2_10/ports/sysdeps/arm/eabi/Makefile
==============================================================================
--- branches/eglibc-2_10/ports/sysdeps/arm/eabi/Makefile (original)
+++ branches/eglibc-2_10/ports/sysdeps/arm/eabi/Makefile Tue May 12 09:51:53 2009
@@ -1,8 +1,11 @@
ifeq ($(subdir),csu)
aeabi_constants = aeabi_lcsts aeabi_sighandlers aeabi_math
-aeabi_routines = aeabi_assert aeabi_localeconv aeabi_errno_addr \
+aeabi_routines = aeabi_assert aeabi_errno_addr \
aeabi_mb_cur_max aeabi_atexit aeabi_memclr aeabi_memcpy \
aeabi_memmove aeabi_memset
+ifeq (y,$(OPTION_EGLIBC_LOCALE_CODE))
+aeabi_routines += aeabi_localeconv
+endif
sysdep_routines += $(aeabi_constants) $(aeabi_routines)
static-only-routines += $(aeabi_constants)