I'm getting ready to merge a few last minute changes from last
week to 4.2.x. I can't tell from the description of this change
if this fix is important for 4.2.1 or not. Farid?
[EMAIL PROTECTED] wrote:
Author: faridz
Date: Fri Apr 18 11:35:41 2008
New Revision: 649647
URL: http://svn.apache.org/viewvc?rev=649647&view=rev
Log:
2008-04-18 Farid Zaripov <[EMAIL PROTECTED]>
* etc/config/windows/configure.wsf (linkFiles): Link with libraries,
specified in LIBS config variable.
(makeLibrary): Ditto.
Modified:
stdcxx/trunk/etc/config/windows/configure.wsf
Modified: stdcxx/trunk/etc/config/windows/configure.wsf
URL:
http://svn.apache.org/viewvc/stdcxx/trunk/etc/config/windows/configure.wsf?rev=649647&r1=649646&r2=649647&view=diff
==============================================================================
--- stdcxx/trunk/etc/config/windows/configure.wsf (original)
+++ stdcxx/trunk/etc/config/windows/configure.wsf Fri Apr 18 11:35:41 2008
@@ -1015,7 +1015,7 @@
command += joinArray(srcs.split(" "), "");
- command += " /Fe\"" + stageDir + "\\" + outName + "\"" +
+ command += " " + LIBS + " /Fe\"" + stageDir + "\\" + outName + "\"" +
" /link " + LDFLAGS;
var message = "Linking with command \"" + command + "\"";
@@ -1042,7 +1042,7 @@
var dllname = "\"" + stageDir + "\\" + basename(outFile, "\\.lib") +
".dll\"";
var command = LD + " ";
command += joinArray(objNames.split(" "), "");
- command += " /Fe" + dllname + " /link /DLL " + LDFLAGS +
+ command += " " + LIBS + " /Fe" + dllname + " /link /DLL " + LDFLAGS +
" /IMPLIB:" + libname;
var message = "Making library with command \"" + command + "\"";
logLine(message);