SVN commit 1095276 by orlovich: automatically merged revision 1095274: Fix Win32 build problem reported by SaroEngels. M +3 -2 regexp.cpp --- trunk/KDE/kdelibs/kjs/regexp.cpp #1095275:1095276 @@ -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;