Overview
| Comment: | Makefile.in README configure.in |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4fd859be75818fa84eec8bccf75357b4 |
| User & Date: | johannes@zellner.org on 1999-08-20 13:53:43.000 |
| Other Links: | manifest | tags |
Context
|
1999-08-20
| ||
| 13:59 | Makefile.in check-in: 915c7e11ba user: johannes@zellner.org tags: trunk | |
| 13:53 | Makefile.in README configure.in check-in: 4fd859be75 user: johannes@zellner.org tags: trunk | |
| 13:41 | sources check-in: fba2a11ea2 user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in
from [0257af5dc0]
to [4c0cb09a3f].
1 2 | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" | | | 1 2 3 4 5 6 7 8 9 10 | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" # LAST MODIFICATION: "Fri Aug 20 15:51:56 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
| ︙ | ︙ | |||
153 154 155 156 157 158 159 160 161 162 163 164 165 |
OBJS = tclreadline.o
CSRCS = $(TOP_DIR)/tclreadline.c
TCLFILES = tclreadlineInit.tcl tclreadlineSetup.tcl
SOURCES = \
Makefile.in \
configure.in \
tclreadline.c \
tclreadline.h.in \
tclreadlineConfig.sh.in \
tclreadlineInit.tcl.in \
| > > > > > > > | < < < | 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
OBJS = tclreadline.o
CSRCS = $(TOP_DIR)/tclreadline.c
TCLFILES = tclreadlineInit.tcl tclreadlineSetup.tcl
SOURCES = \
GPL \
Makefile.in \
README \
TODO \
configure.in \
pkgIndex.tcl.in \
sample.tclshrc \
sources \
tclreadline.c \
tclreadline.h.in \
tclreadline.n.in \
tclreadlineConfig.sh.in \
tclreadlineInit.tcl.in \
tclreadlineSetup.tcl.in
AUXILIARY = \
aux/config.guess \
aux/config.sub \
aux/install-sh \
aux/mkinstalldirs \
aux/vimtags
|
| ︙ | ︙ |
Modified README
from [ae2b4b25fc]
to [c2558b32bb].
1 2 |
FILE: "/diska/home/joze/src/tclreadline/README"
| | | 1 2 3 4 5 6 7 8 9 10 |
FILE: "/diska/home/joze/src/tclreadline/README"
LAST MODIFICATION: "Fri Aug 20 15:53:03 1999 (joze)"
(C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
$Id$
---
tclreadline -- gnu readline for tcl
Copyright (C) 1999 Johannes Zellner
|
| ︙ | ︙ | |||
29 30 31 32 33 34 35 | 1. Introduction --------------- This directory contains the sources and documentation for tclreadline, which builds a connection between tcl and the gnu readline. | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 1. Introduction --------------- This directory contains the sources and documentation for tclreadline, which builds a connection between tcl and the gnu readline. The information here corresponds to release 1.0. 2. Documentation ---------------- The tclreadline.n nroff man page in this release contains the reference manual entries for tclreadline. If you only want to use tclreadline as a tool for interactive script development, you don't have to read this |
| ︙ | ︙ |
Modified configure.in
from [2d822276ab]
to [8b6b93a489].
1 2 | # -*- autoconf -*- # FILE: "/diska/home/joze/src/tclreadline/configure.in" | | | 1 2 3 4 5 6 7 8 9 10 | # -*- autoconf -*- # FILE: "/diska/home/joze/src/tclreadline/configure.in" # LAST MODIFICATION: "Fri Aug 20 15:52:19 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
| ︙ | ︙ | |||
31 32 33 34 35 36 37 | dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. AC_REVISION($Revision$) AC_INIT(tclreadline.c) | | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. AC_REVISION($Revision$) AC_INIT(tclreadline.c) TCLREADLINE_MAJOR_VERSION=1 TCLREADLINE_MINOR_VERSION=0 TCLREADLINE_VERSION=$TCLREADLINE_MAJOR_VERSION.$TCLREADLINE_MINOR_VERSION VERSION=$TCLREADLINE_VERSION AC_PREREQ(2.13) AC_CONFIG_AUX_DIR(./aux) AC_CANONICAL_HOST |
| ︙ | ︙ |