Skip to content

Commit

Permalink
Fix QNX build - prioritize system EGL headers over the Khronos ones
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Aug 30, 2017
1 parent 9ca6292 commit e53c5c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CMakeLists.txt
Expand Up @@ -232,7 +232,8 @@ endif()

add_definitions(-DUSING_GENERATED_CONFIG_H)
# General includes
include_directories(${SDL2_BINARY_DIR}/include ${SDL2_SOURCE_DIR}/include ${SDL2_SOURCE_DIR}/src/video/khronos)
include_directories(${SDL2_BINARY_DIR}/include ${SDL2_SOURCE_DIR}/include)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -idirafter ${SDL2_SOURCE_DIR}/src/video/khronos")

# All these ENABLED_BY_DEFAULT vars will default to ON if not specified, so
# you only need to have a platform override them if they are disabling.
Expand Down
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -15677,7 +15677,7 @@ case "$host" in
;;
esac

INCLUDE="-I$srcdir/include -I$srcdir/src/video/khronos"
INCLUDE="-I$srcdir/include -idirafter $srcdir/src/video/khronos"
if test x$srcdir != x.; then
INCLUDE="-Iinclude $INCLUDE"
elif test -d .hg; then
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -68,7 +68,7 @@ case "$host" in
esac

dnl Set up the compiler and linker flags
INCLUDE="-I$srcdir/include -I$srcdir/src/video/khronos"
INCLUDE="-I$srcdir/include -idirafter $srcdir/src/video/khronos"
if test x$srcdir != x.; then
INCLUDE="-Iinclude $INCLUDE"
elif test -d .hg; then
Expand Down

0 comments on commit e53c5c5

Please sign in to comment.