diff options
author | Ron Yorston <rmy@pobox.com> | 2018-03-22 14:58:29 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-03-22 15:11:41 +0000 |
commit | 6cff8357023adb4d5c9daa027522f883f3905f4c (patch) | |
tree | 50964ae864ec3325c2413facaa8efc3a3104f3a6 /win32/Kbuild | |
parent | be9b9ed64e658889229e18e3d089df27d8b724c3 (diff) | |
download | busybox-w32-6cff8357023adb4d5c9daa027522f883f3905f4c.tar.gz busybox-w32-6cff8357023adb4d5c9daa027522f883f3905f4c.tar.bz2 busybox-w32-6cff8357023adb4d5c9daa027522f883f3905f4c.zip |
win32: allow use of shell's PRNG for /dev/urandom
Allow either ISAAC or the shell's built-in pseudo-random number
generator to be used for /dev/urandom. The latter is smaller so
it's the default.
Diffstat (limited to 'win32/Kbuild')
-rw-r--r-- | win32/Kbuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/win32/Kbuild b/win32/Kbuild index 00950e0f7..f8c8fb5af 100644 --- a/win32/Kbuild +++ b/win32/Kbuild | |||
@@ -7,18 +7,19 @@ lib-y:= | |||
7 | lib-$(CONFIG_PLATFORM_MINGW32) += env.o | 7 | 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) += fsync.o | 9 | lib-$(CONFIG_PLATFORM_MINGW32) += fsync.o |
10 | lib-$(CONFIG_PLATFORM_MINGW32) += inet_pton.o | ||
10 | lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o | 11 | lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o |
11 | lib-$(CONFIG_PLATFORM_MINGW32) += isaac.o | 12 | lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o |
12 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o | 13 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o |
13 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o | 14 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o |
14 | lib-$(CONFIG_PLATFORM_MINGW32) += regex.o | 15 | lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o |
15 | lib-$(CONFIG_PLATFORM_MINGW32) += net.o | 16 | lib-$(CONFIG_PLATFORM_MINGW32) += net.o |
16 | lib-$(CONFIG_PLATFORM_MINGW32) += inet_pton.o | ||
17 | lib-$(CONFIG_PLATFORM_MINGW32) += poll.o | 17 | lib-$(CONFIG_PLATFORM_MINGW32) += poll.o |
18 | lib-$(CONFIG_PLATFORM_MINGW32) += select.o | ||
19 | lib-$(CONFIG_PLATFORM_MINGW32) += popen.o | 18 | lib-$(CONFIG_PLATFORM_MINGW32) += popen.o |
19 | lib-$(CONFIG_PLATFORM_MINGW32) += regex.o | ||
20 | lib-$(CONFIG_PLATFORM_MINGW32) += select.o | ||
21 | lib-$(CONFIG_FEATURE_PRNG_SHELL) += sh_random.o | ||
20 | lib-$(CONFIG_PLATFORM_MINGW32) += statfs.o | 22 | lib-$(CONFIG_PLATFORM_MINGW32) += statfs.o |
21 | lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o | ||
22 | lib-$(CONFIG_PLATFORM_MINGW32) += strptime.o | 23 | lib-$(CONFIG_PLATFORM_MINGW32) += strptime.o |
23 | lib-$(CONFIG_PLATFORM_MINGW32) += system.o | 24 | lib-$(CONFIG_PLATFORM_MINGW32) += system.o |
24 | lib-$(CONFIG_PLATFORM_MINGW32) += termios.o | 25 | lib-$(CONFIG_PLATFORM_MINGW32) += termios.o |