0
I have seen this question on the source code of SQLite. However, I can not make sense on how to build SQLite on my Mac OS 10.6 from scratch, esp. an old version. What steps do I need?
0
I have seen this question on the source code of SQLite. However, I can not make sense on how to build SQLite on my Mac OS 10.6 from scratch, esp. an old version. What steps do I need?
1
The SQLite project recommends using their amalgamation package which bundles in source files for dependencies.
The amalgamation and the sqlite3.h header file are available on the download page as a file named sqlite-amalgamation-X_X_X.zip where the X's are replaced by the appropriate version number.appropriate version number.
You can change the URL for the current amalgamation download to get the older version that you want.
Once you have that, open up the zip file or tar.gz (aka tarball) download. The INSTALL
file gives instructions, but they're standard for most source build downloads:
cd
into the source directory./configure
make
make install
-- typically using sudo to gain the permissions you need: sudo make install
2
I would recommend you to take a look at MacPorts project. You could build SQLite from sources using MacPorts.
thanks, I know MacPorts. I would like to get an old version of sqlite to make some changes, and experiment with it. do you know how to access their CVS repository. Also, it would be useful to me to have some old ("simpler") version of the project. – poseid – 2010-10-23T14:43:51.190
This is not quite programming related. I’ll shift it to http://superuser.com/.
– Gumbo – 2010-10-23T14:39:17.727