From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZ0CD-0004AI-Sb for qemu-devel@nongnu.org; Fri, 20 Mar 2015 12:54:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YZ0C9-00059h-TF for qemu-devel@nongnu.org; Fri, 20 Mar 2015 12:54:53 -0400 Received: from smtp.citrix.com ([66.165.176.89]:14105) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YZ0C9-00057t-OZ for qemu-devel@nongnu.org; Fri, 20 Mar 2015 12:54:49 -0400 From: Wei Liu Date: Fri, 20 Mar 2015 16:54:45 +0000 Message-ID: <1426870485-32435-1-git-send-email-wei.liu2@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH] Probe via #define check for FreeBSD, NetBSD and DragonFly BSD List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Wei Liu Signed-off-by: Wei Liu --- 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