Author: faridz
Date: Tue Oct 10 08:26:55 2006
New Revision: 454781

URL: http://svn.apache.org/viewvc?view=rev&rev=454781
Log:
2006-10-10 Farid Zaripov <[EMAIL PROTECTED]>

        * configure.wsf (checkHeaders): Added tests for POSIX
        functions (putenv, setenv, unsetenv).

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?view=diff&rev=454781&r1=454780&r2=454781
==============================================================================
--- incubator/stdcxx/trunk/etc/config/windows/configure.wsf (original)
+++ incubator/stdcxx/trunk/etc/config/windows/configure.wsf Tue Oct 10 08:26:55 
2006
@@ -570,7 +570,7 @@
             c90_funs += " rename rewind scanf setbuf setvbuf sprintf";
             c90_funs += " sscanf tmpfile tmpnam ungetc vfprintf vprintf";
             c90_funs += " vsprintf";
-            c90_funs =c90_funs.split(" ");
+            c90_funs = c90_funs.split(" ");
             
             var c99_funs = "snprintf vsnprintf".split(" ");
             var posix_funs = "fileno".split(" ");
@@ -586,7 +586,7 @@
             c90_funs = c90_funs.split(" ");
             
             var c99_funs = "strtof strtold strtoll strtoull".split(" ");
-            var posix_funs = "mkstemp".split(" ");
+            var posix_funs = "mkstemp putenv setenv unsetenv".split(" ");
             funs = c90_funs.concat(c99_funs, posix_funs);
             lib = "c";
             break;


Reply via email to