| Submitter | Andreas Färber |
|---|---|
| Date | June 14, 2011, 1:22 a.m. |
| Message ID | <1308014527-60251-6-git-send-email-andreas.faerber@web.de> |
| Download | mbox | patch |
| Permalink | /patch/100214/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/configure b/configure index c931ae8..6101f4e 100755 --- a/configure +++ b/configure @@ -2461,7 +2461,13 @@ fi fdatasync=no cat > $TMPC << EOF #include <unistd.h> -int main(void) { return fdatasync(0); } +int main(void) { +#if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0 +return fdatasync(0); +#else +#abort Not supported +#endif +} EOF if compile_prog "" "" ; then fdatasync=yes