From: Debian Qt/KDE Maintainers Date: Tue, 5 Feb 2013 21:52:29 +0000 (+0000) Subject: _kfreebsd_strnstr_build_fix X-Git-Tag: archive/raspbian/4%4.8.7+dfsg-15+rpi1~1^2^2^2~19 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1003a9b49039f5b04fa0caca2aea3faacacb29f8;p=qt4-x11.git _kfreebsd_strnstr_build_fix Gbp-Pq: Name 51_kfreebsd_strnstr_build_fix.diff --- diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h index d930ed77b..5558e2e5f 100644 --- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h +++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h @@ -393,7 +393,7 @@ #endif /* OS(LINUX) - Linux */ -#ifdef __linux__ +#if defined(__linux__) || defined(__GLIBC__) #define WTF_OS_LINUX 1 #endif diff --git a/src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h b/src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h index a8298c499..98b92f07d 100644 --- a/src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h +++ b/src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h @@ -423,7 +423,7 @@ #endif /* OS(LINUX) - Linux */ -#ifdef __linux__ +#if defined(__linux__) || defined(__GLIBC__) #define WTF_OS_LINUX 1 #endif