Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added pkg-config support. (CVS 880) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ec1c5a611307047dd0049353e989e75d |
User & Date: | a.rottmann 2003-03-24 09:39:32.000 |
Context
2003-03-24
| ||
09:40 | Updated libtool. (CVS 881) (check-in: b1ca4e13dc user: a.rottmann tags: trunk) | |
09:39 | Added pkg-config support. (CVS 880) (check-in: ec1c5a6113 user: a.rottmann tags: trunk) | |
2003-03-20
| ||
01:16 | Record the database name in addition to the table name for DELETE, INSERT, and UPDATE statements. (CVS 879) (check-in: a5d8fc95ee user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
394 395 396 397 398 399 400 401 402 403 404 405 406 407 | install: sqlite libsqlite.la sqlite.h $(INSTALL) -d $(exec_prefix)/lib $(LIBTOOL) $(INSTALL) libsqlite.la $(exec_prefix)/lib $(INSTALL) -d $(exec_prefix)/bin $(LIBTOOL) $(INSTALL) sqlite $(exec_prefix)/bin $(INSTALL) -d $(prefix)/include $(INSTALL) -m 0644 sqlite.h $(prefix)/include clean: rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h opcodes.* rm -rf .libs .deps rm -f lemon lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) rm -f *.da *.bb *.bbg gmon.out | > > | 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | install: sqlite libsqlite.la sqlite.h $(INSTALL) -d $(exec_prefix)/lib $(LIBTOOL) $(INSTALL) libsqlite.la $(exec_prefix)/lib $(INSTALL) -d $(exec_prefix)/bin $(LIBTOOL) $(INSTALL) sqlite $(exec_prefix)/bin $(INSTALL) -d $(prefix)/include $(INSTALL) -m 0644 sqlite.h $(prefix)/include $(INSTALL) -d $(exec_prefix)/lib/pkgconfig; \ $(INSTALL) -m 0644 sqlite.pc $(exec_prefix)/lib/pkgconfig; \ clean: rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h opcodes.* rm -rf .libs .deps rm -f lemon lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) rm -f *.da *.bb *.bbg gmon.out |
︙ | ︙ |
Changes to configure.ac.
︙ | ︙ | |||
134 135 136 137 138 139 140 | # 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 | | > > > > > > | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | # 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.2 $ ######### # 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) if test -f VERSION; then VERSION=`cat VERSION` echo "Version set to $VERSION" fi AC_SUBST(VERSION) ######### # 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. |
︙ | ︙ | |||
470 471 472 473 474 475 476 | # 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. # | | > > > | 476 477 478 479 480 481 482 483 484 485 486 | # 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 sqlite.pc ]) |
Added sqlite.pc.in.
> > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 | # Package Information for pkg-config prefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: SQLite Description: SQL database engine Version: @VERSION@ Libs: -L${libdir} -lsqlite Cflags: -I${includedir} |