From: Stefan Weil Date: Fri, 6 Apr 2012 19:33:20 +0000 (+0200) Subject: configure: Fix wrong preprocessor statement X-Git-Tag: v1.1-rc0~115^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e172fe1177ffa14f6d13cc539dd80d2a2705aa73;p=thirdparty%2Fqemu.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 5aaafa19126..b392c6f3903 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