[Webkit-unassigned] [Bug 149215] REGRESSION (r189526): Nightlies don't work on Mavericks

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 16 23:20:54 PDT 2015


https://bugs.webkit.org/show_bug.cgi?id=149215

Alexey Proskuryakov <ap at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ap at webkit.org,
                   |                            |lforschler at apple.com,
                   |                            |mcatanzaro at igalia.com
            Summary|Unable to load any HTML     |REGRESSION (r189526):
                   |page                        |Nightlies don't work on
                   |                            |Mavericks
           Priority|P2                          |P1
          Component|New Bugs                    |WebCore Misc.

--- Comment #2 from Alexey Proskuryakov <ap at webkit.org> ---
I can reproduce. There is an error in console saying that _sqlite3_errstr cannot be found in libsqlite3.dylib, meaning that this is a regression from <http://trac.webkit.org/changeset/189526>.

This may have something to do with how nightlies are built. On a pristine 10.9.5 installation, SQLITE_VERSION_NUMBER is 3007013, so we shouldn't be trying to compile this in. But looks like we are using the a newer SDK.

I don't know if it's feasible to change how nightlies are built. If not, we should change the conditional to use target OS version on OS X.

#if SQLITE_VERSION_NUMBER >= 3007015
            WTFLogAlways("Failed to initialize SQLite: %s", sqlite3_errstr(ret));
#else
            WTFLogAlways("Failed to initialize SQLite");
#endif

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150917/b972292f/attachment.html>


More information about the webkit-unassigned mailing list