configure: -idirafter needs a space, -I doesn't.
Some compilers are apparently quite cranky about the -I not having a space!
parent
475afe2162
commit
72fdc80512
|
@ -16022,7 +16022,7 @@ _ACEOF
|
||||||
if ac_fn_c_try_compile "$LINENO"; then :
|
if ac_fn_c_try_compile "$LINENO"; then :
|
||||||
|
|
||||||
have_idirafter="yes"
|
have_idirafter="yes"
|
||||||
idirafter="-idirafter"
|
idirafter="-idirafter "
|
||||||
|
|
||||||
fi
|
fi
|
||||||
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
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; }
|
$as_echo "$have_idirafter" >&6; }
|
||||||
CFLAGS="$save_CFLAGS"
|
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
|
if test x$srcdir != x.; then
|
||||||
INCLUDE="-Iinclude $INCLUDE"
|
INCLUDE="-Iinclude $INCLUDE"
|
||||||
elif test -d .hg; then
|
elif test -d .hg; then
|
||||||
|
|
|
@ -79,13 +79,13 @@ AC_TRY_COMPILE([
|
||||||
],[
|
],[
|
||||||
],[
|
],[
|
||||||
have_idirafter="yes"
|
have_idirafter="yes"
|
||||||
idirafter="-idirafter"
|
idirafter="-idirafter "
|
||||||
])
|
])
|
||||||
AC_MSG_RESULT($have_idirafter)
|
AC_MSG_RESULT($have_idirafter)
|
||||||
CFLAGS="$save_CFLAGS"
|
CFLAGS="$save_CFLAGS"
|
||||||
|
|
||||||
dnl Set up the compiler and linker flags
|
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
|
if test x$srcdir != x.; then
|
||||||
INCLUDE="-Iinclude $INCLUDE"
|
INCLUDE="-Iinclude $INCLUDE"
|
||||||
elif test -d .hg; then
|
elif test -d .hg; then
|
||||||
|
|
Loading…
Reference in New Issue