*** parsers.cpp.orig	Mon Jan  3 06:44:07 2005
--- parsers.cpp	Mon Jan  3 06:45:05 2005
***************
*** 30,35 ****
--- 30,39 ----
  #else
  #include <unistd.h>
  #endif
+ 
+ #ifdef BOOST_NO_STDC_NAMESPACE
+ namespace std { using ::tolower; }
+ #endif
  
  // The 'environ' should be declared in some cases. E.g. Linux man page says:
  // (This variable must be declared in the user program, but is declared in 
***************
*** 263,269 ****
                      {   
                          // Intel-Win-7.1 does not understand
              // push_back on string.         
!                         result += tolower(s[n]);
                      }
                  }
                  return result;
--- 267,273 ----
                      {   
                          // Intel-Win-7.1 does not understand
              // push_back on string.         
!                         result += std::tolower(s[n]);
                      }
                  }
                  return result;

