From e172fe1177ffa14f6d13cc539dd80d2a2705aa73 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 6 Apr 2012 21:33:20 +0200 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.0