summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-13 17:19:26 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2009-04-13 17:19:26 +0000
commit169dc5d347a9fc6b2acd67344d33393509bb09d4 (patch)
treeb9760846498903557c09779fa26c3d40f5549f11 /configure
parent3f4cb3d37fb74db3580029624c8acd83dd5f4787 (diff)
downloadqemu-169dc5d347a9fc6b2acd67344d33393509bb09d4.tar.gz
Probe via #define check for OpenBSD and *Solaris
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7104 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 2b5ae78e96..cef901e231 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