SVN using wrong SQLite version

macos, sqlite, svn

Solution

I experienced the same issue, I solved downloading http://www.sqlite.org/sqlite-amalgamation-3.7.6.3.tar.gz, unpacking the archive using tar/gunzip and coping sqlite3.c from the resulting directory into $svn-src-folder/sqlite-amalgamation/sqlite3.c.

Run configure/make/sudo make install and you should solve.

Problem

When running my svn from /usr/local/bin/ it says: svn: E200029: Couldn't perform atomic initialization svn: E200030: SQLite compiled for 3.7.13, but running with 3.6.12 What went wrong and how can I fix it? I'm on Mac OS X v10.6.8. ``` /usr/local/bin/sqlite3 --version 3.7.13 /usr/bin/sqlite3 --version 3.7.13 ```

Original source

Related problems