⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185802 in webkit


Ignore:
Timestamp:
Jun 20, 2015, 4:00:45 PM (11 years ago)
Author:
Michael Catanzaro
Message:

[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:

Source/WTF:

Define GLIB_VERSION_MIN_REQUIRED to avoid deprecation warnings.

  • wtf/Platform.h:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r185790 r185802  
     12015-06-20  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
     4        https://bugs.webkit.org/show_bug.cgi?id=146181
     5
     6        Reviewed by Martin Robinson.
     7
     8        Bump our GLib requirement to 2.36 to reflect reality, since we are using GTask.
     9
     10        * Source/cmake/OptionsGTK.cmake:
     11
    1122015-06-20  Ryuan Choi  <ryuan.choi@navercorp.com>
    213
  • trunk/Source/WTF/ChangeLog

    r185783 r185802  
     12015-06-20  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [EFL][GTK] Define GLIB_VERSION_MIN_REQUIRED and require glib 2.36 for GTK
     4        https://bugs.webkit.org/show_bug.cgi?id=146181
     5
     6        Reviewed by Martin Robinson.
     7
     8        Define GLIB_VERSION_MIN_REQUIRED to avoid deprecation warnings.
     9
     10        * wtf/Platform.h:
     11
    1122015-06-19  Michael Catanzaro  <mcatanzaro@igalia.com>
    213
  • trunk/Source/WTF/wtf/Platform.h

    r185783 r185802  
    489489#endif
    490490
     491#if PLATFORM(EFL)
     492#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_38
     493#elif PLATFORM(GTK)
     494#define GLIB_VERSION_MIN_REQUIRED GLIB_VERSION_2_36
     495#endif
     496
    491497#if PLATFORM(GTK) && !defined(GTK_API_VERSION_2)
    492498#define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_6
  • trunk/Source/cmake/OptionsGTK.cmake

    r185788 r185802  
    245245    list(APPEND glib_components gio-unix)
    246246endif ()
    247 find_package(GLIB 2.33.2 REQUIRED COMPONENTS ${glib_components})
     247find_package(GLIB 2.36 REQUIRED COMPONENTS ${glib_components})
    248248
    249249if (ENABLE_CREDENTIAL_STORAGE)
Note: See TracChangeset for help on using the changeset viewer.