diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-28 16:53:28 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-28 16:53:28 +0000 |
commit | 86ee08b08e6fa344bc22b28a7fe1cb0f810d7fec (patch) | |
tree | e0faf5b8137ee877f98b7288227bdaf9b2c2ff9d /libc/misc/regex/Makefile.in | |
parent | c4869de2c791985539b642ec22606a3cebc03778 (diff) |
Add new regex code from glibc, this is almost double size of the earlier one, but passes sed tests (and thus allows making sed shrink from 91k to 42k
Diffstat (limited to 'libc/misc/regex/Makefile.in')
-rw-r--r-- | libc/misc/regex/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/misc/regex/Makefile.in b/libc/misc/regex/Makefile.in index 5c86e874d..9cd403add 100644 --- a/libc/misc/regex/Makefile.in +++ b/libc/misc/regex/Makefile.in @@ -6,7 +6,11 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # +ifeq ($(UCLIBC_HAS_REGEX_OLD),y) CSRC:=regex_old.c +else +CSRC:=regex.c +endif MISC_REGEX_DIR:=$(top_srcdir)libc/misc/regex MISC_REGEX_OUT:=$(top_builddir)libc/misc/regex |