g_build_filename_va is only use in the G_OS_WIN32 case, so compile it

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.
This commit is contained in:
Manish Singh 2005-06-23 22:52:49 +00:00 committed by Manish Singh
parent 58f83683e9
commit 20c16cd277
5 changed files with 24 additions and 0 deletions

View 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

View 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

View 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

View 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

View 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.