From kde-commits Wed Dec 12 20:24:03 2007 From: Adriaan de Groot Date: Wed, 12 Dec 2007 20:24:03 +0000 To: kde-commits Subject: KDE/kdelibs/kjs Message-Id: <1197491043.621171.17800.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=119749113113145 SVN commit 747718 by adridg: str*casecmp is in strings.h on Solaris, not in cstring; this is one of those standards divergence issues. M +4 -0 date_object.cpp --- trunk/KDE/kdelibs/kjs/date_object.cpp #747717:747718 @@ -50,6 +50,10 @@ #include #include +#if PLATFORM(SOLARIS_OS) +#include +#endif + #include "error_object.h" #include "operations.h"