Put in the new LIBTOOL build system. (CVS 271)
FossilOrigin-Name: 00575d167aea567bc38f8a329aeff7b814eb91c8
This commit is contained in:
parent
743daaafd4
commit
71eb93eaa3
136
Makefile.in
136
Makefile.in
@ -28,10 +28,11 @@ BCC = @BUILD_CC@ @BUILD_CFLAGS@
|
|||||||
#
|
#
|
||||||
TCC = @TARGET_CC@ @TARGET_CFLAGS@ -I. -I${TOP}/src
|
TCC = @TARGET_CC@ @TARGET_CFLAGS@ -I. -I${TOP}/src
|
||||||
|
|
||||||
# Tools used to build a static library.
|
# Some standard variables and programs
|
||||||
#
|
#
|
||||||
AR = @TARGET_AR@
|
prefix = @prefix@
|
||||||
RANLIB = @TARGET_RANLIB@
|
INSTALL = @INSTALL@
|
||||||
|
LIBTOOL = ./libtool
|
||||||
|
|
||||||
# Compiler options needed for programs that use the TCL library.
|
# Compiler options needed for programs that use the TCL library.
|
||||||
#
|
#
|
||||||
@ -60,9 +61,9 @@ ENCODING = @ENCODING@
|
|||||||
|
|
||||||
# Object files for the SQLite library.
|
# Object files for the SQLite library.
|
||||||
#
|
#
|
||||||
LIBOBJ = btree.o build.o delete.o expr.o hash.o insert.o \
|
LIBOBJ = btree.lo build.lo delete.lo expr.lo hash.lo insert.lo \
|
||||||
main.o os.o pager.o parse.o printf.o random.o select.o table.o \
|
main.lo os.lo pager.lo parse.lo printf.lo random.lo select.lo \
|
||||||
tokenize.o update.o util.o vdbe.o where.o tclsqlite.o
|
table.lo tokenize.lo update.lo util.lo vdbe.lo where.lo
|
||||||
|
|
||||||
# All of the source code files.
|
# All of the source code files.
|
||||||
#
|
#
|
||||||
@ -107,7 +108,7 @@ TESTSRC = \
|
|||||||
# This is the default Makefile target. The objects listed here
|
# This is the default Makefile target. The objects listed here
|
||||||
# are what get build when you type just "make" with no arguments.
|
# are what get build when you type just "make" with no arguments.
|
||||||
#
|
#
|
||||||
all: sqlite.h libsqlite.a sqlite
|
all: sqlite.h libsqlite.la sqlite
|
||||||
|
|
||||||
# Generate the file "last_change" which contains the date of change
|
# Generate the file "last_change" which contains the date of change
|
||||||
# of the most recently modified source code file
|
# of the most recently modified source code file
|
||||||
@ -116,13 +117,16 @@ last_change: $(SRC)
|
|||||||
cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \
|
cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \
|
||||||
| awk '{print $$5,$$6}' >last_change
|
| awk '{print $$5,$$6}' >last_change
|
||||||
|
|
||||||
libsqlite.a: $(LIBOBJ)
|
libsqlite.la: $(LIBOBJ)
|
||||||
$(AR) libsqlite.a $(LIBOBJ)
|
$(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(prefix)/lib
|
||||||
$(RANLIB) libsqlite.a
|
|
||||||
|
|
||||||
sqlite: $(TOP)/src/shell.c libsqlite.a sqlite.h
|
libtclsqlite.la: $(LIBOBJ) tclsqlite.lo
|
||||||
$(TCC) $(READLINE_FLAGS) -o sqlite $(TOP)/src/shell.c \
|
$(LIBTOOL) $(TCC) -o libtclsqlite.la $(LIBOBJ) tclsqlite.lo \
|
||||||
libsqlite.a $(LIBREADLINE)
|
$(LIBTCL) -rpath $(prefix)/lib
|
||||||
|
|
||||||
|
sqlite: $(TOP)/src/shell.c libsqlite.la sqlite.h
|
||||||
|
$(LIBTOOL) $(TCC) $(READLINE_FLAGS) -o sqlite $(TOP)/src/shell.c \
|
||||||
|
libsqlite.la $(LIBREADLINE)
|
||||||
|
|
||||||
# Rules to build the LEMON compiler generator
|
# Rules to build the LEMON compiler generator
|
||||||
#
|
#
|
||||||
@ -140,23 +144,23 @@ HDR = \
|
|||||||
$(TOP)/src/vdbe.h \
|
$(TOP)/src/vdbe.h \
|
||||||
parse.h
|
parse.h
|
||||||
|
|
||||||
btree.o: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h
|
btree.lo: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h
|
||||||
$(TCC) -c $(TOP)/src/btree.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/btree.c
|
||||||
|
|
||||||
build.o: $(TOP)/src/build.c $(HDR)
|
build.lo: $(TOP)/src/build.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/build.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/build.c
|
||||||
|
|
||||||
main.o: $(TOP)/src/main.c $(HDR)
|
main.lo: $(TOP)/src/main.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/main.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/main.c
|
||||||
|
|
||||||
pager.o: $(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h
|
pager.lo: $(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h
|
||||||
$(TCC) -c $(TOP)/src/pager.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/pager.c
|
||||||
|
|
||||||
os.o: $(TOP)/src/os.c $(HDR)
|
os.lo: $(TOP)/src/os.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/os.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/os.c
|
||||||
|
|
||||||
parse.o: parse.c $(HDR)
|
parse.lo: parse.c $(HDR)
|
||||||
$(TCC) -c parse.c
|
$(LIBTOOL) $(TCC) -c parse.c
|
||||||
|
|
||||||
parse.h: parse.c
|
parse.h: parse.c
|
||||||
|
|
||||||
@ -169,56 +173,56 @@ sqlite.h: $(TOP)/src/sqlite.h.in
|
|||||||
-e s/--ENCODING--/$(ENCODING)/ \
|
-e s/--ENCODING--/$(ENCODING)/ \
|
||||||
$(TOP)/src/sqlite.h.in >sqlite.h
|
$(TOP)/src/sqlite.h.in >sqlite.h
|
||||||
|
|
||||||
tokenize.o: $(TOP)/src/tokenize.c $(HDR)
|
tokenize.lo: $(TOP)/src/tokenize.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/tokenize.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/tokenize.c
|
||||||
|
|
||||||
util.o: $(TOP)/src/util.c $(HDR)
|
util.lo: $(TOP)/src/util.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/util.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/util.c
|
||||||
|
|
||||||
vdbe.o: $(TOP)/src/vdbe.c $(HDR)
|
vdbe.lo: $(TOP)/src/vdbe.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/vdbe.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/vdbe.c
|
||||||
|
|
||||||
where.o: $(TOP)/src/where.c $(HDR)
|
where.lo: $(TOP)/src/where.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/where.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/where.c
|
||||||
|
|
||||||
delete.o: $(TOP)/src/delete.c $(HDR)
|
delete.lo: $(TOP)/src/delete.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/delete.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/delete.c
|
||||||
|
|
||||||
expr.o: $(TOP)/src/expr.c $(HDR)
|
expr.lo: $(TOP)/src/expr.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/expr.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/expr.c
|
||||||
|
|
||||||
hash.o: $(TOP)/src/hash.c $(HDR)
|
hash.lo: $(TOP)/src/hash.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/hash.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/hash.c
|
||||||
|
|
||||||
insert.o: $(TOP)/src/insert.c $(HDR)
|
insert.lo: $(TOP)/src/insert.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/insert.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/insert.c
|
||||||
|
|
||||||
random.o: $(TOP)/src/random.c $(HDR)
|
random.lo: $(TOP)/src/random.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/random.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/random.c
|
||||||
|
|
||||||
select.o: $(TOP)/src/select.c $(HDR)
|
select.lo: $(TOP)/src/select.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/select.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/select.c
|
||||||
|
|
||||||
table.o: $(TOP)/src/table.c $(HDR)
|
table.lo: $(TOP)/src/table.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/table.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/table.c
|
||||||
|
|
||||||
update.o: $(TOP)/src/update.c $(HDR)
|
update.lo: $(TOP)/src/update.c $(HDR)
|
||||||
$(TCC) -c $(TOP)/src/update.c
|
$(LIBTOOL) $(TCC) -c $(TOP)/src/update.c
|
||||||
|
|
||||||
tclsqlite.o: $(TOP)/src/tclsqlite.c $(HDR)
|
tclsqlite.lo: $(TOP)/src/tclsqlite.c $(HDR)
|
||||||
$(TCC) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c
|
||||||
|
|
||||||
printf.o: $(TOP)/src/printf.c $(HDR)
|
printf.lo: $(TOP)/src/printf.c $(HDR)
|
||||||
$(TCC) $(TCL_FLAGS) -c $(TOP)/src/printf.c
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -c $(TOP)/src/printf.c
|
||||||
|
|
||||||
tclsqlite: $(TOP)/src/tclsqlite.c libsqlite.a
|
tclsqlite: $(TOP)/src/tclsqlite.c libsqlite.la
|
||||||
$(TCC) $(TCL_FLAGS) -DTCLSH=1 -o tclsqlite \
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -DTCLSH=1 -o tclsqlite \
|
||||||
$(TOP)/src/tclsqlite.c libsqlite.a $(LIBTCL)
|
$(TOP)/src/tclsqlite.c libsqlite.la $(LIBTCL)
|
||||||
|
|
||||||
testfixture: $(TOP)/src/tclsqlite.c libsqlite.a $(TESTSRC)
|
testfixture: $(TOP)/src/tclsqlite.c libtclsqlite.la $(TESTSRC)
|
||||||
$(TCC) $(TCL_FLAGS) -DTCLSH=1 -DSQLITE_TEST=1 -o testfixture \
|
$(LIBTOOL) $(TCC) $(TCL_FLAGS) -DTCLSH=1 -DSQLITE_TEST=1\
|
||||||
$(TESTSRC) $(TOP)/src/tclsqlite.c \
|
-o testfixture $(TESTSRC) $(TOP)/src/tclsqlite.c \
|
||||||
libsqlite.a $(LIBTCL)
|
libtclsqlite.la $(LIBTCL)
|
||||||
|
|
||||||
fulltest: testfixture sqlite
|
fulltest: testfixture sqlite
|
||||||
./testfixture $(TOP)/test/all.test
|
./testfixture $(TOP)/test/all.test
|
||||||
@ -294,13 +298,15 @@ publish: $(PUBLISH)
|
|||||||
chmod 0644 $(PUBLISH) sqlite-*.tar.gz
|
chmod 0644 $(PUBLISH) sqlite-*.tar.gz
|
||||||
scp $(PUBLISH) sqlite-*.tar.gz hwaci@oak.he.net:public_html/sw/sqlite
|
scp $(PUBLISH) sqlite-*.tar.gz hwaci@oak.he.net:public_html/sw/sqlite
|
||||||
|
|
||||||
install: sqlite libsqlite.a sqlite.h
|
install: sqlite libsqlite.la sqlite.h
|
||||||
mv sqlite /usr/bin
|
$(LIBTOOL) $(INSTALL) libsqlite.la $(prefix)/lib
|
||||||
mv libsqlite.a /usr/lib
|
$(LIBTOOL) $(INSTALL) sqlite $(prefix)/bin
|
||||||
mv sqlite.h /usr/include
|
$(INSTALL) sqlite.h $(prefix)/include
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o sqlite libsqlite.a sqlite.h
|
rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h
|
||||||
|
rm -rf .libs .deps
|
||||||
rm -f lemon lempar.c parse.* sqlite.tar.gz
|
rm -f lemon lempar.c parse.* sqlite.tar.gz
|
||||||
rm -f $(PUBLISH)
|
rm -f $(PUBLISH)
|
||||||
rm -f *.da *.bb *.bbg gmon.out
|
rm -f *.da *.bb *.bbg gmon.out
|
||||||
|
rm -f testfixture test.db
|
||||||
|
365
Makefile.template
Normal file
365
Makefile.template
Normal file
@ -0,0 +1,365 @@
|
|||||||
|
#!/usr/make
|
||||||
|
#
|
||||||
|
# Makefile for SQLITE
|
||||||
|
#
|
||||||
|
# This is a template makefile for SQLite. Most people prefer to
|
||||||
|
# use the autoconf generated "configure" script to generate the
|
||||||
|
# makefile automatically. But that does not work for everybody
|
||||||
|
# and in every situation. If you are having problems with the
|
||||||
|
# "configure" script, you might want to try this makefile as an
|
||||||
|
# alternative. Create a copy of this file, edit the parameters
|
||||||
|
# below and type "make".
|
||||||
|
#
|
||||||
|
|
||||||
|
#### The toplevel directory of the source tree. This is the directory
|
||||||
|
# that contains this "Makefile.in" and the "configure.in" script.
|
||||||
|
#
|
||||||
|
TOP = ../sqlite
|
||||||
|
|
||||||
|
#### C Compiler and options for use in building executables that
|
||||||
|
# will run on the platform that is doing the build.
|
||||||
|
#
|
||||||
|
BCC = gcc -g -O2
|
||||||
|
|
||||||
|
#### If the target operating system supports the "usleep()" system
|
||||||
|
# call, then define the HAVE_USLEEP macro for all C modules.
|
||||||
|
#
|
||||||
|
#USLEEP =
|
||||||
|
USLEEP = -DHAVE_USLEEP=1
|
||||||
|
|
||||||
|
#### Leave MEMORY_DEBUG undefined for maximum speed. Use MEMORY_DEBUG=1
|
||||||
|
# to check for memory leaks. Use MEMORY_DEBUG=2 to print a log of all
|
||||||
|
# malloc()s and free()s in order to track down memory leaks.
|
||||||
|
#
|
||||||
|
# SQLite uses some expensive assert() statements in the inner loop.
|
||||||
|
# You can make the library go almost twice as fast if you compile
|
||||||
|
# with -DNDEBUG=1
|
||||||
|
#
|
||||||
|
#OPTS = -DMEMORY_DEBUG=2
|
||||||
|
#OPTS = -DMEMORY_DEBUG=1
|
||||||
|
#OPTS =
|
||||||
|
OPTS = -DNDEBUG=1
|
||||||
|
|
||||||
|
#### Compiler flags that change according to the operating system.
|
||||||
|
#
|
||||||
|
#OSFLAGS = -DOS_UNIX=0 -DOS_WIN=1
|
||||||
|
OSFLAGS = -DOS_UNIX=1 -DOS_WIN=0
|
||||||
|
|
||||||
|
#### The suffix to add to executable files. ".exe" for windows.
|
||||||
|
# Nothing for unix.
|
||||||
|
#
|
||||||
|
#EXE = .exe
|
||||||
|
EXE =
|
||||||
|
|
||||||
|
#### C Compile and options for use in building executables that
|
||||||
|
# will run on the target platform. This is usually the same
|
||||||
|
# as BCC, unless you are cross-compiling.
|
||||||
|
#
|
||||||
|
TCC = gcc -O6
|
||||||
|
#TCC = gcc -g -O0 -Wall
|
||||||
|
#TCC = /opt/mingw/bin/i386-mingw32-gcc -O6
|
||||||
|
|
||||||
|
#### Tools used to build a static library.
|
||||||
|
#
|
||||||
|
AR = ar cr
|
||||||
|
#AR = /opt/mingw/bin/i386-mingw32-ar cr
|
||||||
|
RANLIB = ranlib
|
||||||
|
#RANLIB = /opt/mingw/bin/i386-mingw32-ranlib
|
||||||
|
|
||||||
|
#### Extra compiler options needed for programs that use the TCL library.
|
||||||
|
#
|
||||||
|
#TCL_FLAGS =
|
||||||
|
#TCL_FLAGS = -DSTATIC_BUILD=1
|
||||||
|
TCL_FLAGS = -I/home/drh/tcltk/8.4linux
|
||||||
|
#TCL_FLAGS = -I/home/drh/tcltk/8.4win -DSTATIC_BUILD=1
|
||||||
|
|
||||||
|
#### Linker options needed to link against the TCL library.
|
||||||
|
#
|
||||||
|
#LIBTCL = -ltcl -lm -ldl
|
||||||
|
LIBTCL = /home/drh/tcltk/8.4linux/libtcl8.4g.a -lm -ldl
|
||||||
|
#LIBTCL = /home/drh/tcltk/8.4win/libtcl84s.a -lmsvcrt
|
||||||
|
|
||||||
|
#### Compiler options needed for programs that use the readline() library.
|
||||||
|
#
|
||||||
|
#READLINE_FLAGS =
|
||||||
|
READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/include/readline
|
||||||
|
|
||||||
|
#### Linker options needed by programs using readline() must link against.
|
||||||
|
#
|
||||||
|
#LIBREADLINE =
|
||||||
|
LIBREADLINE = -lreadline
|
||||||
|
|
||||||
|
#### Should the database engine assume text is coded as UTF-8 or iso8859?
|
||||||
|
#
|
||||||
|
# ENCODING = UTF8
|
||||||
|
ENCODING = ISO8859
|
||||||
|
|
||||||
|
# You should not have to change anything below this line
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
# This is how we compile
|
||||||
|
#
|
||||||
|
TCCX = $(TCC) $(OPTS) $(OSFLAGS) $(USLEEP) -I. -I$(TOP)/src
|
||||||
|
|
||||||
|
# Object files for the SQLite library.
|
||||||
|
#
|
||||||
|
LIBOBJ = btree.o build.o delete.o expr.o hash.o insert.o \
|
||||||
|
main.o os.o pager.o parse.o printf.o random.o select.o table.o \
|
||||||
|
tokenize.o update.o util.o vdbe.o where.o tclsqlite.o
|
||||||
|
|
||||||
|
# All of the source code files.
|
||||||
|
#
|
||||||
|
SRC = \
|
||||||
|
$(TOP)/src/btree.c \
|
||||||
|
$(TOP)/src/btree.h \
|
||||||
|
$(TOP)/src/build.c \
|
||||||
|
$(TOP)/src/delete.c \
|
||||||
|
$(TOP)/src/expr.c \
|
||||||
|
$(TOP)/src/hash.c \
|
||||||
|
$(TOP)/src/hash.h \
|
||||||
|
$(TOP)/src/insert.c \
|
||||||
|
$(TOP)/src/main.c \
|
||||||
|
$(TOP)/src/os.c \
|
||||||
|
$(TOP)/src/pager.c \
|
||||||
|
$(TOP)/src/pager.h \
|
||||||
|
$(TOP)/src/parse.y \
|
||||||
|
$(TOP)/src/printf.c \
|
||||||
|
$(TOP)/src/random.c \
|
||||||
|
$(TOP)/src/select.c \
|
||||||
|
$(TOP)/src/shell.c \
|
||||||
|
$(TOP)/src/sqlite.h.in \
|
||||||
|
$(TOP)/src/sqliteInt.h \
|
||||||
|
$(TOP)/src/table.c \
|
||||||
|
$(TOP)/src/tclsqlite.c \
|
||||||
|
$(TOP)/src/tokenize.c \
|
||||||
|
$(TOP)/src/update.c \
|
||||||
|
$(TOP)/src/util.c \
|
||||||
|
$(TOP)/src/vdbe.c \
|
||||||
|
$(TOP)/src/vdbe.h \
|
||||||
|
$(TOP)/src/where.c
|
||||||
|
|
||||||
|
# Source code to the test files.
|
||||||
|
#
|
||||||
|
TESTSRC = \
|
||||||
|
$(TOP)/src/btree.c \
|
||||||
|
$(TOP)/src/pager.c \
|
||||||
|
$(TOP)/src/test1.c \
|
||||||
|
$(TOP)/src/test2.c \
|
||||||
|
$(TOP)/src/test3.c \
|
||||||
|
$(TOP)/src/md5.c
|
||||||
|
|
||||||
|
# Header files used by all library source files.
|
||||||
|
#
|
||||||
|
HDR = \
|
||||||
|
sqlite.h \
|
||||||
|
$(TOP)/src/btree.h \
|
||||||
|
$(TOP)/src/hash.h \
|
||||||
|
$(TOP)/src/os.h \
|
||||||
|
$(TOP)/src/sqliteInt.h \
|
||||||
|
$(TOP)/src/vdbe.h \
|
||||||
|
parse.h
|
||||||
|
|
||||||
|
# This is the default Makefile target. The objects listed here
|
||||||
|
# are what get build when you type just "make" with no arguments.
|
||||||
|
#
|
||||||
|
all: sqlite.h libsqlite.a sqlite$(EXE)
|
||||||
|
|
||||||
|
# Generate the file "last_change" which contains the date of change
|
||||||
|
# of the most recently modified source code file
|
||||||
|
#
|
||||||
|
last_change: $(SRC)
|
||||||
|
cat $(SRC) | grep '$$Id: ' | sort +4 | tail -1 \
|
||||||
|
| awk '{print $$5,$$6}' >last_change
|
||||||
|
|
||||||
|
libsqlite.a: $(LIBOBJ) tclsqlite.o
|
||||||
|
$(AR) libsqlite.a $(LIBOBJ) tclsqlite.o
|
||||||
|
$(RANLIB) libsqlite.a
|
||||||
|
|
||||||
|
sqlite$(EXE): $(TOP)/src/shell.c libsqlite.a sqlite.h
|
||||||
|
$(TCCX) $(READLINE_FLAGS) -o sqlite$(EXE) $(TOP)/src/shell.c \
|
||||||
|
libsqlite.a $(LIBREADLINE)
|
||||||
|
|
||||||
|
# This target creates a directory named "tsrc" and fills it with
|
||||||
|
# copies of all of the C source code and header files needed to
|
||||||
|
# build on the target system. Some of the C source code and header
|
||||||
|
# files are automatically generated. This target takes care of
|
||||||
|
# all that automatic generation.
|
||||||
|
#
|
||||||
|
target_source: $(SRC) $(HDR)
|
||||||
|
rm -rf tsrc
|
||||||
|
mkdir tsrc
|
||||||
|
cp $(SRC) $(HDR) tsrc
|
||||||
|
rm tsrc/sqlite.h.in tsrc/parse.y
|
||||||
|
cp parse.c tsrc
|
||||||
|
|
||||||
|
# Rules to build the LEMON compiler generator
|
||||||
|
#
|
||||||
|
lemon: $(TOP)/tool/lemon.c $(TOP)/tool/lempar.c
|
||||||
|
$(BCC) -o lemon $(TOP)/tool/lemon.c
|
||||||
|
cp $(TOP)/tool/lempar.c .
|
||||||
|
|
||||||
|
btree.o: $(TOP)/src/btree.c $(HDR) $(TOP)/src/pager.h
|
||||||
|
$(TCCX) -c $(TOP)/src/btree.c
|
||||||
|
|
||||||
|
build.o: $(TOP)/src/build.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/build.c
|
||||||
|
|
||||||
|
main.o: $(TOP)/src/main.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/main.c
|
||||||
|
|
||||||
|
pager.o: $(TOP)/src/pager.c $(HDR) $(TOP)/src/pager.h
|
||||||
|
$(TCCX) -c $(TOP)/src/pager.c
|
||||||
|
|
||||||
|
os.o: $(TOP)/src/os.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/os.c
|
||||||
|
|
||||||
|
parse.o: parse.c $(HDR)
|
||||||
|
$(TCCX) -c parse.c
|
||||||
|
|
||||||
|
parse.h: parse.c
|
||||||
|
|
||||||
|
parse.c: $(TOP)/src/parse.y lemon
|
||||||
|
cp $(TOP)/src/parse.y .
|
||||||
|
./lemon parse.y
|
||||||
|
|
||||||
|
sqlite.h: $(TOP)/src/sqlite.h.in
|
||||||
|
sed -e s/--VERS--/`cat ${TOP}/VERSION`/ \
|
||||||
|
-e s/--ENCODING--/$(ENCODING)/ \
|
||||||
|
$(TOP)/src/sqlite.h.in >sqlite.h
|
||||||
|
|
||||||
|
tokenize.o: $(TOP)/src/tokenize.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/tokenize.c
|
||||||
|
|
||||||
|
util.o: $(TOP)/src/util.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/util.c
|
||||||
|
|
||||||
|
vdbe.o: $(TOP)/src/vdbe.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/vdbe.c
|
||||||
|
|
||||||
|
where.o: $(TOP)/src/where.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/where.c
|
||||||
|
|
||||||
|
delete.o: $(TOP)/src/delete.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/delete.c
|
||||||
|
|
||||||
|
expr.o: $(TOP)/src/expr.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/expr.c
|
||||||
|
|
||||||
|
hash.o: $(TOP)/src/hash.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/hash.c
|
||||||
|
|
||||||
|
insert.o: $(TOP)/src/insert.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/insert.c
|
||||||
|
|
||||||
|
random.o: $(TOP)/src/random.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/random.c
|
||||||
|
|
||||||
|
select.o: $(TOP)/src/select.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/select.c
|
||||||
|
|
||||||
|
table.o: $(TOP)/src/table.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/table.c
|
||||||
|
|
||||||
|
update.o: $(TOP)/src/update.c $(HDR)
|
||||||
|
$(TCCX) -c $(TOP)/src/update.c
|
||||||
|
|
||||||
|
tclsqlite.o: $(TOP)/src/tclsqlite.c $(HDR)
|
||||||
|
$(TCCX) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c
|
||||||
|
|
||||||
|
printf.o: $(TOP)/src/printf.c $(HDR)
|
||||||
|
$(TCCX) $(TCL_FLAGS) -c $(TOP)/src/printf.c
|
||||||
|
|
||||||
|
tclsqlite: $(TOP)/src/tclsqlite.c libsqlite.a
|
||||||
|
$(TCCX) $(TCL_FLAGS) -DTCLSH=1 -o tclsqlite \
|
||||||
|
$(TOP)/src/tclsqlite.c libsqlite.a $(LIBTCL)
|
||||||
|
|
||||||
|
testfixture$(EXE): $(TOP)/src/tclsqlite.c libsqlite.a $(TESTSRC)
|
||||||
|
$(TCCX) $(TCL_FLAGS) -DTCLSH=1 -DSQLITE_TEST=1 -o testfixture$(EXE) \
|
||||||
|
$(TESTSRC) $(TOP)/src/tclsqlite.c \
|
||||||
|
libsqlite.a $(LIBTCL)
|
||||||
|
|
||||||
|
fulltest: testfixture$(EXE) sqlite$(EXE)
|
||||||
|
./testfixture$(EXE) $(TOP)/test/all.test
|
||||||
|
|
||||||
|
test: testfixture$(EXE) sqlite$(EXE)
|
||||||
|
./testfixture$(EXE) $(TOP)/test/quick.test
|
||||||
|
|
||||||
|
sqlite.tar.gz:
|
||||||
|
pwd=`pwd`; cd $(TOP)/..; tar czf $$pwd/sqlite.tar.gz sqlite
|
||||||
|
|
||||||
|
index.html: $(TOP)/www/index.tcl sqlite.tar.gz last_change
|
||||||
|
cp ../sqlite-*.tar.gz .
|
||||||
|
tclsh $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
|
||||||
|
|
||||||
|
sqlite.html: $(TOP)/www/sqlite.tcl
|
||||||
|
tclsh $(TOP)/www/sqlite.tcl >sqlite.html
|
||||||
|
|
||||||
|
c_interface.html: $(TOP)/www/c_interface.tcl
|
||||||
|
tclsh $(TOP)/www/c_interface.tcl >c_interface.html
|
||||||
|
|
||||||
|
changes.html: $(TOP)/www/changes.tcl
|
||||||
|
tclsh $(TOP)/www/changes.tcl >changes.html
|
||||||
|
|
||||||
|
lang.html: $(TOP)/www/lang.tcl
|
||||||
|
tclsh $(TOP)/www/lang.tcl >lang.html
|
||||||
|
|
||||||
|
vdbe.html: $(TOP)/www/vdbe.tcl
|
||||||
|
tclsh $(TOP)/www/vdbe.tcl >vdbe.html
|
||||||
|
|
||||||
|
arch.html: $(TOP)/www/arch.tcl
|
||||||
|
tclsh $(TOP)/www/arch.tcl >arch.html
|
||||||
|
|
||||||
|
arch.png: $(TOP)/www/arch.png
|
||||||
|
cp $(TOP)/www/arch.png .
|
||||||
|
|
||||||
|
opcode.html: $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
|
||||||
|
tclsh $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
|
||||||
|
|
||||||
|
crosscompile.html: $(TOP)/www/crosscompile.tcl
|
||||||
|
tclsh $(TOP)/www/crosscompile.tcl >crosscompile.html
|
||||||
|
|
||||||
|
mingw.html: $(TOP)/www/mingw.tcl
|
||||||
|
tclsh $(TOP)/www/mingw.tcl >mingw.html
|
||||||
|
|
||||||
|
tclsqlite.html: $(TOP)/www/tclsqlite.tcl
|
||||||
|
tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
|
||||||
|
|
||||||
|
speed.html: $(TOP)/www/speed.tcl
|
||||||
|
tclsh $(TOP)/www/speed.tcl >speed.html
|
||||||
|
|
||||||
|
|
||||||
|
# Files to be published on the website.
|
||||||
|
#
|
||||||
|
PUBLISH = \
|
||||||
|
sqlite.tar.gz \
|
||||||
|
index.html \
|
||||||
|
sqlite.html \
|
||||||
|
changes.html \
|
||||||
|
lang.html \
|
||||||
|
opcode.html \
|
||||||
|
arch.html \
|
||||||
|
arch.png \
|
||||||
|
vdbe.html \
|
||||||
|
c_interface.html \
|
||||||
|
crosscompile.html \
|
||||||
|
mingw.html \
|
||||||
|
tclsqlite.html \
|
||||||
|
speed.html
|
||||||
|
|
||||||
|
website: $(PUBLISH)
|
||||||
|
|
||||||
|
publish: $(PUBLISH)
|
||||||
|
chmod 0644 $(PUBLISH) sqlite-*.tar.gz
|
||||||
|
scp $(PUBLISH) sqlite-*.tar.gz hwaci@oak.he.net:public_html/sw/sqlite
|
||||||
|
|
||||||
|
install: sqlite libsqlite.a sqlite.h
|
||||||
|
mv sqlite /usr/bin
|
||||||
|
mv libsqlite.a /usr/lib
|
||||||
|
mv sqlite.h /usr/include
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o sqlite libsqlite.a sqlite.h
|
||||||
|
rm -f lemon lempar.c parse.* sqlite.tar.gz
|
||||||
|
rm -f $(PUBLISH)
|
||||||
|
rm -f *.da *.bb *.bbg gmon.out
|
||||||
|
rm -rf tsrc
|
33
README
33
README
@ -1,12 +1,12 @@
|
|||||||
This directory contains source code to
|
This directory contains source code to
|
||||||
|
|
||||||
SQLite: An SQL Database Built Upon GDBM
|
SQLite: An SQL Database Engine in a C Library
|
||||||
|
|
||||||
To compile the project, first create a directory in which to place
|
To compile the project, first create a directory in which to place
|
||||||
the build products. The build directory must be separate from the
|
the build products. It is recommended, but not required, that the
|
||||||
source tree. Cd into the build directory and then from the build
|
build directory be separate from the source directory. Cd into the
|
||||||
directory run the configure script found at the root of the source
|
build directory and then from the build directory run the configure
|
||||||
tree. Then run "make".
|
script found at the root of the source tree. Then run "make".
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
@ -16,21 +16,8 @@ For example:
|
|||||||
../sqlite/configure ;# Run the configure script
|
../sqlite/configure ;# Run the configure script
|
||||||
make ;# Run the makefile.
|
make ;# Run the makefile.
|
||||||
|
|
||||||
The primary build products are left in the build directory. The
|
The configure script uses autoconf 2.50 and libtool. If the configure
|
||||||
primary build products are:
|
script does not work out for you, there is a generic makefile named
|
||||||
|
"Makefile.template" in the top directory of the source tree that you
|
||||||
libsqlite.a The SQLite library file
|
can copy and edit to suite your needs. Comments on the generic makefile
|
||||||
|
show what changes are needed.
|
||||||
sqlite.h A header file for SQLite
|
|
||||||
|
|
||||||
sqlite Command line program for accessing SQLite databases
|
|
||||||
|
|
||||||
There are some other make targets of interest:
|
|
||||||
|
|
||||||
|
|
||||||
make test This runs a regression test on the library.
|
|
||||||
|
|
||||||
make gdbmdump This builds a utility named "gdbmdump" that
|
|
||||||
writes out the contents of a GDBM file in a
|
|
||||||
readable format. It is useful for testing and
|
|
||||||
debugging the library.
|
|
||||||
|
5158
aclocal.m4
vendored
Normal file
5158
aclocal.m4
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1317
config.guess
vendored
Normal file
1317
config.guess
vendored
Normal file
File diff suppressed because it is too large
Load Diff
171
config.log
Normal file
171
config.log
Normal file
@ -0,0 +1,171 @@
|
|||||||
|
This file contains any messages produced by compilers while
|
||||||
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
|
It was created by configure, which was
|
||||||
|
generated by GNU Autoconf 2.52. Invocation command line was
|
||||||
|
|
||||||
|
$ ./configure --disable-static
|
||||||
|
|
||||||
|
## ---------- ##
|
||||||
|
## Platform. ##
|
||||||
|
## ---------- ##
|
||||||
|
|
||||||
|
hostname = alice
|
||||||
|
uname -m = i686
|
||||||
|
uname -r = 2.4.7
|
||||||
|
uname -s = Linux
|
||||||
|
uname -v = #1 Sun Aug 5 19:04:40 CEST 2001
|
||||||
|
|
||||||
|
/usr/bin/uname -p = unknown
|
||||||
|
/bin/uname -X = unknown
|
||||||
|
|
||||||
|
/bin/arch = i686
|
||||||
|
/usr/bin/arch -k = unknown
|
||||||
|
/usr/convex/getsysinfo = unknown
|
||||||
|
hostinfo = unknown
|
||||||
|
/bin/machine = unknown
|
||||||
|
/usr/bin/oslevel = unknown
|
||||||
|
/bin/universe = unknown
|
||||||
|
|
||||||
|
PATH = /home/andy/bin:/usr/local/games:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games
|
||||||
|
|
||||||
|
## ------------ ##
|
||||||
|
## Core tests. ##
|
||||||
|
## ------------ ##
|
||||||
|
|
||||||
|
configure:1105: PATH=".;."; conftest.sh
|
||||||
|
./configure: conftest.sh: command not found
|
||||||
|
configure:1108: $? = 127
|
||||||
|
configure:1236: checking build system type
|
||||||
|
configure:1254: result: i686-pc-linux-gnu
|
||||||
|
|
||||||
|
## ----------------- ##
|
||||||
|
## Cache variables. ##
|
||||||
|
## ----------------- ##
|
||||||
|
|
||||||
|
ac_cv_build=i686-pc-linux-gnu
|
||||||
|
ac_cv_build_alias=i686-pc-linux-gnu
|
||||||
|
ac_cv_env_CC_set=
|
||||||
|
ac_cv_env_CC_value=
|
||||||
|
ac_cv_env_CFLAGS_set=
|
||||||
|
ac_cv_env_CFLAGS_value=
|
||||||
|
ac_cv_env_CPPFLAGS_set=
|
||||||
|
ac_cv_env_CPPFLAGS_value=
|
||||||
|
ac_cv_env_CPP_set=
|
||||||
|
ac_cv_env_CPP_value=
|
||||||
|
ac_cv_env_CXXCPP_set=
|
||||||
|
ac_cv_env_CXXCPP_value=
|
||||||
|
ac_cv_env_CXXFLAGS_set=
|
||||||
|
ac_cv_env_CXXFLAGS_value=
|
||||||
|
ac_cv_env_CXX_set=
|
||||||
|
ac_cv_env_CXX_value=
|
||||||
|
ac_cv_env_LDFLAGS_set=
|
||||||
|
ac_cv_env_LDFLAGS_value=
|
||||||
|
ac_cv_env_build_alias_set=
|
||||||
|
ac_cv_env_build_alias_value=
|
||||||
|
ac_cv_env_host_alias_set=
|
||||||
|
ac_cv_env_host_alias_value=
|
||||||
|
ac_cv_env_target_alias_set=
|
||||||
|
ac_cv_env_target_alias_value=
|
||||||
|
|
||||||
|
|
||||||
|
configure: caught signal 2
|
||||||
|
configure: exit 1
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by config.status 2.52, executed with
|
||||||
|
CONFIG_FILES =
|
||||||
|
CONFIG_HEADERS =
|
||||||
|
CONFIG_LINKS =
|
||||||
|
CONFIG_COMMANDS =
|
||||||
|
> ./config.status
|
||||||
|
on alice
|
||||||
|
|
||||||
|
config.status:14086: creating Makefile
|
476
config.status
Normal file
476
config.status
Normal file
@ -0,0 +1,476 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Generated automatically by configure.
|
||||||
|
# Run this file to recreate the current configuration.
|
||||||
|
# Compiler output produced by configure, useful for debugging
|
||||||
|
# configure, is in config.log if it exists.
|
||||||
|
|
||||||
|
debug=false
|
||||||
|
SHELL=${CONFIG_SHELL-/bin/sh}
|
||||||
|
ac_cs_invocation="$0 $@"
|
||||||
|
|
||||||
|
# Be Bourne compatible
|
||||||
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
||||||
|
emulate sh
|
||||||
|
NULLCMD=:
|
||||||
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
||||||
|
set -o posix
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Name of the executable.
|
||||||
|
as_me=`echo "$0" |sed 's,.*[\\/],,'`
|
||||||
|
|
||||||
|
if expr a : '\(a\)' >/dev/null 2>&1; then
|
||||||
|
as_expr=expr
|
||||||
|
else
|
||||||
|
as_expr=false
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f conf$$ conf$$.exe conf$$.file
|
||||||
|
echo >conf$$.file
|
||||||
|
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
||||||
|
# We could just check for DJGPP; but this test a) works b) is more generic
|
||||||
|
# and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
||||||
|
if test -f conf$$.exe; then
|
||||||
|
# Don't use ln at all; we don't have any links
|
||||||
|
as_ln_s='cp -p'
|
||||||
|
else
|
||||||
|
as_ln_s='ln -s'
|
||||||
|
fi
|
||||||
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
||||||
|
as_ln_s=ln
|
||||||
|
else
|
||||||
|
as_ln_s='cp -p'
|
||||||
|
fi
|
||||||
|
rm -f conf$$ conf$$.exe conf$$.file
|
||||||
|
|
||||||
|
as_executable_p="test -f"
|
||||||
|
|
||||||
|
# Support unset when possible.
|
||||||
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
||||||
|
as_unset=unset
|
||||||
|
else
|
||||||
|
as_unset=false
|
||||||
|
fi
|
||||||
|
|
||||||
|
# NLS nuisances.
|
||||||
|
$as_unset LANG || test "${LANG+set}" != set || { LANG=C; export LANG; }
|
||||||
|
$as_unset LC_ALL || test "${LC_ALL+set}" != set || { LC_ALL=C; export LC_ALL; }
|
||||||
|
$as_unset LC_TIME || test "${LC_TIME+set}" != set || { LC_TIME=C; export LC_TIME; }
|
||||||
|
$as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set || { LC_CTYPE=C; export LC_CTYPE; }
|
||||||
|
$as_unset LANGUAGE || test "${LANGUAGE+set}" != set || { LANGUAGE=C; export LANGUAGE; }
|
||||||
|
$as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set || { LC_COLLATE=C; export LC_COLLATE; }
|
||||||
|
$as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set || { LC_NUMERIC=C; export LC_NUMERIC; }
|
||||||
|
$as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set || { LC_MESSAGES=C; export LC_MESSAGES; }
|
||||||
|
|
||||||
|
# IFS
|
||||||
|
# We need space, tab and new line, in precisely that order.
|
||||||
|
as_nl='
|
||||||
|
'
|
||||||
|
IFS=" $as_nl"
|
||||||
|
|
||||||
|
# CDPATH.
|
||||||
|
$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=:; export CDPATH; }
|
||||||
|
|
||||||
|
exec 6>&1
|
||||||
|
|
||||||
|
config_files=" Makefile"
|
||||||
|
|
||||||
|
ac_cs_usage="\
|
||||||
|
\`$as_me' instantiates files from templates according to the
|
||||||
|
current configuration.
|
||||||
|
|
||||||
|
Usage: $0 [OPTIONS] [FILE]...
|
||||||
|
|
||||||
|
-h, --help print this help, then exit
|
||||||
|
-V, --version print version number, then exit
|
||||||
|
-d, --debug don't remove temporary files
|
||||||
|
--recheck update $as_me by reconfiguring in the same conditions
|
||||||
|
--file=FILE[:TEMPLATE]
|
||||||
|
instantiate the configuration file FILE
|
||||||
|
|
||||||
|
Configuration files:
|
||||||
|
$config_files
|
||||||
|
|
||||||
|
Report bugs to <bug-autoconf@gnu.org>."
|
||||||
|
ac_cs_version="\
|
||||||
|
config.status
|
||||||
|
configured by ./configure, generated by GNU Autoconf 2.52,
|
||||||
|
with options \"\"
|
||||||
|
|
||||||
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
||||||
|
Free Software Foundation, Inc.
|
||||||
|
This config.status script is free software; the Free Software Foundation
|
||||||
|
gives unlimited permission to copy, distribute and modify it."
|
||||||
|
srcdir=.
|
||||||
|
# If no file are specified by the user, then we need to provide default
|
||||||
|
# value. By we need to know if files were specified by the user.
|
||||||
|
ac_need_defaults=:
|
||||||
|
while test $# != 0
|
||||||
|
do
|
||||||
|
case $1 in
|
||||||
|
--*=*)
|
||||||
|
ac_option=`expr "x$1" : 'x\([^=]*\)='`
|
||||||
|
ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
|
||||||
|
shift
|
||||||
|
set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-*);;
|
||||||
|
*) # This is not an option, so the user has probably given explicit
|
||||||
|
# arguments.
|
||||||
|
ac_need_defaults=false;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
# Handling of the options.
|
||||||
|
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
||||||
|
echo "running /bin/sh ./configure " " --no-create --no-recursion"
|
||||||
|
exec /bin/sh ./configure --no-create --no-recursion ;;
|
||||||
|
--version | --vers* | -V )
|
||||||
|
echo "$ac_cs_version"; exit 0 ;;
|
||||||
|
--he | --h)
|
||||||
|
# Conflict between --help and --header
|
||||||
|
{ { echo "$as_me:13794: error: ambiguous option: $1
|
||||||
|
Try \`$0 --help' for more information." >&5
|
||||||
|
echo "$as_me: error: ambiguous option: $1
|
||||||
|
Try \`$0 --help' for more information." >&2;}
|
||||||
|
{ (exit 1); exit 1; }; };;
|
||||||
|
--help | --hel | -h )
|
||||||
|
echo "$ac_cs_usage"; exit 0 ;;
|
||||||
|
--debug | --d* | -d )
|
||||||
|
debug=: ;;
|
||||||
|
--file | --fil | --fi | --f )
|
||||||
|
shift
|
||||||
|
CONFIG_FILES="$CONFIG_FILES $1"
|
||||||
|
ac_need_defaults=false;;
|
||||||
|
--header | --heade | --head | --hea )
|
||||||
|
shift
|
||||||
|
CONFIG_HEADERS="$CONFIG_HEADERS $1"
|
||||||
|
ac_need_defaults=false;;
|
||||||
|
|
||||||
|
# This is an error.
|
||||||
|
-*) { { echo "$as_me:13813: error: unrecognized option: $1
|
||||||
|
Try \`$0 --help' for more information." >&5
|
||||||
|
echo "$as_me: error: unrecognized option: $1
|
||||||
|
Try \`$0 --help' for more information." >&2;}
|
||||||
|
{ (exit 1); exit 1; }; } ;;
|
||||||
|
|
||||||
|
*) ac_config_targets="$ac_config_targets $1" ;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
exec 5>>config.log
|
||||||
|
cat >&5 << _ACEOF
|
||||||
|
|
||||||
|
## ----------------------- ##
|
||||||
|
## Running config.status. ##
|
||||||
|
## ----------------------- ##
|
||||||
|
|
||||||
|
This file was extended by $as_me 2.52, executed with
|
||||||
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
||||||
|
CONFIG_LINKS = $CONFIG_LINKS
|
||||||
|
CONFIG_COMMANDS = $CONFIG_COMMANDS
|
||||||
|
> $ac_cs_invocation
|
||||||
|
on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
for ac_config_target in $ac_config_targets
|
||||||
|
do
|
||||||
|
case "$ac_config_target" in
|
||||||
|
# Handling of arguments.
|
||||||
|
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||||
|
*) { { echo "$as_me:13849: error: invalid argument: $ac_config_target" >&5
|
||||||
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; };;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# If the user did not use the arguments to specify the items to instantiate,
|
||||||
|
# then the envvar interface is used. Set only those that are not.
|
||||||
|
# We use the long form for the default assignment because of an extremely
|
||||||
|
# bizarre bug on SunOS 4.1.3.
|
||||||
|
if $ac_need_defaults; then
|
||||||
|
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create a temporary directory, and hook for its removal unless debugging.
|
||||||
|
$debug ||
|
||||||
|
{
|
||||||
|
trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
|
||||||
|
trap '{ (exit 1); exit 1; }' 1 2 13 15
|
||||||
|
}
|
||||||
|
|
||||||
|
# Create a (secure) tmp directory for tmp files.
|
||||||
|
: ${TMPDIR=/tmp}
|
||||||
|
{
|
||||||
|
tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` &&
|
||||||
|
test -n "$tmp" && test -d "$tmp"
|
||||||
|
} ||
|
||||||
|
{
|
||||||
|
tmp=$TMPDIR/cs$$-$RANDOM
|
||||||
|
(umask 077 && mkdir $tmp)
|
||||||
|
} ||
|
||||||
|
{
|
||||||
|
echo "$me: cannot create a temporary directory in $TMPDIR" >&2
|
||||||
|
{ (exit 1); exit 1; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# CONFIG_FILES section.
|
||||||
|
#
|
||||||
|
|
||||||
|
# No need to generate the scripts if there are no CONFIG_FILES.
|
||||||
|
# This happens for instance when ./config.status config.h
|
||||||
|
if test -n "$CONFIG_FILES"; then
|
||||||
|
# Protect against being on the right side of a sed subst in config.status.
|
||||||
|
sed 's/,@/@@/; s/@,/@@/; s/,;t t$/@;t t/; /@;t t$/s/[\\&,]/\\&/g;
|
||||||
|
s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
|
||||||
|
s,@SHELL@,/bin/sh,;t t
|
||||||
|
s,@exec_prefix@,${prefix},;t t
|
||||||
|
s,@prefix@,/usr/local,;t t
|
||||||
|
s,@program_transform_name@,s,x,x,,;t t
|
||||||
|
s,@bindir@,${exec_prefix}/bin,;t t
|
||||||
|
s,@sbindir@,${exec_prefix}/sbin,;t t
|
||||||
|
s,@libexecdir@,${exec_prefix}/libexec,;t t
|
||||||
|
s,@datadir@,${prefix}/share,;t t
|
||||||
|
s,@sysconfdir@,${prefix}/etc,;t t
|
||||||
|
s,@sharedstatedir@,${prefix}/com,;t t
|
||||||
|
s,@localstatedir@,${prefix}/var,;t t
|
||||||
|
s,@libdir@,${exec_prefix}/lib,;t t
|
||||||
|
s,@includedir@,${prefix}/include,;t t
|
||||||
|
s,@oldincludedir@,/usr/include,;t t
|
||||||
|
s,@infodir@,${prefix}/info,;t t
|
||||||
|
s,@mandir@,${prefix}/man,;t t
|
||||||
|
s,@PACKAGE_NAME@,,;t t
|
||||||
|
s,@PACKAGE_TARNAME@,,;t t
|
||||||
|
s,@PACKAGE_VERSION@,,;t t
|
||||||
|
s,@PACKAGE_STRING@,,;t t
|
||||||
|
s,@PACKAGE_BUGREPORT@,,;t t
|
||||||
|
s,@build_alias@,,;t t
|
||||||
|
s,@host_alias@,,;t t
|
||||||
|
s,@target_alias@,,;t t
|
||||||
|
s,@ECHO_C@,,;t t
|
||||||
|
s,@ECHO_N@,-n,;t t
|
||||||
|
s,@ECHO_T@,,;t t
|
||||||
|
s,@PATH_SEPARATOR@,:,;t t
|
||||||
|
s,@DEFS@,-DHAVE_DLFCN_H=1 -DHAVE_LIBDL=1 ,;t t
|
||||||
|
s,@LIBS@,-lreadline ,;t t
|
||||||
|
s,@build@,i686-pc-linux-gnu,;t t
|
||||||
|
s,@build_cpu@,i686,;t t
|
||||||
|
s,@build_vendor@,pc,;t t
|
||||||
|
s,@build_os@,linux-gnu,;t t
|
||||||
|
s,@host@,alice,;t t
|
||||||
|
s,@host_cpu@,i686,;t t
|
||||||
|
s,@host_vendor@,pc,;t t
|
||||||
|
s,@host_os@,linux-gnu,;t t
|
||||||
|
s,@CC@,gcc,;t t
|
||||||
|
s,@CFLAGS@,-g -O2,;t t
|
||||||
|
s,@LDFLAGS@,,;t t
|
||||||
|
s,@CPPFLAGS@,,;t t
|
||||||
|
s,@ac_ct_CC@,gcc,;t t
|
||||||
|
s,@EXEEXT@,,;t t
|
||||||
|
s,@OBJEXT@,o,;t t
|
||||||
|
s,@LN_S@,ln -s,;t t
|
||||||
|
s,@ECHO@,echo,;t t
|
||||||
|
s,@RANLIB@,ranlib,;t t
|
||||||
|
s,@ac_ct_RANLIB@,ranlib,;t t
|
||||||
|
s,@STRIP@,strip,;t t
|
||||||
|
s,@ac_ct_STRIP@,strip,;t t
|
||||||
|
s,@CPP@,gcc -E,;t t
|
||||||
|
s,@CXX@,g++,;t t
|
||||||
|
s,@CXXFLAGS@,-g -O2,;t t
|
||||||
|
s,@ac_ct_CXX@,g++,;t t
|
||||||
|
s,@CXXCPP@,g++ -E,;t t
|
||||||
|
s,@LIBTOOL@,$(SHELL) $(top_builddir)/libtool,;t t
|
||||||
|
s,@program_prefix@,,;t t
|
||||||
|
s,@BUILD_CC@,gcc,;t t
|
||||||
|
s,@BUILD_CFLAGS@,-g -O2,;t t
|
||||||
|
s,@BUILD_LIBS@,,;t t
|
||||||
|
s,@TARGET_CC@,gcc,;t t
|
||||||
|
s,@TARGET_CFLAGS@,-g -O2 -DOS_UNIX=1 -DOS_WIN=0 -DHAVE_USLEEP=1,;t t
|
||||||
|
s,@TARGET_LINK@,gcc,;t t
|
||||||
|
s,@TARGET_LFLAGS@,,;t t
|
||||||
|
s,@TARGET_RANLIB@,ranlib,;t t
|
||||||
|
s,@TARGET_AR@,ar cr,;t t
|
||||||
|
s,@ENCODING@,ISO8859,;t t
|
||||||
|
s,@BUILD_EXEEXT@,,;t t
|
||||||
|
s,@OS_UNIX@,1,;t t
|
||||||
|
s,@OS_WIN@,0,;t t
|
||||||
|
s,@TARGET_EXEEXT@,,;t t
|
||||||
|
s,@TARGET_LIBS@,,;t t
|
||||||
|
s,@TARGET_TCL_LIBS@,-ltcl8.3 -ldl -lm,;t t
|
||||||
|
s,@TARGET_TCL_INC@,-I/usr/include/tcl8.3/,;t t
|
||||||
|
s,@TARGET_READLINE_LIBS@,-lreadline ,;t t
|
||||||
|
s,@TARGET_READLINE_INC@,-I/usr/include/readline,;t t
|
||||||
|
s,@TARGET_HAVE_READLINE@,1,;t t
|
||||||
|
CEOF
|
||||||
|
|
||||||
|
# Split the substitutions into bite-sized pieces for seds with
|
||||||
|
# small command number limits, like on Digital OSF/1 and HP-UX.
|
||||||
|
ac_max_sed_lines=48
|
||||||
|
ac_sed_frag=1 # Number of current file.
|
||||||
|
ac_beg=1 # First line for current file.
|
||||||
|
ac_end=$ac_max_sed_lines # Line after last line for current file.
|
||||||
|
ac_more_lines=:
|
||||||
|
ac_sed_cmds=
|
||||||
|
while $ac_more_lines; do
|
||||||
|
if test $ac_beg -gt 1; then
|
||||||
|
sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
|
||||||
|
else
|
||||||
|
sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
|
||||||
|
fi
|
||||||
|
if test ! -s $tmp/subs.frag; then
|
||||||
|
ac_more_lines=false
|
||||||
|
else
|
||||||
|
# The purpose of the label and of the branching condition is to
|
||||||
|
# speed up the sed processing (if there are no `@' at all, there
|
||||||
|
# is no need to browse any of the substitutions).
|
||||||
|
# These are the two extra sed commands mentioned above.
|
||||||
|
(echo ':t
|
||||||
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
|
||||||
|
if test -z "$ac_sed_cmds"; then
|
||||||
|
ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
|
||||||
|
else
|
||||||
|
ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
|
||||||
|
fi
|
||||||
|
ac_sed_frag=`expr $ac_sed_frag + 1`
|
||||||
|
ac_beg=$ac_end
|
||||||
|
ac_end=`expr $ac_end + $ac_max_sed_lines`
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if test -z "$ac_sed_cmds"; then
|
||||||
|
ac_sed_cmds=cat
|
||||||
|
fi
|
||||||
|
fi # test -n "$CONFIG_FILES"
|
||||||
|
|
||||||
|
for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
|
||||||
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
||||||
|
case $ac_file in
|
||||||
|
- | *:- | *:-:* ) # input from stdin
|
||||||
|
cat >$tmp/stdin
|
||||||
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
||||||
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
||||||
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
||||||
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
||||||
|
* ) ac_file_in=$ac_file.in ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
|
||||||
|
ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
||||||
|
X"$ac_file" : 'X\(//\)$' \| \
|
||||||
|
X"$ac_file" : 'X\(/\)' \| \
|
||||||
|
. : '\(.\)' 2>/dev/null ||
|
||||||
|
echo X"$ac_file" |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\).*/{ s//\1/; q; }
|
||||||
|
s/.*/./; q'`
|
||||||
|
if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
|
||||||
|
{ case "$ac_dir" in
|
||||||
|
[\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
||||||
|
*) as_incr_dir=.;;
|
||||||
|
esac
|
||||||
|
as_dummy="$ac_dir"
|
||||||
|
for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
||||||
|
case $as_mkdir_dir in
|
||||||
|
# Skip DOS drivespec
|
||||||
|
?:) as_incr_dir=$as_mkdir_dir ;;
|
||||||
|
*)
|
||||||
|
as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
||||||
|
test -d "$as_incr_dir" || mkdir "$as_incr_dir"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done; }
|
||||||
|
|
||||||
|
ac_dir_suffix="/`echo $ac_dir|sed 's,^\./,,'`"
|
||||||
|
# A "../" for each directory in $ac_dir_suffix.
|
||||||
|
ac_dots=`echo "$ac_dir_suffix" | sed 's,/[^/]*,../,g'`
|
||||||
|
else
|
||||||
|
ac_dir_suffix= ac_dots=
|
||||||
|
fi
|
||||||
|
|
||||||
|
case $srcdir in
|
||||||
|
.) ac_srcdir=.
|
||||||
|
if test -z "$ac_dots"; then
|
||||||
|
ac_top_srcdir=.
|
||||||
|
else
|
||||||
|
ac_top_srcdir=`echo $ac_dots | sed 's,/$,,'`
|
||||||
|
fi ;;
|
||||||
|
[\\/]* | ?:[\\/]* )
|
||||||
|
ac_srcdir=$srcdir$ac_dir_suffix;
|
||||||
|
ac_top_srcdir=$srcdir ;;
|
||||||
|
*) # Relative path.
|
||||||
|
ac_srcdir=$ac_dots$srcdir$ac_dir_suffix
|
||||||
|
ac_top_srcdir=$ac_dots$srcdir ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test x"$ac_file" != x-; then
|
||||||
|
{ echo "$as_me:14086: creating $ac_file" >&5
|
||||||
|
echo "$as_me: creating $ac_file" >&6;}
|
||||||
|
rm -f "$ac_file"
|
||||||
|
fi
|
||||||
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
||||||
|
# use $as_me), people would be surprised to read:
|
||||||
|
# /* config.h. Generated automatically by config.status. */
|
||||||
|
configure_input="Generated automatically from `echo $ac_file_in |
|
||||||
|
sed 's,.*/,,'` by configure."
|
||||||
|
|
||||||
|
# First look for the input files in the build tree, otherwise in the
|
||||||
|
# src tree.
|
||||||
|
ac_file_inputs=`IFS=:
|
||||||
|
for f in $ac_file_in; do
|
||||||
|
case $f in
|
||||||
|
-) echo $tmp/stdin ;;
|
||||||
|
[\\/$]*)
|
||||||
|
# Absolute (can't be DOS-style, as IFS=:)
|
||||||
|
test -f "$f" || { { echo "$as_me:14104: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
echo $f;;
|
||||||
|
*) # Relative
|
||||||
|
if test -f "$f"; then
|
||||||
|
# Build tree
|
||||||
|
echo $f
|
||||||
|
elif test -f "$srcdir/$f"; then
|
||||||
|
# Source tree
|
||||||
|
echo $srcdir/$f
|
||||||
|
else
|
||||||
|
# /dev/null tree
|
||||||
|
{ { echo "$as_me:14117: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
fi;;
|
||||||
|
esac
|
||||||
|
done` || { (exit 1); exit 1; }
|
||||||
|
sed "/^[ ]*VPATH[ ]*=/{
|
||||||
|
s/:*\$(srcdir):*/:/;
|
||||||
|
s/:*\${srcdir}:*/:/;
|
||||||
|
s/:*@srcdir@:*/:/;
|
||||||
|
s/^\([^=]*=[ ]*\):*/\1/;
|
||||||
|
s/:*$//;
|
||||||
|
s/^[^=]*=[ ]*$//;
|
||||||
|
}
|
||||||
|
|
||||||
|
:t
|
||||||
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
||||||
|
s,@configure_input@,$configure_input,;t t
|
||||||
|
s,@srcdir@,$ac_srcdir,;t t
|
||||||
|
s,@top_srcdir@,$ac_top_srcdir,;t t
|
||||||
|
" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
|
||||||
|
rm -f $tmp/stdin
|
||||||
|
if test x"$ac_file" != x-; then
|
||||||
|
mv $tmp/out $ac_file
|
||||||
|
else
|
||||||
|
cat $tmp/out
|
||||||
|
rm -f $tmp/out
|
||||||
|
fi
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
{ (exit 0); exit 0; }
|
1411
config.sub
vendored
Normal file
1411
config.sub
vendored
Normal file
File diff suppressed because it is too large
Load Diff
477
configure.ac
Normal file
477
configure.ac
Normal file
@ -0,0 +1,477 @@
|
|||||||
|
#
|
||||||
|
# This file describes a "configure" script that is used to build
|
||||||
|
# makefiles for a particular platform. Process this file using
|
||||||
|
# Autoconf version 1.13 in order to generate that script. All
|
||||||
|
# lines of this file up to the AC_INIT macro are ignored.
|
||||||
|
#
|
||||||
|
# The build process allows for using a cross-compiler. But the default
|
||||||
|
# action is to target the same platform that we are running on. The
|
||||||
|
# configure script needs to discover the following properties of the
|
||||||
|
# build and target systems:
|
||||||
|
#
|
||||||
|
# srcdir
|
||||||
|
#
|
||||||
|
# The is the name of the directory that contains the
|
||||||
|
# "configure" shell script. All source files are
|
||||||
|
# located relative to this directory.
|
||||||
|
#
|
||||||
|
# bindir
|
||||||
|
#
|
||||||
|
# The name of the directory where executables should be
|
||||||
|
# written by the "install" target of the makefile.
|
||||||
|
#
|
||||||
|
# program_prefix
|
||||||
|
#
|
||||||
|
# Add this prefix to the names of all executables that run
|
||||||
|
# on the target machine. Default: ""
|
||||||
|
#
|
||||||
|
# ENABLE_SHARED
|
||||||
|
#
|
||||||
|
# True if shared libraries should be generated.
|
||||||
|
#
|
||||||
|
# BUILD_CC
|
||||||
|
#
|
||||||
|
# The name of a command that is used to convert C
|
||||||
|
# source files into executables that run on the build
|
||||||
|
# platform.
|
||||||
|
#
|
||||||
|
# BUILD_CFLAGS
|
||||||
|
#
|
||||||
|
# Switches that the build compiler needs in order to construct
|
||||||
|
# command-line programs.
|
||||||
|
#
|
||||||
|
# BUILD_LIBS
|
||||||
|
#
|
||||||
|
# Libraries that the build compiler needs in order to construct
|
||||||
|
# command-line programs.
|
||||||
|
#
|
||||||
|
# BUILD_EXEEXT
|
||||||
|
#
|
||||||
|
# The filename extension for executables on the build
|
||||||
|
# platform. "" for Unix and ".exe" for Windows.
|
||||||
|
#
|
||||||
|
# TARGET_CC
|
||||||
|
#
|
||||||
|
# The name of a command that runs on the build platform
|
||||||
|
# and converts C source files into *.o files for the
|
||||||
|
# target platform. In other words, the cross-compiler.
|
||||||
|
#
|
||||||
|
# TARGET_CFLAGS
|
||||||
|
#
|
||||||
|
# Switches that the target compiler needs to turn C source files
|
||||||
|
# into *.o files. Do not include TARGET_TCL_INC in this list.
|
||||||
|
# Makefiles might add additional switches such as "-I.".
|
||||||
|
#
|
||||||
|
# TARGET_TCL_LIBS
|
||||||
|
#
|
||||||
|
# This is the library directives passed to the target linker
|
||||||
|
# that cause the executable to link against Tcl. This might
|
||||||
|
# be a switch like "-ltcl8.0" or pathnames of library file
|
||||||
|
# like "../../src/libtcl8.0.a".
|
||||||
|
#
|
||||||
|
# TARGET_TCL_INC
|
||||||
|
#
|
||||||
|
# This variables define the directory that contain header
|
||||||
|
# files for Tcl. If the compiler is able to find <tcl.h>
|
||||||
|
# on its own, then this can be blank.
|
||||||
|
#
|
||||||
|
# TARGET_READLINE_LIBS
|
||||||
|
#
|
||||||
|
# This is the library directives passed to the target linker
|
||||||
|
# that cause the executable to link against the readline library.
|
||||||
|
# This might be a switch like "-lreadline" or pathnames of library
|
||||||
|
# file like "../../src/libreadline.a".
|
||||||
|
#
|
||||||
|
# TARGET_READLINE_INC
|
||||||
|
#
|
||||||
|
# This variables define the directory that contain header
|
||||||
|
# files for the readline library. If the compiler is able
|
||||||
|
# to find <readline.h> on its own, then this can be blank.
|
||||||
|
#
|
||||||
|
# TARGET_LINK
|
||||||
|
#
|
||||||
|
# The name of the linker that combines *.o files generated
|
||||||
|
# by TARGET_CC into executables for the target platform.
|
||||||
|
#
|
||||||
|
# TARGET_LIBS
|
||||||
|
#
|
||||||
|
# Additional libraries or other switch that the target linker needs
|
||||||
|
# to build an executable on the target. Do not include
|
||||||
|
# on this list any libraries in TARGET_TCL_LIBS and
|
||||||
|
# TARGET_READLINE_LIBS, etc.
|
||||||
|
#
|
||||||
|
# TARGET_EXEEXT
|
||||||
|
#
|
||||||
|
# The filename extension for executables on the
|
||||||
|
# target platform. "" for Unix and ".exe" for windows.
|
||||||
|
#
|
||||||
|
# The generated configure script will make an attempt to guess
|
||||||
|
# at all of the above parameters. You can override any of
|
||||||
|
# the guesses by setting the environment variable named
|
||||||
|
# "config_AAAA" where "AAAA" is the name of the parameter
|
||||||
|
# described above. (Exception: srcdir cannot be set this way.)
|
||||||
|
# If you have a file that sets one or more of these environment
|
||||||
|
# variables, you can invoke configure as follows:
|
||||||
|
#
|
||||||
|
# configure --with-hints=FILE
|
||||||
|
#
|
||||||
|
# where FILE is the name of the file that sets the environment
|
||||||
|
# variables. FILE should be an absolute pathname.
|
||||||
|
#
|
||||||
|
# If you have a Tcl/Tk/BLT source distribution available, then the
|
||||||
|
# files in that distribution will be used instead of any other
|
||||||
|
# Tcl/Tk/BLT files the script might discover if you tell the configure
|
||||||
|
# script about the source tree. Use commandline options:
|
||||||
|
#
|
||||||
|
# --with-tcl=PATH --with-tk=PATH --with-blt=PATH
|
||||||
|
#
|
||||||
|
# Or set environment variables config_WITH_TCL, config_WITH_TK, or
|
||||||
|
# config_WITH_BLT.
|
||||||
|
#
|
||||||
|
# This configure.in file is easy to reuse on other projects. Just
|
||||||
|
# change the argument to AC_INIT(). And disable any features that
|
||||||
|
# you don't need (for example BLT) by erasing or commenting out
|
||||||
|
# the corresponding code.
|
||||||
|
#
|
||||||
|
AC_INIT(src/sqlite.h.in)
|
||||||
|
|
||||||
|
dnl Put the RCS revision string after AC_INIT so that it will also
|
||||||
|
dnl show in in configure.
|
||||||
|
# The following RCS revision string applies to configure.in
|
||||||
|
# $Revision: 1.1 $
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Programs needed
|
||||||
|
#
|
||||||
|
AC_PROG_LIBTOOL
|
||||||
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Set up an appropriate program prefix
|
||||||
|
#
|
||||||
|
if test "$program_prefix" = "NONE"; then
|
||||||
|
program_prefix=""
|
||||||
|
fi
|
||||||
|
AC_SUBST(program_prefix)
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Check to see if the --with-hints=FILE option is used. If there is none,
|
||||||
|
# then check for a files named "$host.hints" and ../$hosts.hints where
|
||||||
|
# $host is the hostname of the build system. If still no hints are
|
||||||
|
# found, try looking in $system.hints and ../$system.hints where
|
||||||
|
# $system is the result of uname -s.
|
||||||
|
#
|
||||||
|
AC_ARG_WITH(hints,
|
||||||
|
[ --with-hints=FILE Read configuration options from FILE],
|
||||||
|
hints=$withval)
|
||||||
|
if test "$hints" = ""; then
|
||||||
|
host=`hostname | sed 's/\..*//'`
|
||||||
|
if test -r $host.hints; then
|
||||||
|
hints=$host.hints
|
||||||
|
else
|
||||||
|
if test -r ../$host.hints; then
|
||||||
|
hints=../$host.hints
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if test "$hints" = ""; then
|
||||||
|
sys=`uname -s`
|
||||||
|
if test -r $sys.hints; then
|
||||||
|
hints=$sys.hints
|
||||||
|
else
|
||||||
|
if test -r ../$sys.hints; then
|
||||||
|
hints=../$sys.hints
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if test "$hints" != ""; then
|
||||||
|
AC_MSG_RESULT(reading hints from $hints)
|
||||||
|
. $hints
|
||||||
|
fi
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Locate a compiler for the build machine. This compiler should
|
||||||
|
# generate command-line programs that run on the build machine.
|
||||||
|
#
|
||||||
|
default_build_cflags="-g"
|
||||||
|
if test "$config_BUILD_CC" = ""; then
|
||||||
|
AC_PROG_CC
|
||||||
|
if test "$cross_compiling" = "yes"; then
|
||||||
|
AC_MSG_ERROR([unable to find a compiler for building build tools])
|
||||||
|
fi
|
||||||
|
BUILD_CC=$CC
|
||||||
|
default_build_cflags=$CFLAGS
|
||||||
|
else
|
||||||
|
BUILD_CC=$config_BUILD_CC
|
||||||
|
AC_MSG_CHECKING([host compiler])
|
||||||
|
CC=$BUILD_CC
|
||||||
|
AC_MSG_RESULT($BUILD_CC)
|
||||||
|
fi
|
||||||
|
AC_MSG_CHECKING([switches for the host compiler])
|
||||||
|
if test "$config_BUILD_CFLAGS" != ""; then
|
||||||
|
CFLAGS=$config_BUILD_CFLAGS
|
||||||
|
BUILD_CFLAGS=$config_BUILD_CFLAGS
|
||||||
|
else
|
||||||
|
BUILD_CFLAGS=$default_build_cflags
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($BUILD_CFLAGS)
|
||||||
|
if test "$config_BUILD_LIBS" != ""; then
|
||||||
|
BUILD_LIBS=$config_BUILD_LIBS
|
||||||
|
fi
|
||||||
|
AC_SUBST(BUILD_CC)
|
||||||
|
AC_SUBST(BUILD_CFLAGS)
|
||||||
|
AC_SUBST(BUILD_LIBS)
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Locate a compiler that converts C code into *.o files that run on
|
||||||
|
# the target machine.
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([target compiler])
|
||||||
|
if test "$config_TARGET_CC" != ""; then
|
||||||
|
TARGET_CC=$config_TARGET_CC
|
||||||
|
else
|
||||||
|
TARGET_CC=$BUILD_CC
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($TARGET_CC)
|
||||||
|
AC_MSG_CHECKING([switches on the target compiler])
|
||||||
|
if test "$config_TARGET_CFLAGS" != ""; then
|
||||||
|
TARGET_CFLAGS=$config_TARGET_CFLAGS
|
||||||
|
else
|
||||||
|
TARGET_CFLAGS=$BUILD_CFLAGS
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($TARGET_CFLAGS)
|
||||||
|
AC_MSG_CHECKING([target linker])
|
||||||
|
if test "$config_TARGET_LINK" = ""; then
|
||||||
|
TARGET_LINK=$TARGET_CC
|
||||||
|
else
|
||||||
|
TARGET_LINK=$config_TARGET_LINK
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($TARGET_LINK)
|
||||||
|
AC_MSG_CHECKING([switches on the target compiler])
|
||||||
|
if test "$config_TARGET_TFLAGS" != ""; then
|
||||||
|
TARGET_TFLAGS=$config_TARGET_TFLAGS
|
||||||
|
else
|
||||||
|
TARGET_TFLAGS=$BUILD_CFLAGS
|
||||||
|
fi
|
||||||
|
if test "$config_TARGET_RANLIB" != ""; then
|
||||||
|
TARGET_RANLIB=$config_TARGET_RANLIB
|
||||||
|
else
|
||||||
|
AC_PROG_RANLIB
|
||||||
|
TARGET_RANLIB=$RANLIB
|
||||||
|
fi
|
||||||
|
if test "$config_TARGET_AR" != ""; then
|
||||||
|
TARGET_AR=$config_TARGET_AR
|
||||||
|
else
|
||||||
|
TARGET_AR='ar cr'
|
||||||
|
fi
|
||||||
|
AC_MSG_RESULT($TARGET_TFLAGS)
|
||||||
|
AC_SUBST(TARGET_CC)
|
||||||
|
AC_SUBST(TARGET_CFLAGS)
|
||||||
|
AC_SUBST(TARGET_LINK)
|
||||||
|
AC_SUBST(TARGET_LFLAGS)
|
||||||
|
AC_SUBST(TARGET_RANLIB)
|
||||||
|
AC_SUBST(TARGET_AR)
|
||||||
|
|
||||||
|
# Set the $cross variable if we are cross-compiling. Make
|
||||||
|
# it 0 if we are not.
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([if host and target compilers are the same])
|
||||||
|
if test "$BUILD_CC" = "$TARGET_CC"; then
|
||||||
|
cross=0
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
cross=1
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Are we using UTF-8 or iso8859 encodings?
|
||||||
|
#
|
||||||
|
AC_ARG_ENABLE(utf8,
|
||||||
|
[ --enable-utf8 Use UTF-8 encodings],,enable_utf8=no)
|
||||||
|
AC_MSG_CHECKING([character encoding])
|
||||||
|
if test "$enable_utf8" = "no"; then
|
||||||
|
ENCODING=ISO8859
|
||||||
|
AC_MSG_RESULT([iso8859])
|
||||||
|
else
|
||||||
|
ENCODING=UTF8
|
||||||
|
AC_MSG_RESULT([UTF-8])
|
||||||
|
fi
|
||||||
|
AC_SUBST(ENCODING)
|
||||||
|
|
||||||
|
###########
|
||||||
|
# Lots of things are different if we are compiling for Windows using
|
||||||
|
# the CYGWIN environment. So check for that special case and handle
|
||||||
|
# things accordingly.
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([if executables have the .exe suffix])
|
||||||
|
if test "$config_BUILD_EXEEXT" = ".exe"; then
|
||||||
|
CYGWIN=yes
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(unknown)
|
||||||
|
fi
|
||||||
|
if test "$CYGWIN" != "yes"; then
|
||||||
|
AC_CYGWIN
|
||||||
|
fi
|
||||||
|
if test "$CYGWIN" = "yes"; then
|
||||||
|
BUILD_EXEEXT=.exe
|
||||||
|
else
|
||||||
|
BUILD_EXEEXT=""
|
||||||
|
fi
|
||||||
|
if test "$cross" = "0"; then
|
||||||
|
TARGET_EXEEXT=$BUILD_EXEEXT
|
||||||
|
else
|
||||||
|
TARGET_EXEEXT=$config_TARGET_EXEEXT
|
||||||
|
fi
|
||||||
|
if test "$TARGET_EXEEXT" = ".exe"; then
|
||||||
|
OS_UNIX=0
|
||||||
|
OS_WIN=1
|
||||||
|
tclsubdir=win
|
||||||
|
else
|
||||||
|
OS_UNIX=1
|
||||||
|
OS_WIN=0
|
||||||
|
tclsubdir=unix
|
||||||
|
fi
|
||||||
|
TARGET_CFLAGS="$TARGET_CFLAGS -DOS_UNIX=$OS_UNIX -DOS_WIN=$OS_WIN"
|
||||||
|
|
||||||
|
AC_SUBST(BUILD_EXEEXT)
|
||||||
|
AC_SUBST(OS_UNIX)
|
||||||
|
AC_SUBST(OS_WIN)
|
||||||
|
AC_SUBST(TARGET_EXEEXT)
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Extract generic linker options from the environment.
|
||||||
|
#
|
||||||
|
if test "$config_TARGET_LIBS" != ""; then
|
||||||
|
TARGET_LIBS=$config_TARGET_LIBS
|
||||||
|
else
|
||||||
|
TARGET_LIBS=""
|
||||||
|
fi
|
||||||
|
AC_SUBST(TARGET_LIBS)
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Figure out what C libraries are required to compile Tcl programs.
|
||||||
|
#
|
||||||
|
if test "$config_TARGET_TCL_LIBS" != ""; then
|
||||||
|
TARGET_TCL_LIBS="$config_TARGET_TCL_LIBS"
|
||||||
|
else
|
||||||
|
if test "$with_tcl" != ""; then
|
||||||
|
extra=`echo $with_tcl/$tclsubdir/libtcl8*.a`
|
||||||
|
fi
|
||||||
|
CC=$TARGET_CC
|
||||||
|
AC_CHECK_FUNC(sin, LIBS="", LIBS="-lm")
|
||||||
|
AC_CHECK_LIB(dl, dlopen)
|
||||||
|
otherlibs=$LIBS
|
||||||
|
if test "$extra" != ""; then
|
||||||
|
LIBS=$extra
|
||||||
|
else
|
||||||
|
LIBS=""
|
||||||
|
AC_SEARCH_LIBS(Tcl_Init, dnl
|
||||||
|
tcl8.4 tcl8.3 tcl8.2 tcl8.1 tcl8.0 tcl80 tcl,,,$otherlibs)
|
||||||
|
fi
|
||||||
|
TARGET_TCL_LIBS="$LIBS $otherlibs"
|
||||||
|
fi
|
||||||
|
AC_SUBST(TARGET_TCL_LIBS)
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Figure out where to get the TCL header files.
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([TCL header files])
|
||||||
|
found=no
|
||||||
|
if test "$config_TARGET_TCL_INC" != ""; then
|
||||||
|
TARGET_TCL_INC=$config_TARGET_TCL_INC
|
||||||
|
found=yes
|
||||||
|
else
|
||||||
|
if test "$with_tcl" != ""; then
|
||||||
|
TARGET_TCL_INC="-I$with_tcl/generic -I$with_tcl/$tclsubdir"
|
||||||
|
found=yes
|
||||||
|
else
|
||||||
|
TARGET_TCL_INC=""
|
||||||
|
found=no
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if test "$found" = "yes"; then
|
||||||
|
AC_MSG_RESULT($TARGET_TCL_INC)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(not specified: still searching...)
|
||||||
|
AC_CHECK_HEADER(tcl.h, [found=yes])
|
||||||
|
fi
|
||||||
|
if test "$found" = "no"; then
|
||||||
|
for dir in /usr/local /usr/X11 /usr/X11R6 /usr/pkg /usr/contrib /usr; do
|
||||||
|
AC_CHECK_FILE($dir/include/tcl.h, found=yes)
|
||||||
|
if test "$found" = "yes"; then
|
||||||
|
TARGET_TCL_INC="-I$dir/include"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
if test "$found" = "no"; then
|
||||||
|
TARGET_TCL_INC="-DNO_TCL=1"
|
||||||
|
fi
|
||||||
|
AC_SUBST(TARGET_TCL_INC)
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Figure out what C libraries are required to compile programs
|
||||||
|
# that use "readline()" library.
|
||||||
|
#
|
||||||
|
if test "$config_TARGET_READLINE_LIBS" != ""; then
|
||||||
|
TARGET_READLINE_LIBS="$config_TARGET_READLINE_LIBS"
|
||||||
|
else
|
||||||
|
CC=$TARGET_CC
|
||||||
|
LIBS=""
|
||||||
|
AC_SEARCH_LIBS(readline, readline,,,)
|
||||||
|
TARGET_READLINE_LIBS="$LIBS"
|
||||||
|
fi
|
||||||
|
AC_SUBST(TARGET_READLINE_LIBS)
|
||||||
|
|
||||||
|
##########
|
||||||
|
# Figure out where to get the READLINE header files.
|
||||||
|
#
|
||||||
|
AC_MSG_CHECKING([readline header files])
|
||||||
|
found=no
|
||||||
|
if test "$config_TARGET_READLINE_INC" != ""; then
|
||||||
|
TARGET_READLINE_INC=$config_TARGET_READLINE_INC
|
||||||
|
found=yes
|
||||||
|
fi
|
||||||
|
if test "$found" = "yes"; then
|
||||||
|
AC_MSG_RESULT($TARGET_READLINE_INC)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(not specified: still searching...)
|
||||||
|
AC_CHECK_HEADER(readline.h, [found=yes])
|
||||||
|
fi
|
||||||
|
if test "$found" = "no"; then
|
||||||
|
for dir in /usr /usr/local /usr/local/readline /usr/contrib; do
|
||||||
|
AC_CHECK_FILE($dir/include/readline.h, found=yes)
|
||||||
|
if test "$found" = "yes"; then
|
||||||
|
TARGET_READLINE_INC="-I$dir/include"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
AC_CHECK_FILE($dir/include/readline/readline.h, found=yes)
|
||||||
|
if test "$found" = "yes"; then
|
||||||
|
TARGET_READLINE_INC="-I$dir/include/readline"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
if test "$found" = "yes"; then
|
||||||
|
if test "$TARGET_READLINE_LIBS" = ""; then
|
||||||
|
TARGET_HAVE_READLINE=0
|
||||||
|
else
|
||||||
|
TARGET_HAVE_READLINE=1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
TARGET_HAVE_READLINE=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(TARGET_READLINE_INC)
|
||||||
|
AC_SUBST(TARGET_HAVE_READLINE)
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Figure out whether or not we have a "usleep()" function.
|
||||||
|
#
|
||||||
|
AC_CHECK_FUNC(usleep, [TARGET_CFLAGS="$TARGET_CFLAGS -DHAVE_USLEEP=1"])
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Generate the output files.
|
||||||
|
#
|
||||||
|
AC_OUTPUT(Makefile)
|
251
install-sh
Normal file
251
install-sh
Normal file
@ -0,0 +1,251 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# install - install a program, script, or datafile
|
||||||
|
# This comes from X11R5 (mit/util/scripts/install.sh).
|
||||||
|
#
|
||||||
|
# Copyright 1991 by the Massachusetts Institute of Technology
|
||||||
|
#
|
||||||
|
# Permission to use, copy, modify, distribute, and sell this software and its
|
||||||
|
# documentation for any purpose is hereby granted without fee, provided that
|
||||||
|
# the above copyright notice appear in all copies and that both that
|
||||||
|
# copyright notice and this permission notice appear in supporting
|
||||||
|
# documentation, and that the name of M.I.T. not be used in advertising or
|
||||||
|
# publicity pertaining to distribution of the software without specific,
|
||||||
|
# written prior permission. M.I.T. makes no representations about the
|
||||||
|
# suitability of this software for any purpose. It is provided "as is"
|
||||||
|
# without express or implied warranty.
|
||||||
|
#
|
||||||
|
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||||
|
# `make' implicit rules from creating a file called install from it
|
||||||
|
# when there is no Makefile.
|
||||||
|
#
|
||||||
|
# This script is compatible with the BSD install script, but was written
|
||||||
|
# from scratch. It can only install one file at a time, a restriction
|
||||||
|
# shared with many OS's install programs.
|
||||||
|
|
||||||
|
|
||||||
|
# set DOITPROG to echo to test this script
|
||||||
|
|
||||||
|
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||||
|
doit="${DOITPROG-}"
|
||||||
|
|
||||||
|
|
||||||
|
# put in absolute paths if you don't have them in your path; or use env. vars.
|
||||||
|
|
||||||
|
mvprog="${MVPROG-mv}"
|
||||||
|
cpprog="${CPPROG-cp}"
|
||||||
|
chmodprog="${CHMODPROG-chmod}"
|
||||||
|
chownprog="${CHOWNPROG-chown}"
|
||||||
|
chgrpprog="${CHGRPPROG-chgrp}"
|
||||||
|
stripprog="${STRIPPROG-strip}"
|
||||||
|
rmprog="${RMPROG-rm}"
|
||||||
|
mkdirprog="${MKDIRPROG-mkdir}"
|
||||||
|
|
||||||
|
transformbasename=""
|
||||||
|
transform_arg=""
|
||||||
|
instcmd="$mvprog"
|
||||||
|
chmodcmd="$chmodprog 0755"
|
||||||
|
chowncmd=""
|
||||||
|
chgrpcmd=""
|
||||||
|
stripcmd=""
|
||||||
|
rmcmd="$rmprog -f"
|
||||||
|
mvcmd="$mvprog"
|
||||||
|
src=""
|
||||||
|
dst=""
|
||||||
|
dir_arg=""
|
||||||
|
|
||||||
|
while [ x"$1" != x ]; do
|
||||||
|
case $1 in
|
||||||
|
-c) instcmd="$cpprog"
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-d) dir_arg=true
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-m) chmodcmd="$chmodprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-o) chowncmd="$chownprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-g) chgrpcmd="$chgrpprog $2"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-s) stripcmd="$stripprog"
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-t=*) transformarg=`echo $1 | sed 's/-t=//'`
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
|
||||||
|
*) if [ x"$src" = x ]
|
||||||
|
then
|
||||||
|
src=$1
|
||||||
|
else
|
||||||
|
# this colon is to work around a 386BSD /bin/sh bug
|
||||||
|
:
|
||||||
|
dst=$1
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
continue;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ x"$src" = x ]
|
||||||
|
then
|
||||||
|
echo "install: no input file specified"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x"$dir_arg" != x ]; then
|
||||||
|
dst=$src
|
||||||
|
src=""
|
||||||
|
|
||||||
|
if [ -d $dst ]; then
|
||||||
|
instcmd=:
|
||||||
|
chmodcmd=""
|
||||||
|
else
|
||||||
|
instcmd=mkdir
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
|
||||||
|
# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
|
||||||
|
# might cause directories to be created, which would be especially bad
|
||||||
|
# if $src (and thus $dsttmp) contains '*'.
|
||||||
|
|
||||||
|
if [ -f $src -o -d $src ]
|
||||||
|
then
|
||||||
|
true
|
||||||
|
else
|
||||||
|
echo "install: $src does not exist"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x"$dst" = x ]
|
||||||
|
then
|
||||||
|
echo "install: no destination specified"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# If destination is a directory, append the input filename; if your system
|
||||||
|
# does not like double slashes in filenames, you may need to add some logic
|
||||||
|
|
||||||
|
if [ -d $dst ]
|
||||||
|
then
|
||||||
|
dst="$dst"/`basename $src`
|
||||||
|
else
|
||||||
|
true
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
## this sed command emulates the dirname command
|
||||||
|
dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
|
||||||
|
|
||||||
|
# Make sure that the destination directory exists.
|
||||||
|
# this part is taken from Noah Friedman's mkinstalldirs script
|
||||||
|
|
||||||
|
# Skip lots of stat calls in the usual case.
|
||||||
|
if [ ! -d "$dstdir" ]; then
|
||||||
|
defaultIFS='
|
||||||
|
'
|
||||||
|
IFS="${IFS-${defaultIFS}}"
|
||||||
|
|
||||||
|
oIFS="${IFS}"
|
||||||
|
# Some sh's can't handle IFS=/ for some reason.
|
||||||
|
IFS='%'
|
||||||
|
set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
|
||||||
|
IFS="${oIFS}"
|
||||||
|
|
||||||
|
pathcomp=''
|
||||||
|
|
||||||
|
while [ $# -ne 0 ] ; do
|
||||||
|
pathcomp="${pathcomp}${1}"
|
||||||
|
shift
|
||||||
|
|
||||||
|
if [ ! -d "${pathcomp}" ] ;
|
||||||
|
then
|
||||||
|
$mkdirprog "${pathcomp}"
|
||||||
|
else
|
||||||
|
true
|
||||||
|
fi
|
||||||
|
|
||||||
|
pathcomp="${pathcomp}/"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x"$dir_arg" != x ]
|
||||||
|
then
|
||||||
|
$doit $instcmd $dst &&
|
||||||
|
|
||||||
|
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
|
||||||
|
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
|
||||||
|
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
|
||||||
|
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
|
||||||
|
else
|
||||||
|
|
||||||
|
# If we're going to rename the final executable, determine the name now.
|
||||||
|
|
||||||
|
if [ x"$transformarg" = x ]
|
||||||
|
then
|
||||||
|
dstfile=`basename $dst`
|
||||||
|
else
|
||||||
|
dstfile=`basename $dst $transformbasename |
|
||||||
|
sed $transformarg`$transformbasename
|
||||||
|
fi
|
||||||
|
|
||||||
|
# don't allow the sed command to completely eliminate the filename
|
||||||
|
|
||||||
|
if [ x"$dstfile" = x ]
|
||||||
|
then
|
||||||
|
dstfile=`basename $dst`
|
||||||
|
else
|
||||||
|
true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Make a temp file name in the proper directory.
|
||||||
|
|
||||||
|
dsttmp=$dstdir/#inst.$$#
|
||||||
|
|
||||||
|
# Move or copy the file name to the temp name
|
||||||
|
|
||||||
|
$doit $instcmd $src $dsttmp &&
|
||||||
|
|
||||||
|
trap "rm -f ${dsttmp}" 0 &&
|
||||||
|
|
||||||
|
# and set any options; do chmod last to preserve setuid bits
|
||||||
|
|
||||||
|
# If any of these fail, we abort the whole thing. If we want to
|
||||||
|
# ignore errors from any of these, just make sure not to ignore
|
||||||
|
# errors from the above "$doit $instcmd $src $dsttmp" command.
|
||||||
|
|
||||||
|
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
|
||||||
|
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
|
||||||
|
if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
|
||||||
|
if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
|
||||||
|
$doit $rmcmd -f $dstdir/$dstfile &&
|
||||||
|
$doit $mvcmd $dsttmp $dstdir/$dstfile
|
||||||
|
|
||||||
|
fi &&
|
||||||
|
|
||||||
|
|
||||||
|
exit 0
|
26
manifest
26
manifest
@ -1,12 +1,22 @@
|
|||||||
C Added\smore\stests\sof\sunique\sindices.\s(CVS\s270)
|
C Put\sin\sthe\snew\sLIBTOOL\sbuild\ssystem.\s(CVS\s271)
|
||||||
D 2001-09-27T23:57:06
|
D 2001-09-28T01:34:44
|
||||||
F Makefile.in fe9d96d6a7b04b3000a24692c2a3761840bbbf97
|
F Makefile.in 4d29e58224476426cc8c78b631ae478cbad0e1ea
|
||||||
F README 51f6a4e7408b34afa5bc1c0485f61b6a4efb6958
|
F Makefile.template 31de3ce7126e8325c759a94e5b72ee8febc43357
|
||||||
|
F README 93d2977cc5c6595c448de16bdefc312b9d401533
|
||||||
F VERSION 17fadc361fb942d644f92116388409c937c9fa79
|
F VERSION 17fadc361fb942d644f92116388409c937c9fa79
|
||||||
F configure aad857a97ca28a584228869186eb4cd7dbebbb3a x
|
F aclocal.m4 11faa843caa38fd451bc6aeb43e248d1723a269d
|
||||||
|
F config.guess f38b1e93d1e0fa6f5a6913e9e7b12774b9232588
|
||||||
|
F config.log 6a73d03433669b10a3f0c221198c3f26b9413914
|
||||||
|
F config.status eea88b8fe8b8b82d69b886382061efa9b77131cc
|
||||||
|
F config.sub f14b07d544ca26b5d698259045136b783e18fc7f
|
||||||
|
F configure 9303d975dbd577fbe61e615045ddc02015b59fb5 x
|
||||||
|
F configure.ac 38e2e5594cab99eb3a753b0614fcc36f4ddbbb48
|
||||||
F configure.in 0000c0d62beb47cae1d2d81a197c7fe6efd56a45
|
F configure.in 0000c0d62beb47cae1d2d81a197c7fe6efd56a45
|
||||||
F doc/lemon.html f0f682f50210928c07e562621c3b7e8ab912a538
|
F doc/lemon.html f0f682f50210928c07e562621c3b7e8ab912a538
|
||||||
F doc/report1.txt a031aaf37b185e4fa540223cb516d3bccec7eeac
|
F doc/report1.txt a031aaf37b185e4fa540223cb516d3bccec7eeac
|
||||||
|
F install-sh 9d4de14ab9fb0facae2f48780b874848cbf2f895
|
||||||
|
F libtool c56e618713c9510a103bda6b95f3ea3900dcacd6
|
||||||
|
F ltmain.sh e9ed72eb1d690f447c13945eaf69e28af531eda1
|
||||||
F src/TODO af7f3cab0228e34149cf98e073aa83d45878e7e6
|
F src/TODO af7f3cab0228e34149cf98e073aa83d45878e7e6
|
||||||
F src/btree.c a4a88dfef2072cedfdac09f3a51b7d70b017b9b4
|
F src/btree.c a4a88dfef2072cedfdac09f3a51b7d70b017b9b4
|
||||||
F src/btree.h 57d653ef5137b91f2a068aaf71a2905468dd2cb7
|
F src/btree.h 57d653ef5137b91f2a068aaf71a2905468dd2cb7
|
||||||
@ -100,7 +110,7 @@ F www/speed.tcl 91b53f9403a62bb322dc1f85a81531309bcfb41c
|
|||||||
F www/sqlite.tcl cb0d23d8f061a80543928755ec7775da6e4f362f
|
F www/sqlite.tcl cb0d23d8f061a80543928755ec7775da6e4f362f
|
||||||
F www/tclsqlite.tcl 13d50723f583888fc80ae1a38247c0ab415066fa
|
F www/tclsqlite.tcl 13d50723f583888fc80ae1a38247c0ab415066fa
|
||||||
F www/vdbe.tcl 0c8aaa529dd216ccbf7daaabd80985e413d5f9ad
|
F www/vdbe.tcl 0c8aaa529dd216ccbf7daaabd80985e413d5f9ad
|
||||||
P a70d445070c905690dd8ec080981232594e1a969
|
P 3ae952933997c6422ec53b26391ba362c6e5c44a
|
||||||
R 1b44db7fca8e394e88522eb424d8e81f
|
R 9eb0a8a330099ee573677e4648d1a9dc
|
||||||
U drh
|
U drh
|
||||||
Z 52b2894364a881e04b3ad05afbb2e248
|
Z dd38c213d9c2c1db847a360dc3d08644
|
||||||
|
@ -1 +1 @@
|
|||||||
3ae952933997c6422ec53b26391ba362c6e5c44a
|
00575d167aea567bc38f8a329aeff7b814eb91c8
|
Loading…
Reference in New Issue
Block a user