https://bugs.webkit.org/show_bug.cgi?id=146181
Reviewed by Martin Robinson.
.:
Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
* Source/cmake/OptionsGTK.cmake:
Source/WTF:
Define GLIB_VERSION_MIN_REQUIRED to avoid deprecation warnings.
* wtf/Platform.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@185802
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
+ https://bugs.webkit.org/show_bug.cgi?id=146181
+
+ Reviewed by Martin Robinson.
+
+ Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
+
+ * Source/cmake/OptionsGTK.cmake:
+
2015-06-20 Ryuan Choi <ryuan.choi@navercorp.com>
[EFL] Do not consider test directories when DEVELOPER_MODE is OFF
+2015-06-20 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
+ https://bugs.webkit.org/show_bug.cgi?id=146181
+
+ Reviewed by Martin Robinson.
+
+ Define GLIB_VERSION_MIN_REQUIRED to avoid deprecation warnings.
+
+ * wtf/Platform.h:
+
2015-06-19 Michael Catanzaro <mcatanzaro@igalia.com>
[SOUP] Define SOUP_VERSION_MIN_REQUIRED
#define USE_WEBP 1
#endif
+#if PLATFORM(EFL)
+#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_38
+#elif PLATFORM(GTK)
+#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_36
+#endif
+
#if PLATFORM(GTK) && !defined(GTK_API_VERSION_2)
#define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_6
#endif
if (ENABLE_GAMEPAD_DEPRECATED OR ENABLE_GEOLOCATION)
list(APPEND glib_components gio-unix)
endif ()
-find_package(GLIB 2.33.2 REQUIRED COMPONENTS ${glib_components})
+find_package(GLIB 2.36 REQUIRED COMPONENTS ${glib_components})
if (ENABLE_CREDENTIAL_STORAGE)
find_package(Libsecret)