We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e554db commit c8f39a5Copy full SHA for c8f39a5
1 file changed
db/sqlite3/src/moz.build
@@ -49,8 +49,10 @@ DEFINES['SQLITE_MAX_SCHEMA_RETRY'] = 25
49
# -DSQLITE_WIN32_GETVERSIONEX=0 avoids using deprecated functions.
50
# SQLite will just assume we are running on NT kinds of Windows. That's fine
51
# because we don't support Win9x.
52
+# -DSQLITE_ALLOW_URI_AUTHORITY=1 enables uri authorities. See bug 879133.
53
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
54
DEFINES['SQLITE_WIN32_GETVERSIONEX'] = 0
55
+ DEFINES['SQLITE_ALLOW_URI_AUTHORITY'] = 1
56
57
# -DSQLITE_ENABLE_LOCKING_STYLE=1 to help with AFP folders
58
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
0 commit comments