Annotation of sql/sqlite/INSTALL, revision 1.2

1.1       misha       1: 0.Assuming your perform your builds in $D directory 
                      2:   and suggested subdirectories.
                      3: 
                      4: 1.What is the process to compile Parser3 SQLite driver? 
                      5: 
                      6:   You sould have SQLite client software and include files installed.
                      7: 
                      8:   As most UNIX libraries Parser3 SQLite driver follows the "standard":
                      9: 
                     10:   cd $D/parser3project
                     11:   mkdir sql
                     12:   cd sql
                     13:   gunzip -c parser3sqlite-x.x.tar.gz | tar xvf -
                     14:   cd parser3sqlite-x.x
                     15:   ./configure --prefix=$HOME/parser3install --silent
                     16:   make
                     17: 
                     18: 
                     19:   In case configure could not find directory with your 
                     20:   SQLite client software include files, specify it with
                     21:     --with-sqlite-inc=DIR        DIR is the SQLite includes directory
                     22:   option.
                     23:   
                     24: 2.What is the process to install Parser3 SQLite driver?
                     25: 
                     26:   make install
                     27: 
                     28:   Installation layout:
                     29:     $prefix/lib/
                     30:       libparser3sqlite.x     -- driver's dynamic library
                     31: 
                     32:   NOTE:
                     33:   make sure that Parser3 main configuration file, 
                     34:        $prefix/etc/auto.p
                     35:   has in $SQL[...] configuration section a line like this:
                     36: 
1.2     ! misha      37: sqlite $sqldriversdir/libparser3sqlite.so      /usr/local/lib/sqlite/sqlite3.so
1.1       misha      38: 
                     39:   which specifies 
                     40:     protocol name
                     41:     path to Parser 'libparser3sqlite' dynamic library
                     42:     path to SQLite client 'sqlite' dynamic library
                     43:       [you sould have it from from your SQLite client installation]
                     44: 
                     45:  
                     46: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
                     47: 
1.2     ! misha      48: $Id: INSTALL,v 1.1 2007/02/20 10:46:56 misha Exp $

E-mail: