From: Stefan Weil Date: Fri, 6 Apr 2012 19:33:20 +0000 (+0200) Subject: configure: Fix wrong preprocessor statement X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e172fe1177ffa14f6d13cc539dd80d2a2705aa73;p=qemu.git configure: Fix wrong preprocessor statement #abort is not a preprocessor statement. It aborts, but the preprocessor statement #error is more common to abort a compilation. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- diff --git a/configure b/configure index 5aaafa1912..b392c6f390 100755 --- a/configure +++ b/configure @@ -2624,7 +2624,7 @@ int main(void) { #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 return fdatasync(0); #else -#abort Not supported +#error Not supported #endif } EOF