From 0e08d237933111736fb9c2102f802e3c30139705 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 19 May 2020 11:48:22 -0400 Subject: [PATCH] configure: Not all compilers understand -idirafter, use -I instead. If this is a problem, we can write a test for the compiler flag, but shouldn't we _always_ use our Khronos headers instead of depending on the system...? --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3cabdabab8185..0fb7504b0a15a 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,7 @@ case "$host" in esac dnl Set up the compiler and linker flags -INCLUDE="-I$srcdir/include -idirafter $srcdir/src/video/khronos" +INCLUDE="-I$srcdir/include -I$srcdir/src/video/khronos" if test x$srcdir != x.; then INCLUDE="-Iinclude $INCLUDE" elif test -d .hg; then