From 169dc5d347a9fc6b2acd67344d33393509bb09d4 Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Mon, 13 Apr 2009 17:19:26 +0000 Subject: [PATCH] Probe via #define check for OpenBSD and *Solaris git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7104 c046a42c-6fe2-441c-8c8c-71466251a162 --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 2b5ae78..cef901e 100755 --- a/configure +++ b/configure @@ -197,6 +197,10 @@ if check_define __linux__ ; then targetos="Linux" elif check_define _WIN32 ; then targetos='MINGW32' +elif check_define __OpenBSD__ ; then + targetos='OpenBSD' +elif check_define __sun__ ; then + targetos='SunOS' else targetos=`uname -s` fi -- 1.7.9.5