Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | * Added -version-info to shared libraries * Remove config.h and libtool in the distclean target (CVS 1021) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e13e8b05b4d146aa4ca9ed06e414e0c6 |
User & Date: | a.rottmann 2003-06-14 19:29:09.000 |
Context
2003-06-15
| ||
10:29 | Documented integer values used by PRAGMAs. Fixed missing end tags in generated anchors. (CVS 1022) (check-in: 6c24dfbae5 user: jplyon tags: trunk) | |
2003-06-14
| ||
19:29 | * Added -version-info to shared libraries * Remove config.h and libtool in the distclean target (CVS 1021) (check-in: e13e8b05b4 user: a.rottmann tags: trunk) | |
12:04 | Bug fix: sqliteFree() called twice on the same allocation during error handling in attach.c. (CVS 1020) (check-in: 9ec40935b9 user: drh tags: trunk) | |
Changes
Changes to Makefile.in.
︙ | ︙ | |||
163 164 165 166 167 168 169 | # 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.la: $(LIBOBJ) | | > | > | 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | # 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.la: $(LIBOBJ) $(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(exec_prefix)/lib \ -version-info "5:3:5" libtclsqlite.la: tclsqlite.lo libsqlite.la $(LIBTOOL) $(TCC) -o libtclsqlite.la tclsqlite.lo \ libsqlite.la $(LIBTCL) -rpath $(exec_prefix)/lib \ -version-info "0:0:0" sqlite: $(TOP)/src/shell.c libsqlite.la sqlite.h $(LIBTOOL) $(TCC) $(READLINE_FLAGS) -o sqlite $(TOP)/src/shell.c \ libsqlite.la $(LIBREADLINE) -rpath $(exec_prefix)/lib # This target creates a directory named "tsrc" and fills it with # copies of all of the C source code and header files needed to |
︙ | ︙ | |||
447 448 449 450 451 452 453 | rm -f lemon lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) rm -f *.da *.bb *.bbg gmon.out rm -f testfixture test.db rm -rf doc distclean: clean | | | 449 450 451 452 453 454 455 456 | rm -f lemon lempar.c parse.* sqlite*.tar.gz rm -f $(PUBLISH) rm -f *.da *.bb *.bbg gmon.out rm -f testfixture test.db rm -rf doc distclean: clean rm -f config.log config.status libtool Makefile config.h |