Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | configure script bug (CVS 133) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c773a449b1f152a83c93a26e169f60c4 |
User & Date: | drh 2000-08-18 09:33:40.000 |
Context
2000-08-18
| ||
09:34 | configure script bug (CVS 134) (check-in: 862b649204 user: drh tags: trunk) | |
09:33 | configure script bug (CVS 133) (check-in: c773a449b1 user: drh tags: trunk) | |
2000-08-17
| ||
10:25 | Version 1.0 (CVS 499) (check-in: f37dd18e3f user: drh tags: trunk) | |
Changes
Changes to VERSION.
|
| | | 1 | 1.0.1 |
Changes to configure.in.
︙ | ︙ | |||
142 143 144 145 146 147 148 | # 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. # | | | | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | # 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.6 $ ######### # Make sure we are not building in a subdirectory of the source tree. # changequote(<<<,>>>) temp=`echo $srcdir | grep '[^./]'` changequote([,]) |
︙ | ︙ |
Changes to www/changes.tcl.
︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 Aug 17 (Version 1.0)} { <li>Change the <b>sqlite</b> program so that it can read databases for which it lacks write permission. (It used to refuse all access if it could not write.)</li> } | > > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | } proc chng {date desc} { puts "<DT><B>$date</B></DT>" puts "<DD><P><UL>$desc</UL></P></DD>" } chng {2000 Aug 18 (Version 1.0.1)} { <li>Fix a bug in the configure script.</li> } chng {2000 Aug 17 (Version 1.0)} { <li>Change the <b>sqlite</b> program so that it can read databases for which it lacks write permission. (It used to refuse all access if it could not write.)</li> } |
︙ | ︙ |