Overview
Comment: | * configure.in: changed a == to = in a sh test (reported by "Daniel O'Connor" <darius@dons.net.au>) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5096b666f4887baa32098a4c9331971e |
User & Date: | johannes@zellner.org on 2000-07-27 13:14:23 |
Other Links: | manifest | tags |
Context
2000-08-27
| ||
13:23 | Made readline an object command to fix a number of memory leaks. Added commands "readline text" to retrieve the current input and "readline update" to redraw the current input. check-in: 357858a659 user: mpatton@jhu.edu tags: trunk | |
2000-07-27
| ||
13:14 | * configure.in: changed a == to = in a sh test (reported by "Daniel O'Connor" <darius@dons.net.au>) check-in: 5096b666f4 user: johannes@zellner.org tags: trunk | |
2000-07-21
| ||
19:01 | Fri Jul 21 21:00:32 CEST 2000 check-in: b59f593e02 user: johannes@zellner.org tags: trunk | |
Changes
Modified ChangeLog from [79d99795ec] to [048d296ceb].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | + + + + + | 2000-07-27 Johannes Zellner <johannes@zellner.org> * configure.in: changed a == to = in a sh test (reported by "Daniel O'Connor" <darius@dons.net.au>) 2000-07-03 Johannes Zellner <johannes@zellner.org> * Makefile.am: included EXTRA_DIST so that it compiles from `dist' 2000-07-01 Johannes Zellner <johannes@zellner.org> * switched to automake |
︙ |
Modified configure.in from [e9dde35018] to [559b0281b5].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | - + - + | dnl -*- autoconf -*- dnl FILE: "/home/joze/src/tclreadline/configure.in" |
︙ | |||
180 181 182 183 184 185 186 | 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | - + | AC_ARG_WITH(tlib-library, [ --with-tlib-library=DIR lib spec to tlib (e.g. '-L/usr/local/lib -lncurses')], LIBS="$LIBS $withval", for tlib in ncurses termlib termcap curses; do brk=yes AC_CHECK_LIB($tlib, tputs, , brk=no) |
︙ |