Overview
| Comment: | Fri Dec 8 01:50:05 CET 2000 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk | tclreadline-2-1-0a |
| Files: | files | file ages | folders |
| SHA1: |
7695f3855b5c55d7786b17cc9234ebdd |
| User & Date: | johannes@zellner.org on 2000-12-08 00:50:51.000 |
| Other Links: | manifest | tags |
Context
|
2001-01-10
| ||
| 05:32 | * configure.in: changed the check for readline/readline.h / readline.h changed 2000 to 2001 in all places check-in: 9687cda552 user: johannes@zellner.org tags: trunk, pre-dizzi | |
|
2000-12-08
| ||
| 00:50 | Fri Dec 8 01:50:05 CET 2000 check-in: 7695f3855b user: johannes@zellner.org tags: trunk, tclreadline-2-1-0a | |
| 00:45 | * reenabled wishrl and tclshrl via configure switches check-in: d9a3eefbfc user: johannes@zellner.org tags: trunk, tclreadline-2-1-0 | |
Changes
Modified ChangeLog
from [c4a5fe325f]
to [e5a28c8a46].
1 2 3 4 5 6 7 |
2000-12-08 Johannes Zellner <johannes@zellner.org>
* reenabled wishrl and tclshrl via configure switches
2000-11-19 Johannes Zellner <johannes@zellner.org>
| > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 |
2000-12-08 Johannes Zellner <johannes@zellner.org>
* reordered Makefile.am so that it always includes
tclshrl.c,wishrl.c into the distribution.
2000-12-08 Johannes Zellner <johannes@zellner.org>
* reenabled wishrl and tclshrl via configure switches
2000-11-19 Johannes Zellner <johannes@zellner.org>
|
| ︙ | ︙ |
Modified Makefile.am
from [b2c462c121]
to [96dca24115].
1 2 | ## -*- automake -*- ## FILE: "/home/joze/src/tclreadline/Makefile.am" | | | 1 2 3 4 5 6 7 8 9 10 | ## -*- automake -*- ## FILE: "/home/joze/src/tclreadline/Makefile.am" ## LAST MODIFICATION: "Fre, 08 Dez 2000 01:47:52 +0100 (joze)" ## (C) 2000 by Johannes Zellner, <johannes@zellner.org> ## $Id$ ## --- ## tclreadline -- gnu readline for tcl ## http://www.zellner.org/tclreadline/ ## Copyright (c) 1998 - 2000, Johannes Zellner <johannes@zellner.org> ## This software is copyright under the BSD license. |
| ︙ | ︙ | |||
34 35 36 37 38 39 40 |
aux/ltconfig \
aux/ltmain.sh \
aux/missing \
aux/mkinstalldirs
if STATIC_TCLSHRL
static_tclshrl = tclshrl
| < < > > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
aux/ltconfig \
aux/ltmain.sh \
aux/missing \
aux/mkinstalldirs
if STATIC_TCLSHRL
static_tclshrl = tclshrl
tclshrl_LDADD = libtclreadline.la $(TCL_LIB_SPEC)
tclshrl_LDFLAGS = -static
endif
if STATIC_WISHRL
static_wishrl = wishrl
wishrl_LDADD = libtclreadline.la $(TCL_LIB_SPEC) $(TK_LIB_SPEC)
wishrl_LDFLAGS = -static
endif
bin_PROGRAMS = $(static_tclshrl) $(static_wishrl)
tclshrl_SOURCES = tclshrl.c
wishrl_SOURCES = wishrl.c
man_MANS = tclreadline.n
|