aboutsummaryrefslogtreecommitdiff
path: root/win32/Kbuild
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2021-08-09 14:58:37 +0100
committerRon Yorston <rmy@pobox.com>2021-08-09 14:58:37 +0100
commit56e1d04ae71a05586fa3414aabdef0de720d0720 (patch)
treee06c0b37c22dd811e48b7a9886a4de2bf04b129f /win32/Kbuild
parentdd10dfda5834b0e67ebab0425d0a48fbfc939d7f (diff)
downloadbusybox-w32-56e1d04ae71a05586fa3414aabdef0de720d0720.tar.gz
busybox-w32-56e1d04ae71a05586fa3414aabdef0de720d0720.tar.bz2
busybox-w32-56e1d04ae71a05586fa3414aabdef0de720d0720.zip
win32: code shrink character class detection
Add a routine to detect the names of character classes. Use it in fnmatch(3) and regcomp(3), replacing local code in the former. Saves 216 bytes.
Diffstat (limited to 'win32/Kbuild')
-rw-r--r--win32/Kbuild1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/Kbuild b/win32/Kbuild
index cabd70849..6ab0dc077 100644
--- a/win32/Kbuild
+++ b/win32/Kbuild
@@ -13,6 +13,7 @@ lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o
13lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o 13lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o
14lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o 14lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o
15lib-$(CONFIG_PLATFORM_MINGW32) += process.o 15lib-$(CONFIG_PLATFORM_MINGW32) += process.o
16lib-$(CONFIG_PLATFORM_MINGW32) += match_class.o
16lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o 17lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o
17lib-$(CONFIG_PLATFORM_MINGW32) += net.o 18lib-$(CONFIG_PLATFORM_MINGW32) += net.o
18lib-$(CONFIG_PLATFORM_MINGW32) += poll.o 19lib-$(CONFIG_PLATFORM_MINGW32) += poll.o