summaryrefslogtreecommitdiffstats
path: root/block.c
diff options
context:
space:
mode:
authorJuan Quintela2009-07-27 16:12:56 +0200
committerAnthony Liguori2009-07-27 21:09:20 +0200
commit71e72a19bafda97c9e97b089499fdc050e96a631 (patch)
treefdd6ebb4dd37e6aef7c80db2d6a1231fcad9fa3d /block.c
parentO_LARGEFILE is already set in qemu-common.h (diff)
downloadqemu-71e72a19bafda97c9e97b089499fdc050e96a631.tar.gz
qemu-71e72a19bafda97c9e97b089499fdc050e96a631.tar.xz
qemu-71e72a19bafda97c9e97b089499fdc050e96a631.zip
rename HOST_BSD to CONFIG_BSD
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block.c b/block.c
index 39f726cd66..82ffea8753 100644
--- a/block.c
+++ b/block.c
@@ -22,7 +22,7 @@
* THE SOFTWARE.
*/
#include "config-host.h"
-#ifdef HOST_BSD
+#ifdef CONFIG_BSD
/* include native header before sys-queue.h */
#include <sys/queue.h>
#endif
@@ -32,7 +32,7 @@
#include "block_int.h"
#include "module.h"
-#ifdef HOST_BSD
+#ifdef CONFIG_BSD
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>