How to install sqlite from source on Mac?

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?

poseid

Posted 2010-10-23T14:33:45.300

Reputation: 437

This is not quite programming related. I’ll shift it to http://superuser.com/.

– Gumbo – 2010-10-23T14:39:17.727

Answers

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:

  1. cd into the source directory
  2. Run the configuration script to make makefiles for your environment: ./configure
  3. Run make
  4. Run make install -- typically using sudo to gain the permissions you need: sudo make install

Doug Harris

Posted 2010-10-23T14:33:45.300

Reputation: 23 578

2

I would recommend you to take a look at MacPorts project. You could build SQLite from sources using MacPorts.

Pablo Santa Cruz

Posted 2010-10-23T14:33:45.300

Reputation: 1 625

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