From patchwork Sat Nov 17 13:41:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: rng-random: only build on POSIX platforms Date: Sat, 17 Nov 2012 03:41:37 -0000 From: Anthony Liguori X-Patchwork-Id: 199854 Message-Id: <1353159697-3922-1-git-send-email-aliguori@us.ibm.com> To: qemu-devel@nongnu.org Cc: Stefan Weil , Anthony Liguori There is no /dev/random on win32. Cc: Stefan Weil Signed-off-by: Anthony Liguori --- backends/Makefile.objs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backends/Makefile.objs b/backends/Makefile.objs index 875eebc..8836761 100644 --- a/backends/Makefile.objs +++ b/backends/Makefile.objs @@ -1 +1,2 @@ -common-obj-y += rng.o rng-random.o rng-egd.o +common-obj-y += rng.o rng-egd.o +common-obj-$(CONFIG_POSIX) += rng-random.o