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

Don't build libxslt.dll against debugging runtime for --enable-debug

Same problem as a few commits earlier: libxslt's configure.js uses
debug=yes to mean using the debugging crt, which we don't want in just
a debug=t build. (And which will make libxslt.dll fail to load.) Look
at $(dbgutil), not $(debug). (And note that in general dbgutil builds
are disabled for Windows currently anyway.)
üst c6e86f8b
...@@ -93,7 +93,7 @@ BUILD_DIR=$(CONFIGURE_DIR) ...@@ -93,7 +93,7 @@ BUILD_DIR=$(CONFIGURE_DIR)
CONFIGURE_DIR=win32 CONFIGURE_DIR=win32
CONFIGURE_ACTION=cscript configure.js CONFIGURE_ACTION=cscript configure.js
#CONFIGURE_FLAGS=iconv=no sax1=yes #CONFIGURE_FLAGS=iconv=no sax1=yes
.IF "$(debug)"!="" .IF "$(dbgutil)"!=""
CONFIGURE_FLAGS+=debug=yes CONFIGURE_FLAGS+=debug=yes
.ENDIF .ENDIF
BUILD_ACTION=nmake BUILD_ACTION=nmake
......
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