summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJuan Quintela2009-07-27 16:13:07 +0200
committerAnthony Liguori2009-07-27 21:09:21 +0200
commit35f4df2759e58a6c01d45cf3346793e91cb0fc88 (patch)
tree91263dc4ce1e82b590ba8f504847fdfeae2be66f /configure
parentrename WORDS_BIGENDIAN to HOST_WORDS_BIGENDIAN (diff)
downloadqemu-35f4df2759e58a6c01d45cf3346793e91cb0fc88.tar.gz
qemu-35f4df2759e58a6c01d45cf3346793e91cb0fc88.tar.xz
qemu-35f4df2759e58a6c01d45cf3346793e91cb0fc88.zip
Add CONFIG_POSIX
We need a way to define posix-like (a.k.a. no win32) Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index a3e5438315..0545199c22 100755
--- a/configure
+++ b/configure
@@ -1536,6 +1536,7 @@ if test "$mingw32" = "yes" ; then
echo "CONFIG_WIN32=y" >> $config_host_mak
echo "#define CONFIG_WIN32 1" >> $config_host_h
else
+ echo "CONFIG_POSIX=y" >> $config_host_mak
cat > $TMPC << EOF
#include <byteswap.h>
int main(void) { return bswap_32(0); }