You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by an...@apache.org on 2006/06/16 17:42:24 UTC

svn commit: r414852 - /incubator/stdcxx/trunk/etc/config/windows/configure.wsf

Author: antonp
Date: Fri Jun 16 08:42:23 2006
New Revision: 414852

URL: http://svn.apache.org/viewvc?rev=414852&view=rev
Log:
2006-06-16  Anton Pevtsov  <an...@moscow.vdiweb.com>

	STDCXX-202
	* configure.wsf (checkHeader): Parentheses added.
	(runExeTests): "ok" changed to "no" for failed tests.

Modified:
    incubator/stdcxx/trunk/etc/config/windows/configure.wsf

Modified: incubator/stdcxx/trunk/etc/config/windows/configure.wsf
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/windows/configure.wsf?rev=414852&r1=414851&r2=414852&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/configure.wsf (original)
+++ incubator/stdcxx/trunk/etc/config/windows/configure.wsf Fri Jun 16 08:42:23 2006
@@ -717,7 +717,7 @@
             {
                 // if a symbol isn't declared in the header,
                 // see if it maybe exists in the library
-                WScript.StdOut.WriteLine("\tno\t" + sym);
+                WScript.StdOut.WriteLine("\tno (" + sym + ")");
                 appendLineToOutFile("#define " + sym);
                 // that is quite strange because there is no LIBM on Windows?
                 sym = sym + "_IN_LIB" + lib.toUpperCase();
@@ -739,7 +739,7 @@
                 else
                 {
                     appendLineToOutFile("#define " + sym);
-                    WScript.StdOut.WriteLine("  no\t\t" + sym);
+                    WScript.StdOut.WriteLine("  no (" + sym + ")");
                 }
             }
         }
@@ -938,8 +938,12 @@
                 outSymbol = "";
             }
             appendLineToOutFile(symbol);
-            if (descText && descText != "")
-                WScript.StdOut.WriteLine("  ok " + outSymbol);
+            if (descText && descText != "") {
+                if ("" != outSymbol)
+                    WScript.StdOut.WriteLine("  no (" + outSymbol + ")");
+                else
+                    WScript.StdOut.WriteLine("  ok ");
+            }
                 
             // append text results if present
             if (textResult.length != 0)