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 | # -*- make -*- | | | | 1 2 3 4 5 6 7 8 9 10 | # -*- make -*- # FILE: "/disk01/home/joze/src/tclreadline/Makefile.in" # LAST MODIFICATION: "Mon Sep 20 02:18:01 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
| ︙ | ︙ | |||
188 189 190 191 192 193 194 195 196 197 198 199 |
aux/mkinstalldirs \
aux/vimtags
MAN = tclreadline.n
HTML = tclreadline.n.html
CIFLAGS = -f -t-"gnu readline for tcl" -m"before initial relase"
.PHONY: clean distclean ctags tcltags vimtags tags ci co
.SUFFIXES: .c .o .so .sl .tcl
| > > < | 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
@TCLREADLINE_LIB_FILE@: ${OBJS}
rm -f $(TCLREADLINE_LIB_FILE)
@MAKE_LIB@ $(TERMLIB_DIR) $(READLINE_LIB) $(TERMLIB)
$(RANLIB) $(TCLREADLINE_LIB_FILE)
|
| ︙ | ︙ |
Modified config.h.in
from [2aa2f18478]
to [b28c871052].
1 2 3 | /* ================================================================== | | | | 1 2 3 4 5 6 7 8 9 10 11 12 |
/* ==================================================================
FILE: "/disk01/home/joze/src/tclreadline/config.h.in"
LAST MODIFICATION: "Mon Sep 20 02:20:49 1999 (joze)"
(C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
$Id$
vim:set ft=c:
---
tclreadline -- gnu readline for tcl
Copyright (C) 1999 Johannes Zellner
|
| ︙ | ︙ | |||
30 31 32 33 34 35 36 |
================================================================== */
#undef EXECUTING_MACRO_HACK
#undef CLEANUP_AFER_SIGNAL
| > > | 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 | # -*- autoconf -*- # FILE: "/disk01/home/joze/src/tclreadline/configure.in" | | | 1 2 3 4 5 6 7 8 9 10 | # -*- autoconf -*- # FILE: "/disk01/home/joze/src/tclreadline/configure.in" # LAST MODIFICATION: "Mon Sep 20 02:37:03 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
| ︙ | ︙ | |||
46 47 48 49 50 51 52 | 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'` | | | 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'` TCLREADLINE_LPATH="$TCLREADLINE_LPATH /usr/local/lib /lib /usr/lib /usr/shlib" #-------------------------------------------------------------------- # See if there was a command-line option for where Tcl is; if # not, search for Tcl. #-------------------------------------------------------------------- |
| ︙ | ︙ | |||
296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
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)
fi
#--------------------------------------------------------------------
# Check for libreadline
#--------------------------------------------------------------------
| > > > > | 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
#--------------------------------------------------------------------
|
| ︙ | ︙ | |||
422 423 424 425 426 427 428 | # check for readline's (macro.c) private variable # _rl_executing_macro. AC_MSG_CHECKING([for _rl_executing_macro in -lreadline]) AC_TRY_LINK(,[ extern char* _rl_executing_macro; | < < | < < | | 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(,[
extern char* _rl_executing_macro;
_rl_executing_macro = (char*) 0;
],
AC_MSG_RESULT(yes); AC_DEFINE_UNQUOTED(EXECUTING_MACRO_HACK, 1),
AC_MSG_RESULT(no))
# check for readline's rl_cleanup_after_signal
AC_MSG_CHECKING([for rl_cleanup_after_signal() in -lreadline])
AC_TRY_LINK(,[
extern void rl_cleanup_after_signal();
rl_cleanup_after_signal();
],
AC_MSG_RESULT(yes); AC_DEFINE_UNQUOTED(CLEANUP_AFER_SIGNAL, 1),
AC_MSG_RESULT(no))
AC_MSG_CHECKING([for the readline version number])
AC_TRY_RUN([
#include <stdio.h>
|
| ︙ | ︙ |
Modified tclreadline.c
from [448ae7324b]
to [398f5435ff].
1 2 3 | /* ================================================================== | | | | 1 2 3 4 5 6 7 8 9 10 11 12 |
/* ==================================================================
FILE: "/disk01/home/joze/src/tclreadline/tclreadline.c"
LAST MODIFICATION: "Mon Sep 20 02:20:33 1999 (joze)"
(C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
$Id$
---
tclreadline -- gnu readline for tcl
Copyright (C) 1999 Johannes Zellner
|
| ︙ | ︙ | |||
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # include "config.h" #endif #include <tcl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <readline/readline.h> #include <readline/history.h> /** * this prototype is missing * in readline.h */ void rl_extend_line_buffer(int len); | > > > > > > | 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 #include <readline/readline.h> #include <readline/history.h> #endif /** * this prototype is missing * in readline.h */ void rl_extend_line_buffer(int len); |
| ︙ | ︙ |