Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 565936
Collapse All | Expand All

(-)a/Source/cmake/FindOpenGL.cmake (+1 lines)
Lines 59-64 Link Here
59
    include(CMakePushCheckState)
59
    include(CMakePushCheckState)
60
    CMAKE_PUSH_CHECK_STATE()
60
    CMAKE_PUSH_CHECK_STATE()
61
    set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${OPENGL_INCLUDE_DIRS})
61
    set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${OPENGL_INCLUDE_DIRS})
62
    include(CheckIncludeFiles)
62
    check_include_files("GL/glx.h" GLX_FOUND)
63
    check_include_files("GL/glx.h" GLX_FOUND)
63
    CMAKE_POP_CHECK_STATE()
64
    CMAKE_POP_CHECK_STATE()
64
endif ()
65
endif ()
(-)a/Source/cmake/FindWebP.cmake (+1 lines)
Lines 35-40 Link Here
35
if (NOT(WEBP_FOUND))
35
if (NOT(WEBP_FOUND))
36
    # Older installations of libwebp do not install a pkgconfig file, so we fall
36
    # Older installations of libwebp do not install a pkgconfig file, so we fall
37
    # back to a manual search for a libwebp header file.
37
    # back to a manual search for a libwebp header file.
38
    include(CheckIncludeFiles)
38
    check_include_files("webp/decode.h" WEBP_FOUND_HEADER)
39
    check_include_files("webp/decode.h" WEBP_FOUND_HEADER)
39
    if (WEBP_FOUND_HEADER)
40
    if (WEBP_FOUND_HEADER)
40
        set(WEBP_LIBRARIES "-lwebp")
41
        set(WEBP_LIBRARIES "-lwebp")

Return to bug 565936