Overview
| Comment: | * configure.in: moved the tlib check before the libreadline check |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
769067ae30208278b09831abecb82612 |
| User & Date: | johannes@zellner.org on 2000-11-19 14:13:02.000 |
| Other Links: | manifest | tags |
Context
|
2000-12-08
| ||
| 00:45 | * reenabled wishrl and tclshrl via configure switches check-in: d9a3eefbfc user: johannes@zellner.org tags: trunk, tclreadline-2-1-0 | |
|
2000-11-19
| ||
| 14:13 | * configure.in: moved the tlib check before the libreadline check check-in: 769067ae30 user: johannes@zellner.org tags: trunk | |
|
2000-09-29
| ||
| 18:38 | Fri Sep 29 20:37:27 CEST 2000 check-in: 36440946cb user: johannes@zellner.org tags: trunk | |
Changes
Modified ChangeLog
from [9c619311ab]
to [6c08b01ee3].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 | + + + + |
2000-11-19 Johannes Zellner <johannes@zellner.org>
* configure.in: moved the tlib check before the libreadline check
2000-09-20 Johannes Zellner <johannes@zellner.org>
* made tclreadline.h installing to ${prefix}/include
2000-08-27 Johannes Zellner <johannes@zellner.org>
* added Mark to AUTHORS :)
|
| ︙ |
Modified configure.in
from [6cd3ac975c]
to [aba8bc33bd].
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" |
| ︙ | |||
120 121 122 123 124 125 126 127 128 129 130 131 132 133 | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | + + + + + + + + + + + + + + + + + + + + + + + |
Can't find tcl.h. Use --with-tcl-includes to specify the directory
containing tcl.h on your system.])
else
AC_MSG_RESULT($TCL_INCLUDE_DIR/tcl.h)
fi
# ---
# check for the terminal library.
# ---
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)
if test $brk = "yes"; then
HAVE_TLIB=yes
break
fi
done
if test "x" = "x$HAVE_TLIB"; then
AC_MSG_ERROR([
no terminal library found. Please retry with the --with-tlib argument.
])
fi
)
#--------------------------------------------------------------------
# Check for readline.h
#--------------------------------------------------------------------
AC_ARG_WITH(readline-includes,
[ --with-readline-includes=DIR readline include files in DIR],
|
| ︙ | |||
164 165 166 167 168 169 170 | 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | - - - - - - - - - - - - - - - - - - - - - - |
Your readline version does not support readline's alternate interface.
Please upgrade to readline >= 2.2 and retry.
])
exit
)
)
|
| ︙ |