GNOME Bugzilla – Bug 765991
Compilation of gresource.c is broken due to S_ISDIR
Last modified: 2016-05-04 15:52:58 UTC
Hi, A recent commit used the S_ISDIR macro that is actually not available universally, which broke the build on compilers which do not support it. I will attach a simple patch to address this issue. With blessings, thank you!
Created attachment 327303 [details] [review] gresource.c: Use g_file_test() instead of g_stat() and S_ISDIR Hi, This is my proposal to fix the build of gio/gresource.c on compilers which do not support S_ISDIR. With blessings, thank you!
Review of attachment 327303 [details] [review]: One minor fixup, feel free to push after that. ::: gio/gresource.c @@ +251,1 @@ GStatBuf buf; You can also drop this variable now.
Hi Colin, Thanks, I pushed the patch with the fix you mentioned as 217b620. With blessings, thank you!