mirror of https://github.com/xqemu/xqemu.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 <sw@weilnetz.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
8fb0315165
commit
e172fe1177
|
@ -2624,7 +2624,7 @@ int main(void) {
|
||||||
#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
|
#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
|
||||||
return fdatasync(0);
|
return fdatasync(0);
|
||||||
#else
|
#else
|
||||||
#abort Not supported
|
#error Not supported
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in New Issue