diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 02:04:07 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-10 18:50:03 +1000 |
commit | 909696f1394a67f38f678eb9cfb0d794173095fd (patch) | |
tree | b6aedcc4d0687a14eb63f77b34e3851e77677cba /win32/Kbuild | |
parent | c9aaf1cc94c9435736df9049c0ed9c961443c7b6 (diff) | |
download | busybox-w32-909696f1394a67f38f678eb9cfb0d794173095fd.tar.gz busybox-w32-909696f1394a67f38f678eb9cfb0d794173095fd.tar.bz2 busybox-w32-909696f1394a67f38f678eb9cfb0d794173095fd.zip |
win32: Import regex source
These were extracted from commit
e56b799d6ad8afba4168fffa7218d44c041a72d2
in Git repository. Changes from the original version:
> diff --git a/tmp/regex.c b/win32/regex.c
> index 87b33e4..2cca169 100644
> --- a/tmp/regex.c
> +++ b/win32/regex.c
> @@ -24,7 +24,9 @@
> #pragma alloca
> #endif
>
> +#ifndef _GNU_SOURCE
> #define _GNU_SOURCE
> +#endif
>
> /* We need this for `regex.h', and perhaps for the Emacs include files. */
> #include <sys/types.h>
Diffstat (limited to 'win32/Kbuild')
-rw-r--r-- | win32/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/Kbuild b/win32/Kbuild index 878330fc3..68a58ca77 100644 --- a/win32/Kbuild +++ b/win32/Kbuild | |||
@@ -8,3 +8,4 @@ lib-$(CONFIG_PLATFORM_MINGW32) += env.o | |||
8 | lib-$(CONFIG_PLATFORM_MINGW32) += fnmatch.o | 8 | lib-$(CONFIG_PLATFORM_MINGW32) += fnmatch.o |
9 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o | 9 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o |
10 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o | 10 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o |
11 | lib-$(CONFIG_PLATFORM_MINGW32) += regex.o | ||