[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[commits] r8445 - in /trunk/ports: ChangeLog.eglibc sysdeps/arm/eabi/Makefile
- To: commits@xxxxxxxxxx
- Subject: [commits] r8445 - in /trunk/ports: ChangeLog.eglibc sysdeps/arm/eabi/Makefile
- From: maxim@xxxxxxxxxx
- Date: Tue, 12 May 2009 14:41:09 -0000
Author: maxim
Date: Tue May 12 07:41:09 2009
New Revision: 8445
Log:
* sysdeps/arm/eabi/Makefile (aeabi_localeconv): Don't build without
EGLIBC_LOCAL_CODE option group.
Modified:
trunk/ports/ChangeLog.eglibc
trunk/ports/sysdeps/arm/eabi/Makefile
Modified: trunk/ports/ChangeLog.eglibc
==============================================================================
--- trunk/ports/ChangeLog.eglibc (original)
+++ trunk/ports/ChangeLog.eglibc Tue May 12 07:41:09 2009
@@ -1,3 +1,8 @@
+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: trunk/ports/sysdeps/arm/eabi/Makefile
==============================================================================
--- trunk/ports/sysdeps/arm/eabi/Makefile (original)
+++ trunk/ports/sysdeps/arm/eabi/Makefile Tue May 12 07:41:09 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)