Index: Makefile.in =================================================================== RCS file: /sqlite/sqlite/Makefile.in,v retrieving revision 1.125 diff -u -p -u -p -r1.125 Makefile.in --- Makefile.in 25 May 2005 04:11:56 -0000 1.125 +++ Makefile.in 3 Jun 2005 23:16:04 -0000 @@ -36,7 +36,7 @@ TCC += @TARGET_DEBUG@ # Compiler options needed for programs that use the TCL library. # -TCC += @TCL_INCLUDE_SPEC@ +TCC += @TCL_INCLUDE_SPEC@ -DUSE_TCL_STUBS # The library that programs using TCL must link against. # @@ -104,6 +104,8 @@ LTCOMPILE = $(LIBTOOL) --mode=compile $( LTLINK = $(LIBTOOL) --mode=link $(TCC) LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL) +VPATH = doc + # You should not have to change anything below this line ############################################################################### @@ -232,7 +234,7 @@ libsqlite3.la: $(LIBOBJ) libtclsqlite3.la: tclsqlite.lo libsqlite3.la $(LTLINK) -o libtclsqlite3.la tclsqlite.lo \ $(LIBOBJ) @TCL_STUB_LIB_SPEC@ $(LIBPTHREAD) \ - -rpath $(libdir)/sqlite \ + -rpath $(libdir)/sqlite3 \ -version-info "8:6:8" sqlite3$(TEXE): $(TOP)/src/shell.c libsqlite3.la sqlite3.h @@ -556,6 +558,7 @@ version3.html: $(TOP)/www/version3.tcl # DOC = \ arch.html \ + arch2.gif \ autoinc.html \ c_interface.html \ capi3.html \ @@ -593,7 +596,7 @@ DOC = \ doc: common.tcl $(DOC) mkdir -p doc - mv $(DOC) doc + for f in $(DOC); do if [ -e $$f ]; then mv -f $$f doc; fi; done install: sqlite3 libsqlite3.la sqlite3.h ${HAVE_TCL:1=tcl_install} $(INSTALL) -d $(DESTDIR)$(libdir) Index: copyright.html =================================================================== RCS file: copyright.html diff -N copyright.html --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ copyright.html 3 Jun 2005 23:16:05 -0000 @@ -0,0 +1,59 @@ +
+The original author of SQLite has dedicated the code to the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute +the original SQLite code, either in source code form or as a compiled binary, +for any purpose, commerical or non-commerical, and by any means. +
+ ++In order to keep SQLite complete free and unencumbered by copyright, +other contributors to the SQLite code base are asked to likewise dedicate +their contributions to the public domain. +If you want to send a patch or enhancement for possible inclusion in the +SQLite source tree, please accompany the patch with the following statement: +
+ ++The author or authors of this code dedicate any and all copyright interest +in this code to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and successors. +We intend this dedication to be an overt act of relinquishment in +perpetuity of all present and future rights this code under copyright law. ++ +
+Regrettably, as of 2003 October 20, +we will no longer be able to accept patches or changes to +SQLite that are not accompanied by a statement such as the above. +In addition, if you make +changes or enhancements as an employee, then a simple statement such as the +above is insufficient. You must also send by surface mail a copyright release +signed by a company officer. +A signed original of the copyright release should be mailed to:
+ ++Hwaci+ +
+6200 Maple Cove Lane
+Charlotte, NC 28269
+USA +
+A template copyright release is available +in PDF or +HTML. +You can use this release to make future changes. If you have contributed +changes or enhancements to SQLite in the past, and have not already done +so, you are invited to complete and sign a copy of the template and mail +it to the address above. +
+ + +This page last modified on 2004/05/31 16:04:08 +