summaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authormaxim <maxim@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2009-05-12 14:41:09 +0000
committermaxim <maxim@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2009-05-12 14:41:09 +0000
commit3241a5b9bd1f11679f5e0a3a2dfb0691c0de1392 (patch)
tree4d685512ec536ee0330604f7a35268d0b5209264 /ports
parentce2efcac791c4e5d6aabfdc3f15a1552e363a369 (diff)
downloadeglibc2-3241a5b9bd1f11679f5e0a3a2dfb0691c0de1392.tar.gz
* sysdeps/arm/eabi/Makefile (aeabi_localeconv): Don't build without
EGLIBC_LOCAL_CODE option group. git-svn-id: svn://svn.eglibc.org/trunk@8445 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'ports')
-rw-r--r--ports/ChangeLog.eglibc5
-rw-r--r--ports/sysdeps/arm/eabi/Makefile5
2 files changed, 9 insertions, 1 deletions
diff --git a/ports/ChangeLog.eglibc b/ports/ChangeLog.eglibc
index d7eef9c5d..fe9984a15 100644
--- a/ports/ChangeLog.eglibc
+++ b/ports/ChangeLog.eglibc
@@ -1,3 +1,8 @@
+2009-05-12 Maxim Kuvyrkov <maxim@codesourcery.com>
+
+ * sysdeps/arm/eabi/Makefile (aeabi_localeconv): Don't build without
+ EGLIBC_LOCAL_CODE option group.
+
2008-12-19 Joseph Myers <joseph@codesourcery.com>
* sysdeps/unix/sysv/linux/mips/mips64/n32/posix_fallocate64.c,
diff --git a/ports/sysdeps/arm/eabi/Makefile b/ports/sysdeps/arm/eabi/Makefile
index 0f92d7ad4..8409ae630 100644
--- a/ports/sysdeps/arm/eabi/Makefile
+++ b/ports/sysdeps/arm/eabi/Makefile
@@ -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)