From: Christian Persch Date: Sat, 8 Dec 2007 14:29:37 +0000 (+0000) Subject: Add forgotten #ifdef G_OS_WIN32 to fix the build on linux. X-Git-Tag: GLIB_2_15_1~181 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c3d3e25ff6ac8a002d816c145c8e744d9bc46dc;p=platform%2Fupstream%2Fglib.git Add forgotten #ifdef G_OS_WIN32 to fix the build on linux. 2007-12-08 Christian Persch * gio/glocalfileinfo.c: (get_thumbnail_attributes): Add forgotten #ifdef G_OS_WIN32 to fix the build on linux. svn path=/trunk/; revision=6074 --- diff --git a/ChangeLog b/ChangeLog index 1e9aadb..6f2364b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-08 Christian Persch + + * gio/glocalfileinfo.c: (get_thumbnail_attributes): Add forgotten + #ifdef G_OS_WIN32 to fix the build on linux. + 2007-12-08 Hans Breuer * glib/makefile.msc.in : build gchecksum.obj diff --git a/gio/glocalfileinfo.c b/gio/glocalfileinfo.c index 6428c0b..dac9f93 100644 --- a/gio/glocalfileinfo.c +++ b/gio/glocalfileinfo.c @@ -1265,6 +1265,7 @@ get_thumbnail_attributes (const char *path, g_free (filename); } +#ifdef G_OS_WIN32 void win32_get_file_user_info (const gchar* filename, gchar **group_name, @@ -1311,6 +1312,7 @@ win32_get_file_user_info (const gchar* filename, } g_free (wfilename); } +#endif /* G_OS_WIN32 */ GFileInfo * _g_local_file_info_get (const char *basename,