Index: Makefile.in =================================================================== RCS file: /sqlite/sqlite/Makefile.in,v retrieving revision 1.87 diff -u -p -u -p -r1.87 Makefile.in --- Makefile.in 26 Mar 2004 23:16:32 -0000 1.87 +++ Makefile.in 29 Nov 2004 06:19:31 -0000 @@ -79,6 +79,8 @@ ifeq (${INMEMORYDB},0) INCOREFLAGS += -DSQLITE_OMIT_INMEMORYDB=1 endif +VPATH = doc + # You should not have to change anything below this line ############################################################################### @@ -192,7 +194,7 @@ libsqlite.la: $(LIBOBJ) libtclsqlite.la: tclsqlite.lo libsqlite.la $(LTLINK) -o libtclsqlite.la tclsqlite.lo \ - libsqlite.la $(LIBTCL) -rpath @exec_prefix@/lib/sqlite \ + $(LIBOBJ) $(LIBTCL) -rpath @libdir@/sqlite \ -version-info "8:6:8" sqlite@TARGET_EXEEXT@: $(TOP)/src/shell.c libsqlite.la sqlite.h @@ -392,8 +394,8 @@ vdbe.html: $(TOP)/www/vdbe.tcl arch.html: $(TOP)/www/arch.tcl tclsh $(TOP)/www/arch.tcl >arch.html -arch.png: $(TOP)/www/arch.png - cp $(TOP)/www/arch.png . +arch2.gif: $(TOP)/www/arch2.gif + cp $(TOP)/www/arch2.gif . opcode.html: $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c tclsh $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html @@ -444,7 +446,7 @@ DOC = \ lang.html \ opcode.html \ arch.html \ - arch.png \ + arch2.gif \ vdbe.html \ c_interface.html \ mingw.html \ @@ -462,7 +464,7 @@ DOC = \ doc: $(DOC) mkdir -p doc - mv $(DOC) doc + for f in $(DOC); do if [ -e $$f ]; then mv -f $$f doc; fi; done install: sqlite libsqlite.la sqlite.h $(INSTALL) -d $(DESTDIR)$(exec_prefix)/lib Index: copyright.html =================================================================== RCS file: copyright.html diff -N copyright.html --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ copyright.html 29 Nov 2004 06:19:31 -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 +