diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-12-29 13:55:44 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-12-29 13:55:44 +0000 |
commit | 3a40407c06a470f5b15a4df310ab135233ac6109 (patch) | |
tree | 5835d1a4d987f81411c4fe9cf3153467aea597f5 /libc/misc | |
parent | 30f06faa24eb3d6da34c80f5632a7f01aee900e0 (diff) |
- expand SUSv3_LEGACY
- SUSv4_LEGACY part #1 (non-networking)
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/ctype/Makefile.in | 8 |
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) |