summaryrefslogtreecommitdiff
path: root/libc/misc/ctype/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/ctype/Makefile.in')
-rw-r--r--libc/misc/ctype/Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/libc/misc/ctype/Makefile.in b/libc/misc/ctype/Makefile.in
index 29b63f3d1..3f307f093 100644
--- a/libc/misc/ctype/Makefile.in
+++ b/libc/misc/ctype/Makefile.in
@@ -7,11 +7,13 @@
# multi source ctype.c
COM_SRC := \
- isalnum.c isalpha.c isascii.c iscntrl.c isdigit.c \
+ isalnum.c isalpha.c iscntrl.c isdigit.c \
isgraph.c islower.c isprint.c ispunct.c isspace.c \
- isupper.c isxdigit.c toascii.c tolower.c toupper.c \
+ isupper.c isxdigit.c tolower.c toupper.c \
isblank.c
-
+ifeq ($(UCLIBC_SUSV4_LEGACY),y)
+COM_SRC += isascii.c toascii.c
+endif
CSRC := $(COM_SRC)
ifeq ($(UCLIBC_HAS_CTYPE_TABLES),y)