aboutsummaryrefslogtreecommitdiff
path: root/win32/Kbuild
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-03-22 14:58:29 +0000
committerRon Yorston <rmy@pobox.com>2018-03-22 15:11:41 +0000
commit6cff8357023adb4d5c9daa027522f883f3905f4c (patch)
tree50964ae864ec3325c2413facaa8efc3a3104f3a6 /win32/Kbuild
parentbe9b9ed64e658889229e18e3d089df27d8b724c3 (diff)
downloadbusybox-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/Kbuild11
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:=
7lib-$(CONFIG_PLATFORM_MINGW32) += env.o 7lib-$(CONFIG_PLATFORM_MINGW32) += env.o
8lib-$(CONFIG_PLATFORM_MINGW32) += fnmatch.o 8lib-$(CONFIG_PLATFORM_MINGW32) += fnmatch.o
9lib-$(CONFIG_PLATFORM_MINGW32) += fsync.o 9lib-$(CONFIG_PLATFORM_MINGW32) += fsync.o
10lib-$(CONFIG_PLATFORM_MINGW32) += inet_pton.o
10lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o 11lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o
11lib-$(CONFIG_PLATFORM_MINGW32) += isaac.o 12lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o
12lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o 13lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o
13lib-$(CONFIG_PLATFORM_MINGW32) += process.o 14lib-$(CONFIG_PLATFORM_MINGW32) += process.o
14lib-$(CONFIG_PLATFORM_MINGW32) += regex.o 15lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o
15lib-$(CONFIG_PLATFORM_MINGW32) += net.o 16lib-$(CONFIG_PLATFORM_MINGW32) += net.o
16lib-$(CONFIG_PLATFORM_MINGW32) += inet_pton.o
17lib-$(CONFIG_PLATFORM_MINGW32) += poll.o 17lib-$(CONFIG_PLATFORM_MINGW32) += poll.o
18lib-$(CONFIG_PLATFORM_MINGW32) += select.o
19lib-$(CONFIG_PLATFORM_MINGW32) += popen.o 18lib-$(CONFIG_PLATFORM_MINGW32) += popen.o
19lib-$(CONFIG_PLATFORM_MINGW32) += regex.o
20lib-$(CONFIG_PLATFORM_MINGW32) += select.o
21lib-$(CONFIG_FEATURE_PRNG_SHELL) += sh_random.o
20lib-$(CONFIG_PLATFORM_MINGW32) += statfs.o 22lib-$(CONFIG_PLATFORM_MINGW32) += statfs.o
21lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o
22lib-$(CONFIG_PLATFORM_MINGW32) += strptime.o 23lib-$(CONFIG_PLATFORM_MINGW32) += strptime.o
23lib-$(CONFIG_PLATFORM_MINGW32) += system.o 24lib-$(CONFIG_PLATFORM_MINGW32) += system.o
24lib-$(CONFIG_PLATFORM_MINGW32) += termios.o 25lib-$(CONFIG_PLATFORM_MINGW32) += termios.o