[Libreoffice-commits] core.git: configure.ac

Tor Lillqvist tml at collabora.com
Fri Aug 22 08:57:54 PDT 2014


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4eaf127447189c181d3472cdb0bd0c7009ceaccc
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Aug 22 18:30:13 2014 +0300

    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

diff --git a/configure.ac b/configure.ac
index ef3abc2..370ae6e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12830,7 +12830,7 @@ if test "$build_os" = "cygwin"; then
     fi
     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"
     fi
     AC_SUBST(ILIB)


More information about the Libreoffice-commits mailing list