g_build_filename_va is only use in the G_OS_WIN32 case, so compile it
authorManish Singh <yosh@gimp.org>
Thu, 23 Jun 2005 22:52:49 +0000 (22:52 +0000)
committerManish Singh <yosh@src.gnome.org>
Thu, 23 Jun 2005 22:52:49 +0000 (22:52 +0000)
Thu Jun 23 15:52:08 2005  Manish Singh  <yosh@gimp.org>

        * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32
        case, so compile it conditionally.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
glib/gfileutils.c

index 920ca63..483e581 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jun 23 15:52:08 2005  Manish Singh  <yosh@gimp.org>
+
+       * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32
+       case, so compile it conditionally.
+
 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/keyfile-test.c (test_group_remove): Don't leak
index 920ca63..483e581 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jun 23 15:52:08 2005  Manish Singh  <yosh@gimp.org>
+
+       * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32
+       case, so compile it conditionally.
+
 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/keyfile-test.c (test_group_remove): Don't leak
index 920ca63..483e581 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jun 23 15:52:08 2005  Manish Singh  <yosh@gimp.org>
+
+       * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32
+       case, so compile it conditionally.
+
 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/keyfile-test.c (test_group_remove): Don't leak
index 920ca63..483e581 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jun 23 15:52:08 2005  Manish Singh  <yosh@gimp.org>
+
+       * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32
+       case, so compile it conditionally.
+
 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
 
        * tests/keyfile-test.c (test_group_remove): Don't leak
index 1be2962..b809b6a 100644 (file)
@@ -1752,6 +1752,8 @@ g_build_path (const gchar *separator,
   return str;
 }
 
+#ifdef G_OS_WIN32
+
 static gchar *
 g_build_filename_va (const gchar  *first_element,
                     va_list       args,
@@ -1864,6 +1866,8 @@ g_build_filename_va (const gchar  *first_element,
     }
 }
 
+#endif
+
 /**
  * g_build_filenamev:
  * @args: %NULL-terminated array of strings containing the path elements.