Fix SQLite3 dynlib on OS X.

The old dynlib name referenced an ancient version of SQLite3 and could
not be overridden with --dynlibOverride.
This commit is contained in:
Reimer Behrends
2015-06-30 23:27:16 +02:00
parent 2f9ad55fbd
commit 507062f1bf

View File

@@ -13,7 +13,7 @@ when defined(windows):
Lib = "sqlite3.dll"
elif defined(macosx):
const
Lib = "(libsqlite3(|.0).dylib|sqlite-3.6.13.dylib)"
Lib = "libsqlite3(|.0).dylib"
else:
const
Lib = "libsqlite3.so(|.0)"