Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix #3053: bashism (CVS 5006) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7217cecee71fbc992acd07b4ac90c192 |
User & Date: | mlcreech 2008-04-14 22:57:55.000 |
Context
2008-04-14
| ||
23:13 | Do not attempt to write to temporary database files that have never been opened. (CVS 5007) (check-in: 7bb9a4165a user: drh tags: trunk) | |
22:57 | Fix #3053: bashism (CVS 5006) (check-in: 7217cecee7 user: mlcreech tags: trunk) | |
17:42 | Fix alignment issue in instrumentation code. (CVS 5005) (check-in: c9e0d625bc user: danielk1977 tags: trunk) | |
Changes
Changes to configure.
︙ | ︙ | |||
1943 1944 1945 1946 1947 1948 1949 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # The following RCS revision string applies to configure.in | | | 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # The following RCS revision string applies to configure.in # $Revision: 1.58 $ ######### # Programs needed # # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then enableval=$enable_shared; p=${PACKAGE-default} |
︙ | ︙ | |||
20111 20112 20113 20114 20115 20116 20117 | fi if test "$TARGET_EXEEXT" = ".exe"; then if test $OS2_SHELL ; then OS_UNIX=0 OS_WIN=0 OS_OS2=1 CFLAGS="$CFLAGS -DOS_OS2=1" | | | 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 | fi if test "$TARGET_EXEEXT" = ".exe"; then if test $OS2_SHELL ; then OS_UNIX=0 OS_WIN=0 OS_OS2=1 CFLAGS="$CFLAGS -DOS_OS2=1" if test "$ac_compiler_gnu" = "yes" ; then CFLAGS="$CFLAGS -Zomf -Zexe -Zmap" BUILD_CFLAGS="$BUILD_CFLAGS -Zomf -Zexe" fi else OS_UNIX=0 OS_WIN=1 OS_OS2=0 |
︙ | ︙ |
Changes to configure.ac.
︙ | ︙ | |||
88 89 90 91 92 93 94 | # the corresponding code. # AC_INIT(sqlite, m4_esyscmd([cat VERSION | tr -d '\n'])) 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 | | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | # the corresponding code. # AC_INIT(sqlite, m4_esyscmd([cat VERSION | tr -d '\n'])) 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.44 $ ######### # Programs needed # AC_PROG_LIBTOOL AC_PROG_INSTALL AC_PROG_AWK |
︙ | ︙ | |||
335 336 337 338 339 340 341 | fi if test "$TARGET_EXEEXT" = ".exe"; then if test $OS2_SHELL ; then OS_UNIX=0 OS_WIN=0 OS_OS2=1 CFLAGS="$CFLAGS -DOS_OS2=1" | | | 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | fi if test "$TARGET_EXEEXT" = ".exe"; then if test $OS2_SHELL ; then OS_UNIX=0 OS_WIN=0 OS_OS2=1 CFLAGS="$CFLAGS -DOS_OS2=1" if test "$ac_compiler_gnu" = "yes" ; then CFLAGS="$CFLAGS -Zomf -Zexe -Zmap" BUILD_CFLAGS="$BUILD_CFLAGS -Zomf -Zexe" fi else OS_UNIX=0 OS_WIN=1 OS_OS2=0 |
︙ | ︙ |