Commit 5e0acec1 authored by Max Kellermann's avatar Max Kellermann

curl: reverse GLIB_CHECK_VERSION()

The GLIB_CHECK_VERSION() macro was used improperly, which broke build on GLib < 2.14. Add a "!" for negation.
parent 4c3ce9ef
......@@ -125,7 +125,7 @@ buffer_free_callback(gpointer data, G_GNUC_UNUSED gpointer user_data)
}
/* g_queue_clear() was introduced in GLib 2.14 */
#if GLIB_CHECK_VERSION(2,14,0)
#if !GLIB_CHECK_VERSION(2,14,0)
#define g_queue_clear(q) do { g_queue_free(q); q = g_queue_new(); } while (0)
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment