Overview
Comment: | Modified Files: proto tcltags Modified Files: Makefile.in configure.in tclreadline.n.in |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
21fd843ef9133fb9e81e4dd07f34e05f |
User & Date: | johannes@zellner.org on 1999-08-30 12:29:32 |
Other Links: | manifest | tags |
Context
1999-09-01
| ||
03:22 | Modified Files: README tclreadlineSetup.tcl.in Added Files: Makefile.in tclreadline.c tclreadlineConfig.sh.in tclreadlineInit.tcl.in check-in: b7f4ea7980 user: johannes@zellner.org tags: trunk | |
1999-08-30
| ||
12:29 | Modified Files: proto tcltags Modified Files: Makefile.in configure.in tclreadline.n.in check-in: 21fd843ef9 user: johannes@zellner.org tags: trunk | |
1999-08-29
| ||
23:56 | tclreadlineSetup.tcl.in check-in: f99d41820c user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in from [7eb121a1a9] to [034eadb447].
1 | # -*- make -*- | | | | 1 2 3 4 5 6 7 8 9 10 | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" # LAST MODIFICATION: "Mon Aug 30 14:13:02 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
︙ | ︙ | |||
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | ci: $(SOURCES) ci -u $(CIFLAGS) $^ co: $(SOURCES) co -l $^ distribution: $(SOURCES) configure $(AUXILIARY) tclreadline.n.html - mkdir -p dist/tclreadline-$(PATCHLEVEL)/aux - cp $(SOURCES) configure tclreadline.n.html dist/tclreadline-$(PATCHLEVEL) - cp $(AUXILIARY) dist/tclreadline-$(PATCHLEVEL)/aux (cd dist; tar zcvf tclreadline-$(PATCHLEVEL).tar.gz tclreadline-$(PATCHLEVEL); rm -rf tclreadline-$(PATCHLEVEL)) # DO NOT DELETE THIS LINE -- make depend depends on it. | > | 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | ci: $(SOURCES) ci -u $(CIFLAGS) $^ co: $(SOURCES) co -l $^ dist: distribution distribution: $(SOURCES) configure $(AUXILIARY) tclreadline.n.html - mkdir -p dist/tclreadline-$(PATCHLEVEL)/aux - cp $(SOURCES) configure tclreadline.n.html dist/tclreadline-$(PATCHLEVEL) - cp $(AUXILIARY) dist/tclreadline-$(PATCHLEVEL)/aux (cd dist; tar zcvf tclreadline-$(PATCHLEVEL).tar.gz tclreadline-$(PATCHLEVEL); rm -rf tclreadline-$(PATCHLEVEL)) # DO NOT DELETE THIS LINE -- make depend depends on it. |
Modified configure.in from [a0b87e53a8] to [a0c47e134a].
1 | # -*- autoconf -*- | | | | 1 2 3 4 5 6 7 8 9 10 | # -*- autoconf -*- # FILE: "/diska/home/joze/src/tclreadline/configure.in" # LAST MODIFICATION: "Mon Aug 30 11:04:20 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
︙ | ︙ | |||
62 63 64 65 66 67 68 | [ --with-tcl=DIR where to look for tclConfig.sh], tcl_search=$withval, tcl_search="" ) AC_MSG_CHECKING([which tclConfig.sh to use]) TCL_LIB_DIR="" | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | [ --with-tcl=DIR where to look for tclConfig.sh], tcl_search=$withval, tcl_search="" ) AC_MSG_CHECKING([which tclConfig.sh to use]) TCL_LIB_DIR="" for dir in $tcl_search /usr/lib /usr/local/lib $exec_prefix/lib /usr/local/lib/unix /opt/tcl/lib; do if test -r $dir/tclConfig.sh; then TCL_LIB_DIR=$dir break fi done if test -z "$TCL_LIB_DIR"; then |
︙ | ︙ | |||
280 281 282 283 284 285 286 | AC_ARG_WITH(readline-includes, [ --with-readline-includes=DIR readline include files in DIR], rl_includes=$withval, rl_includes=$prefix/include) AC_MSG_CHECKING([where to look for readline.h]) READLINE_INCLUDE_DIR="" | | | 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | AC_ARG_WITH(readline-includes, [ --with-readline-includes=DIR readline include files in DIR], rl_includes=$withval, rl_includes=$prefix/include) AC_MSG_CHECKING([where to look for readline.h]) READLINE_INCLUDE_DIR="" for dir in $rl_includes $prefix/include/readline /usr/include/readline /usr/include; do if test -r $dir/readline.h; then READLINE_INCLUDE_DIR=$dir break fi done if test -z "$READLINE_INCLUDE_DIR"; then |
︙ | ︙ |
Modified tclreadline.n.in from [cb3eb62601] to [9b636f5135].
1 2 3 | .TH tclreadline n "@TCLREADLINE_VERSION@.@TCLREADLINE_PATCHLEVEL@" "Johannes Zellner" .\" (C) 1999 by Johannes Zellner | | | | 1 2 3 4 5 6 7 8 9 10 11 12 | .TH tclreadline n "@TCLREADLINE_VERSION@.@TCLREADLINE_PATCHLEVEL@" "Johannes Zellner" .\" (C) 1999 by Johannes Zellner .\" FILE: "/diska/home/joze/src/tclreadline/tclreadline.n.in" .\" LAST MODIFICATION: "Mon Aug 30 14:12:14 1999 (joze)" .\" (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> .\" $Id$ .\" --- .\" .\" tclreadline -- gnu readline for the tcl scripting language .\" Copyright (C) 1999 Johannes Zellner .\" |
︙ | ︙ | |||
316 317 318 319 320 321 322 | .SH "CONTRIBUTIONS, SUGGESTIONS AND PATCHES" Magnus Eriksson <magnus.eriksson@netinsight.se>, Les Johnson <les@infolabs.com>, Harald Kirsch <kir@iitb.fhg.de>, Christian Krone <krischan@sql.de>, Larry W. Virden <lvirden@cas.org>, | | > | 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 | .SH "CONTRIBUTIONS, SUGGESTIONS AND PATCHES" Magnus Eriksson <magnus.eriksson@netinsight.se>, Les Johnson <les@infolabs.com>, Harald Kirsch <kir@iitb.fhg.de>, Christian Krone <krischan@sql.de>, Larry W. Virden <lvirden@cas.org>, David Engel <dlengel@home.com> <david@debian.org>, Matthew Clarke <Matthew_Clarke@mindlink.bc.ca> .SH "DEBIAN PACKAGE" David Engel <dlengel@home.com>, <david@debian.org> .SH "DISCLAIMER" This version of \fBtclreadline\fP is still a development version. |
︙ | ︙ |