From 35f4df2759e58a6c01d45cf3346793e91cb0fc88 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Mon, 27 Jul 2009 16:13:07 +0200 Subject: [PATCH] Add CONFIG_POSIX We need a way to define posix-like (a.k.a. no win32) Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- configure | 1 + 1 file changed, 1 insertion(+) 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 int main(void) { return bswap_32(0); }