From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lfzks-0008Vy-Rv for qemu-devel@nongnu.org; Sat, 07 Mar 2009 11:52:06 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lfzkr-0008VX-NE for qemu-devel@nongnu.org; Sat, 07 Mar 2009 11:52:05 -0500 Received: from [199.232.76.173] (port=38379 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lfzkq-0008VR-SX for qemu-devel@nongnu.org; Sat, 07 Mar 2009 11:52:04 -0500 Received: from savannah.gnu.org ([199.232.41.3]:53609 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lfzkq-00022T-FF for qemu-devel@nongnu.org; Sat, 07 Mar 2009 11:52:04 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Lfzkp-0003Um-Sc for qemu-devel@nongnu.org; Sat, 07 Mar 2009 16:52:03 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1Lfzkp-0003Uh-EX for qemu-devel@nongnu.org; Sat, 07 Mar 2009 16:52:03 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sat, 07 Mar 2009 16:52:03 +0000 Subject: [Qemu-devel] [6742] Fix BSD breakage from r6736 Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6742 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6742 Author: blueswir1 Date: 2009-03-07 16:52:02 +0000 (Sat, 07 Mar 2009) Log Message: ----------- Fix BSD breakage from r6736 Modified Paths: -------------- trunk/net.c trunk/osdep.c trunk/savevm.c trunk/vl.c Modified: trunk/net.c =================================================================== --- trunk/net.c 2009-03-07 16:03:05 UTC (rev 6741) +++ trunk/net.c 2009-03-07 16:52:02 UTC (rev 6742) @@ -29,6 +29,9 @@ #include #include +/* Needed early for _BSD etc. */ +#include "config-host.h" + #ifndef _WIN32 #include #include Modified: trunk/osdep.c =================================================================== --- trunk/osdep.c 2009-03-07 16:03:05 UTC (rev 6741) +++ trunk/osdep.c 2009-03-07 16:52:02 UTC (rev 6742) @@ -33,6 +33,9 @@ #include #endif +/* Needed early for _BSD etc. */ +#include "config-host.h" + #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN #include Modified: trunk/savevm.c =================================================================== --- trunk/savevm.c 2009-03-07 16:03:05 UTC (rev 6741) +++ trunk/savevm.c 2009-03-07 16:52:02 UTC (rev 6742) @@ -29,6 +29,9 @@ #include #include +/* Needed early for _BSD etc. */ +#include "config-host.h" + #ifndef _WIN32 #include #include Modified: trunk/vl.c =================================================================== --- trunk/vl.c 2009-03-07 16:03:05 UTC (rev 6741) +++ trunk/vl.c 2009-03-07 16:52:02 UTC (rev 6742) @@ -29,6 +29,9 @@ #include #include +/* Needed early for _BSD etc. */ +#include "config-host.h" + #ifndef _WIN32 #include #include