Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 1698) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
662fa612dcc6f645edf95058fcfc7024 |
User & Date: | drh 2000-06-12 17:49:11.000 |
Context
2000-06-12
| ||
17:49 | :-) (CVS 96) (check-in: 36c2b059ac user: drh tags: trunk) | |
17:49 | :-) (CVS 1698) (check-in: 662fa612dc user: drh tags: trunk) | |
12:36 | :-) (CVS 95) (check-in: 547e8b927b user: drh tags: trunk) | |
Changes
Changes to configure.in.
︙ | ︙ | |||
147 148 149 150 151 152 153 | # the corresponding code. # AC_INIT(src/sqlite.h) 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 | | | 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | # the corresponding code. # AC_INIT(src/sqlite.h) 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.3 $ ######### # Make sure we are not building in a subdirectory of the source tree. # changequote(<<<,>>>) temp=`echo $srcdir | grep '[^./]'` changequote([,]) |
︙ | ︙ | |||
438 439 440 441 442 443 444 | AC_MSG_CHECKING([GDBM header files]) found=no if test "$config_TARGET_GDBM_INC" != ""; then TARGET_GDBM_INC=$config_TARGET_GDBM_INC found=yes fi if test "$found" = "yes"; then | | | 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 | AC_MSG_CHECKING([GDBM header files]) found=no if test "$config_TARGET_GDBM_INC" != ""; then TARGET_GDBM_INC=$config_TARGET_GDBM_INC found=yes fi if test "$found" = "yes"; then AC_MSG_RESULT($TARGET_GDBM_INC) else AC_MSG_RESULT(not specified: still searching...) AC_CHECK_HEADER(gdbm.h, [found=yes]) fi if test "$found" = "no"; then for dir in /usr/local /usr/pkg /usr/contrib; do AC_CHECK_FILE($dir/include/gdbm.h, found=yes) |
︙ | ︙ |