diff options
author | Juan Quintela | 2009-07-27 16:13:07 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-07-27 21:09:21 +0200 |
commit | 35f4df2759e58a6c01d45cf3346793e91cb0fc88 (patch) | |
tree | 91263dc4ce1e82b590ba8f504847fdfeae2be66f /configure | |
parent | rename WORDS_BIGENDIAN to HOST_WORDS_BIGENDIAN (diff) | |
download | qemu-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-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); } |