SVN commit 1095274 by orlovich: Fix Win32 build problem reported by SaroEngels. M +3 -2 regexp.cpp --- branches/KDE/4.4/kdelibs/kjs/regexp.cpp #1095273:1095274 @@ -38,12 +38,13 @@ #if HAVE(SYS_TIME_H) #include #include + +static const rlim_t sWantedStackSizeLimit = 32*1024*1024; + #endif using WTF::Vector; -static const rlim_t sWantedStackSizeLimit = 32*1024*1024; - // GCC cstring uses these automatically, but not all implementations do. using std::strlen; using std::strcpy;