Overview
| Comment: | Makefile.in config.h.in configure.in tclreadline.c |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
67dcbf090f39d3e821a552a77ac56914 |
| User & Date: | johannes@zellner.org on 1999-09-20 00:39:01.000 |
| Other Links: | manifest | tags |
Context
|
1999-09-20
| ||
| 16:16 | configure.in check-in: dd60975ba5 user: johannes@zellner.org tags: trunk | |
| 00:39 | Makefile.in config.h.in configure.in tclreadline.c check-in: 67dcbf090f user: johannes@zellner.org tags: trunk | |
|
1999-09-19
| ||
| 23:58 | configure.in check-in: c5d46281e7 user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in
from [406022c969]
to [3db6e33c87].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | # -*- make -*- |
| ︙ | |||
188 189 190 191 192 193 194 195 196 197 198 199 | 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | + + - |
aux/mkinstalldirs \
aux/vimtags
MAN = tclreadline.n
HTML = tclreadline.n.html
CIFLAGS = -f -t-"gnu readline for tcl" -m"before initial relase"
all: $(TCLREADLINE_LIB_FILE)
.PHONY: clean distclean ctags tcltags vimtags tags ci co
.SUFFIXES: .c .o .so .sl .tcl
|
| ︙ |
Modified config.h.in
from [2aa2f18478]
to [b28c871052].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 | - - + + | /* ================================================================== |
| ︙ | |||
30 31 32 33 34 35 36 | 30 31 32 33 34 35 36 37 38 | + + |
================================================================== */
#undef EXECUTING_MACRO_HACK
#undef CLEANUP_AFER_SIGNAL
#undef READLINE_LIBRARY
|
Modified configure.in
from [cc174e08b6]
to [6f48a841a3].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # -*- autoconf -*- # FILE: "/disk01/home/joze/src/tclreadline/configure.in" |
| ︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - + | AC_PREREQ(2.13) AC_CONFIG_AUX_DIR(./aux) AC_CANONICAL_HOST TCLREADLINE_LPATH=`echo $LD_LIBRARY_PATH $LD_RUN_PATH $LPATH | sed 's/:/ /g'` |
| ︙ | |||
296 297 298 299 300 301 302 303 304 305 306 307 308 309 | 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | + + + + |
if test -z "$READLINE_INCLUDE_DIR"; then
AC_MSG_ERROR([
Can't find readline.h.
Use --with-readline-includes to specify the directory
containing readline.h on your system.])
else
AC_MSG_RESULT($READLINE_INCLUDE_DIR/readline.h)
base="`(basename ${READLINE_INCLUDE_DIR}) 2>/dev/null`"
if test "x${base}" != "xreadline"; then
AC_DEFINE_UNQUOTED(READLINE_LIBRARY, 1)
fi
fi
#--------------------------------------------------------------------
# Check for libreadline
#--------------------------------------------------------------------
|
| ︙ | |||
421 422 423 424 425 426 427 | 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | - + - - + - - + - + - - + - - + | # check for readline's (macro.c) private variable # _rl_executing_macro. AC_MSG_CHECKING([for _rl_executing_macro in -lreadline]) AC_TRY_LINK(,[ |
| ︙ |
Modified tclreadline.c
from [448ae7324b]
to [398f5435ff].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 | - - + + | /* ================================================================== |
| ︙ | |||
32 33 34 35 36 37 38 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | + + + + + - - + + + | # include "config.h" #endif #include <tcl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #if defined (READLINE_LIBRARY) # include <readline.h> # include <history.h> #else |
| ︙ |