I found some discussions about localtime_s when using MinGW. http://www.nabble.com/Need-localtime_s-t4584803.html#a13108085
I followed the suggestion to write some functions to work around the compiling error and it works. [Still using MingGW, since http://trac.webkit.org/projects/webkit/wiki/BuildingQtOnWindows instructs] Jerry George Staikos wrote: > > > On 10-Oct-07, at 12:49 AM, Jerry K wrote: > >> >> Hi George, >> >> I tried your patch, but I saw other compiling error. >> >> +#if PLATFORM(QT) && defined(Q_WS_WIN32) >> +#define localtime_r(x, y) localtime_s(y, x) >> +#endif >> >> ---- >> \qt\WebKit\WebCore\loader\FTPDirectoryDocument.cpp:237: error: >> `localtime_s' >> undeclared (first use this function) >> ---- >> >> I also searched 'localtime_s' in MinGW/include and Qt/4.3.1/include >> folders. >> I couldn't find the declaration of 'localtime_s'. Where should >> 'localtime_s' >> be? > > Ah, this fix required VS2005. I don't have a mingw environment > setup but the fix would be similar. > > -- > George Staikos > KDE Developer http://www.kde.org/ > Staikos Computing Services Inc. http://www.staikos.net/ > > > > _______________________________________________ > webkit-dev mailing list > [email protected] > http://lists.webkit.org/mailman/listinfo/webkit-dev > > -- View this message in context: http://www.nabble.com/Build-question-on-QT-window-version-tf4589528.html#a13148259 Sent from the Webkit mailing list archive at Nabble.com. _______________________________________________ webkit-dev mailing list [email protected] http://lists.webkit.org/mailman/listinfo/webkit-dev

