mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Ticket #4053: fix FTBFS with glib2 >= 2.63.3.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
c8046dc845
commit
b75ee9169e
@ -91,7 +91,7 @@ g_list_free_full (GList * list, GDestroyNotify free_func)
|
||||
|
||||
#endif /* ! GLIB_CHECK_VERSION (2, 28, 0) */
|
||||
|
||||
#if ! GLIB_CHECK_VERSION (2, 64, 0)
|
||||
#if ! GLIB_CHECK_VERSION (2, 63, 3)
|
||||
/**
|
||||
* g_clear_slist: (skip)
|
||||
* @slist_ptr: (not nullable): a #GSList return location
|
||||
@ -154,7 +154,7 @@ g_clear_list (GList ** list_ptr, GDestroyNotify destroy)
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
||||
#endif /* ! GLIB_CHECK_VERSION (2, 64, 0) */
|
||||
#endif /* ! GLIB_CHECK_VERSION (2, 63, 3) */
|
||||
|
||||
#if ! GLIB_CHECK_VERSION (2, 32, 0)
|
||||
/**
|
||||
|
@ -16,10 +16,10 @@ void g_slist_free_full (GSList * list, GDestroyNotify free_func);
|
||||
void g_list_free_full (GList * list, GDestroyNotify free_func);
|
||||
#endif /* ! GLIB_CHECK_VERSION (2, 28, 0) */
|
||||
|
||||
#if ! GLIB_CHECK_VERSION (2, 64, 0)
|
||||
#if ! GLIB_CHECK_VERSION (2, 63, 3)
|
||||
void g_clear_slist (GSList ** slist_ptr, GDestroyNotify destroy);
|
||||
void g_clear_list (GList ** list_ptr, GDestroyNotify destroy);
|
||||
#endif /* ! GLIB_CHECK_VERSION (2, 64, 0) */
|
||||
#endif /* ! GLIB_CHECK_VERSION (2, 63, 3) */
|
||||
|
||||
#if ! GLIB_CHECK_VERSION (2, 32, 0)
|
||||
void g_queue_free_full (GQueue * queue, GDestroyNotify free_func);
|
||||
|
Loading…
Reference in New Issue
Block a user