qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] Probe via #define check for FreeBSD, NetBSD and Dra


From: Wei Liu
Subject: [Qemu-devel] [PATCH] Probe via #define check for FreeBSD, NetBSD and DragonFly BSD
Date: Fri, 20 Mar 2015 16:54:45 +0000

Signed-off-by: Wei Liu <address@hidden>
---
 configure | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/configure b/configure
index 589798e..ceacd81 100755
--- a/configure
+++ b/configure
@@ -441,6 +441,12 @@ elif check_define _WIN32 ; then
   targetos='MINGW32'
 elif check_define __OpenBSD__ ; then
   targetos='OpenBSD'
+elif check_define __FreeBSD__ ; then
+  targetos='FreeBSD'
+elif check_define __DragonFly__ ; then
+  targetos='DragonFly'
+elif check_define __NetBSD__ ; then
+  targetos='NetBSD'
 elif check_define __sun__ ; then
   targetos='SunOS'
 elif check_define __HAIKU__ ; then
-- 
1.9.1




reply via email to

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