Remove space after the -L in what we add to LDFLAGS for DirectInput.

2007-02-23  Tor Lillqvist  <tml@novell.com>

	* configure.in: Remove space after the -L in what we add to
	LDFLAGS for DirectInput.


svn path=/trunk/; revision=21983
This commit is contained in:
Tor Lillqvist 2007-02-23 12:41:01 +00:00 committed by Tor Lillqvist
parent 35a0647fec
commit d0cf5a026d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-02-23 Tor Lillqvist <tml@novell.com>
* configure.in: Remove space after the -L in what we add to
LDFLAGS for DirectInput.
2007-02-23 Tor Lillqvist <tml@novell.com>
* plug-ins/common/psd.c: Inspired by mail from a user, improve

View File

@ -1419,7 +1419,7 @@ if test x"$os_win32" = xyes; then
dinput_save_LDFLAGS="$CPPFLAGS"
if test "x$with_directx_sdk" != x; then
CPPFLAGS="-I $with_directx_sdk/Include $CPPFLAGS"
LDFLAGS="-L $with_directx_sdk/Lib/x86 $LDFLAGS"
LDFLAGS="-L$with_directx_sdk/Lib/x86 $LDFLAGS"
AC_CHECK_HEADER(dinput.h,
[AC_CHECK_LIB(dxguid, GUID_XAxis, have_dx_dinput=yes)])
fi