diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 17:19:26 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 17:19:26 +0000 |
commit | 169dc5d347a9fc6b2acd67344d33393509bb09d4 (patch) | |
tree | b9760846498903557c09779fa26c3d40f5549f11 /configure | |
parent | 3f4cb3d37fb74db3580029624c8acd83dd5f4787 (diff) | |
download | qemu-169dc5d347a9fc6b2acd67344d33393509bb09d4.tar.gz qemu-169dc5d347a9fc6b2acd67344d33393509bb09d4.tar.bz2 qemu-169dc5d347a9fc6b2acd67344d33393509bb09d4.zip |
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-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |