Kaydet (Commit) 4eaf1274 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Don't add a bogus C:/cygwin64/lib/x86 (or similar) directory to ILIB

If we don't know of any separate DirectX SDK library, don't use the
$DIRECTXSDK_LIB variable which is bogus at that point.

Thanks to Nicholas Ferguson for noticing.

Change-Id: I333478da7757694ca9236fd485e93bbd88305278
üst 4970d562
...@@ -12830,7 +12830,7 @@ if test "$build_os" = "cygwin"; then ...@@ -12830,7 +12830,7 @@ if test "$build_os" = "cygwin"; then
fi fi
ILIB="$ILIB;$DOTNET_FRAMEWORK_HOME/lib" ILIB="$ILIB;$DOTNET_FRAMEWORK_HOME/lib"
if test "$ENABLE_DIRECTX" = "TRUE"; then if test "$ENABLE_DIRECTX" = "TRUE" -a "$HAVE_DIRECTXSDK_LIB" = "yes"; then
ILIB="$ILIB;$DIRECTXSDK_LIB" ILIB="$ILIB;$DIRECTXSDK_LIB"
fi fi
AC_SUBST(ILIB) AC_SUBST(ILIB)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment