Browse Source

configure: -idirafter needs a space, -I doesn't.

Some compilers are apparently quite cranky about the -I not having a space!
Ryan C. Gordon 4 years ago
parent
commit
72fdc80512
2 changed files with 4 additions and 4 deletions
  1. 2 2
      configure
  2. 2 2
      configure.ac

+ 2 - 2
configure

@@ -16022,7 +16022,7 @@ _ACEOF
 if ac_fn_c_try_compile "$LINENO"; then :
 
 have_idirafter="yes"
-idirafter="-idirafter"
+idirafter="-idirafter "
 
 fi
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
@@ -16030,7 +16030,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 $as_echo "$have_idirafter" >&6; }
 CFLAGS="$save_CFLAGS"
 
-INCLUDE="-I$srcdir/include $idirafter $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

+ 2 - 2
configure.ac

@@ -79,13 +79,13 @@ AC_TRY_COMPILE([
 ],[
 ],[
 have_idirafter="yes"
-idirafter="-idirafter"
+idirafter="-idirafter "
 ])
 AC_MSG_RESULT($have_idirafter)
 CFLAGS="$save_CFLAGS"
 
 dnl Set up the compiler and linker flags
-INCLUDE="-I$srcdir/include $idirafter $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