WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED WONTFIX
36331
Fails to build when pcre.h is present in /usr/local/include
https://bugs.webkit.org/show_bug.cgi?id=36331
Summary
Fails to build when pcre.h is present in /usr/local/include
Yuval Tal
Reported
2010-03-18 15:47:36 PDT
Building with QT, my spec points adds -I/usr/local/include which has pcre.h. Compilation fails, since you include <pcre.h>, which means the pcre.h in WebKit. This fixes it: Index: JavaScriptCore/yarr/RegexJIT.h =================================================================== --- JavaScriptCore/yarr/RegexJIT.h (revision 56179) +++ JavaScriptCore/yarr/RegexJIT.h (working copy) @@ -32,7 +32,7 @@ #include "RegexPattern.h" #include <UString.h> -#include <pcre.h> +#include <pcre/pcre.h> struct JSRegExp; // temporary, remove when fallback is removed. #if CPU(X86) && !COMPILER(MSVC)
Attachments
Add attachment
proposed patch, testcase, etc.
Ahmad Saleem
Comment 1
2024-03-11 05:50:38 PDT
QT port is gone now. There is work done on upstream to revive it but I can't find this header via searchfox.org, so it might not be required. Changing to 'RESOLVED WONTFIX' because it was never confirmed.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug