...lib/replace/system/filesys.h #include's <sys/file.h> unconditionally. It should only do so if HAVE_SYS_FILE is #define'd. Patch: diff -u ./lib/replace/system/filesys.h.orig ./lib/replace/system/filesys.h --- ./lib/replace/system/filesys.h.orig 2010-05-17 06:51:23.000000000 -0500 +++ ./lib/replace/system/filesys.h 2010-05-27 07:07:01.000000000 -0500 @@ -77,7 +77,9 @@ #include <sys/filio.h> #endif +#ifdef HAVE_SYS_FILE_H #include <sys/file.h> +#endif #ifdef HAVE_FCNTL_H #include <fcntl.h> Bye, Jojo
thanks! fixed in master with 6a78241f4a9aae84e91ea2e49f066f2e5203beba
Created attachment 5749 [details] backport for 3.5 Metze, please review for inclusion in 3.5
still an issue in 3.5.7
Comment on attachment 5749 [details] backport for 3.5 looks good
Pushed to v3-5-test, will be included in 3.5.10. Closing out bug report. Thanks!