<html>
<head>
<base href="https://bugs.webkit.org/" />
</head>
<body><span class="vcard"><a class="email" href="mailto:ap@webkit.org" title="Alexey Proskuryakov <ap@webkit.org>"> <span class="fn">Alexey Proskuryakov</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - REGRESSION (r189526): Nightlies don't work on Mavericks"
href="https://bugs.webkit.org/show_bug.cgi?id=149215">bug 149215</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">CC</td>
<td>
</td>
<td>ap@webkit.org, lforschler@apple.com, mcatanzaro@igalia.com
</td>
</tr>
<tr>
<td style="text-align:right;">Summary</td>
<td>Unable to load any HTML page
</td>
<td>REGRESSION (r189526): Nightlies don't work on Mavericks
</td>
</tr>
<tr>
<td style="text-align:right;">Priority</td>
<td>P2
</td>
<td>P1
</td>
</tr>
<tr>
<td style="text-align:right;">Component</td>
<td>New Bugs
</td>
<td>WebCore Misc.
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - REGRESSION (r189526): Nightlies don't work on Mavericks"
href="https://bugs.webkit.org/show_bug.cgi?id=149215#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - REGRESSION (r189526): Nightlies don't work on Mavericks"
href="https://bugs.webkit.org/show_bug.cgi?id=149215">bug 149215</a>
from <span class="vcard"><a class="email" href="mailto:ap@webkit.org" title="Alexey Proskuryakov <ap@webkit.org>"> <span class="fn">Alexey Proskuryakov</span></a>
</span></b>
<pre>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 <<a href="http://trac.webkit.org/changeset/189526">http://trac.webkit.org/changeset/189526</a>>.
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</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>