qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] rng-random: only build on POSIX platforms


From: Anthony Liguori
Subject: [Qemu-devel] [PATCH] rng-random: only build on POSIX platforms
Date: Sat, 17 Nov 2012 07:41:37 -0600

There is no /dev/random on win32.

Cc: Stefan Weil <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>
---
 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
-- 
1.8.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]