~ubuntu-branches/ubuntu/maverick/sqlite3/maverick-updates

« back to all changes in this revision

Viewing changes to mkextu.sh

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2008-10-01 20:16:18 UTC
  • mfrom: (3.1.20 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081001201618-yfvqqj1qs29wdtcc
Tags: 3.5.9-5
Backport fix for distinct on indexes (closes: #500792).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This script is used to compile SQLite into a shared library on Linux.
 
4
#
 
5
# Two separate shared libraries are generated.  "sqlite3.so" is the core
 
6
# library.  "tclsqlite3.so" contains the TCL bindings and is the
 
7
# library that is loaded into TCL in order to run SQLite.
 
8
#
 
9
CFLAGS=-O2 -Wall
 
10
make fts2amal.c
 
11
echo gcc $CFLAGS -shared fts2amal.c -o fts2.so
 
12
gcc $CFLAGS -shared fts2amal.c -o fts2.so
 
13
strip fts2.so