From: Tor Lillqvist Date: Tue, 7 Jul 2009 11:37:45 +0000 (+0300) Subject: Make it compile on Windows. X-Git-Tag: 2.21.4~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=474ba7dbc37e352d39c0057bd2a31504828dde36;p=platform%2Fupstream%2Fglib.git Make it compile on Windows. Surround a symlink-related code snippet with ifdef S_ISLNK. --- diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c index 0c5b12c..72a59b5 100644 --- a/gio/glocalfileinfo.c +++ b/gio/glocalfileinfo.c @@ -1530,6 +1530,7 @@ _g_local_file_info_get (const char *basename, #endif symlink_target = NULL; +#ifdef S_ISLNK if (is_symlink) { symlink_target = read_link (path); @@ -1538,7 +1539,7 @@ _g_local_file_info_get (const char *basename, G_FILE_ATTRIBUTE_ID_STANDARD_SYMLINK_TARGET)) g_file_info_set_symlink_target (info, symlink_target); } - +#endif if (_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_STANDARD_DISPLAY_NAME)) {