mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
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:
parent
58f83683e9
commit
20c16cd277
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user