From kde-commits Tue Feb 23 22:34:39 2010 From: Maks Orlovich Date: Tue, 23 Feb 2010 22:34:39 +0000 To: kde-commits Subject: KDE/kdelibs/kjs Message-Id: <1266964479.222567.24733.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=126696448709754 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;