Changeset 166635 in webkit


Ignore:
Timestamp:
Apr 2, 2014 12:38:02 AM (10 years ago)
Author:
rakuco@webkit.org
Message:

[CMake] Drop port check from FindEGL.cmake.
https://bugs.webkit.org/show_bug.cgi?id=131091

Reviewed by Gyuyoung Kim.

There is no reason to mark some variables as advanced only for the
GTK+ port.

  • Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY

as advanced regardless of the port.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r166592 r166635  
     12014-04-01  Raphael Kubo da Costa  <raphael.kubo.da.costa@intel.com>
     2
     3        [CMake] Drop port check from FindEGL.cmake.
     4        https://bugs.webkit.org/show_bug.cgi?id=131091
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        There is no reason to mark some variables as advanced only for the
     9        GTK+ port.
     10
     11        * Source/cmake/FindEGL.cmake: Mark EGL_INCLUDE_DIR and EGL_LIBRARY
     12        as advanced regardless of the port.
     13
    1142014-04-01  Dániel Bátyai  <dbatyai.u-szeged@partner.samsung.com>
    215
  • trunk/Source/cmake/FindEGL.cmake

    r162427 r166635  
    3737FIND_PACKAGE_HANDLE_STANDARD_ARGS(EGL DEFAULT_MSG EGL_INCLUDE_DIR EGL_LIBRARY)
    3838
    39 if (PORT STREQUAL "GTK")
    40    mark_as_advanced(EGL_INCLUDE_DIR EGL_LIBRARY)
    41 endif ()
     39mark_as_advanced(EGL_INCLUDE_DIR EGL_LIBRARY)
Note: See TracChangeset for help on using the changeset viewer.