fe787f3
diff -ur kdelibs-4.3.3/kdecore/fakes.c kdelibs-4.3.3-fix-kdefakes-build/kdecore/fakes.c
fe787f3
--- kdelibs-4.3.3/kdecore/fakes.c	2008-05-21 13:09:15.000000000 +0200
fe787f3
+++ kdelibs-4.3.3-fix-kdefakes-build/kdecore/fakes.c	2009-11-06 01:47:27.000000000 +0100
fe787f3
@@ -313,6 +313,8 @@
fe787f3
 #endif /* !HAVE_MKDTEMP */
fe787f3
 
fe787f3
 #ifndef HAVE_STRLCPY
fe787f3
+#include <string.h>
fe787f3
+
fe787f3
 KDECORE_EXPORT unsigned long strlcpy(char* d, const char* s, unsigned long bufsize)
fe787f3
 {
fe787f3
     unsigned long len, ret = strlen(s);
fe787f3
@@ -331,6 +333,8 @@
fe787f3
 #endif
fe787f3
 
fe787f3
 #ifndef HAVE_STRLCAT
fe787f3
+#include <string.h>
fe787f3
+
fe787f3
 KDECORE_EXPORT unsigned long strlcat(char* d, const char* s, unsigned long bufsize)
fe787f3
 {
fe787f3
     char *cp;