Comment: | 1. usable version after change to automake |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
30437b03ab6db13fbaa06e09b55275f6 |
User & Date: | johannes@zellner.org on 2000-07-01 22:18:08 |
Other Links: | manifest | tags |
2000-07-01
| ||
22:19 | Sun Jul 2 00:19:22 CEST 2000 check-in: 619e9324a0 user: johannes@zellner.org tags: trunk | |
22:18 | 1. usable version after change to automake check-in: 30437b03ab user: johannes@zellner.org tags: trunk | |
14:23 | small fix in the completer so that it completes options (public variables) for itcl. check-in: 9e7c008b8c user: johannes@zellner.org tags: trunk | |
Added ChangeLog version [3bc47770f1].
> > > > > | 1 2 3 4 5 | 2000-07-01 Johannes Zellner <johannes@zellner.org> * switched to automake * small fix so that itcl config switches are correctly completed. |
Added Makefile.am version [1de0d52142].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ## -*- automake -*- ## FILE: "/home/joze/src/tclreadline/Makefile.am" ## LAST MODIFICATION: "Sun, 02 Jul 2000 00:01:52 +0200 (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. ## --- ## AUTOMAKE_OPTIONS = foreign lib_LTLIBRARIES = libtclreadline.la libtclreadline_la_SOURCES = config.h tclreadline.c tclreadline.h INCLUDES = -I$(TCL_INCLUDE_DIR) -I$(READLINE_INCLUDE_DIR) ## libtclreadline_la_LIBADD = $(LIBS) libtclreadline_la_LDFLAGS = -release $(MAJOR).$(MINOR).$(PATCHLEVEL) tclrldir = @TCLRL_DIR@ tclrl_SCRIPTS = pkgIndex.tcl tclreadlineCompleter.tcl tclreadlineInit.tcl tclreadlineSetup.tcl INSTALL_SCRIPT = ${INSTALL_DATA} man_MANS = tclreadline.n |
Deleted Makefile.in version [9a60e3319f].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Added NEWS version [da39a3ee5e].
Added SCENARIO version [797d1f2bf8].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | YOU TYPE: YOU GET: === SCENARIO 1 === puts $<tab> puts $ + a list of all variables ... puts $t<tab> puts $t + a list of all variables beginning with t ... puts $tcl_pl<tab> puts $tcl_platform( + a list of all array names of tcl_platform puts $tcl_platform(b<tab> puts $tcl_platform(byteOrder) === SCENARIO 2 === button .b button .b .b co<tab> .b configure .b co<tab><tab> .b configure + a list of all button options ... .b co<tab><tab>-r<tab> .b configure -relief .b co<tab><tab>-r<tab>g<tab> .b configure -relief groove |
Added autogen.sh version [30ac94cb0c].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #!/bin/sh # FILE: "/home/joze/src/tclreadline/autogen.sh" # LAST MODIFICATION: "Sat, 01 Jul 2000 17:31:39 +0200 (joze)" # (C) 2000 by Johannes Zellner, <johannes@zellner.org> # $Id$ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` cd $srcdir PROJECT=tclreadline TEST_TYPE=-f FILE=tclreadline.h DIE=0 (autoconf --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have autoconf installed to compile $PROJECT." echo "Download the appropriate package for your distribution," echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have automake installed to compile $PROJECT." echo "Get ftp://sourceware.cygnus.com/pub/automake/automake-1.4.tar.gz" echo "(or a newer version if it is available)" DIE=1 } if test "$DIE" -eq 1; then exit 1 fi test $TEST_TYPE $FILE || { echo "You must run this script in the top-level $PROJECT directory" exit 1 } if test -z "$*"; then echo "I am going to run ./configure with no arguments - if you wish " echo "to pass any to it, please specify them on the $0 command line." fi case $CC in *xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;; esac aclocal $ACLOCAL_FLAGS # optionally feature autoheader (autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader automake -a $am_opt autoconf cd $ORIGDIR $srcdir/configure --enable-maintainer-mode "$@" |
Deleted aux/install-sh version [2b1825e144].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Deleted aux/mkinstalldirs version [203739dbcf].
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Modified config.h.in from [a5e8c60d77] to [442fbdc2be].
1 |
| > < > > | < < | | | < > > | < | > | < > > > > > > < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | /* config.h.in. Generated automatically from configure.in by autoheader. */ /* Define to empty if the keyword does not work. */ #undef const /* Define if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if you have the <string.h> header file. */ #undef HAVE_STRING_H /* Define if you have the readline library (-lreadline). */ #undef HAVE_LIBREADLINE /* Name of package */ #undef PACKAGE /* Version number of package */ #undef VERSION /* Define if we have libreadline. */ #undef READLINE_LIBRARY /* Define if _rl_executing_macro is resolved in libreadline. */ #undef EXECUTING_MACRO_HACK /* Define if rl_cleanup_after_signal is resolved in libreadline. */ #undef CLEANUP_AFER_SIGNAL |
Modified configure.in from [177d3bdd31] to [b3c80119aa].
1 2 | dnl -*- autoconf -*- dnl FILE: "/home/joze/src/tclreadline/configure.in" | | < < < < < | | | | > > | > > > > > | > | > > | > > > > < < > > > > > > > > > > < < < < > > | | | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | dnl -*- autoconf -*- dnl FILE: "/home/joze/src/tclreadline/configure.in" dnl LAST MODIFICATION: "Sun, 02 Jul 2000 00:12:15 +0200 (joze)" dnl (C) 1998 - 2000 by Johannes Zellner, <johannes@zellner.org> dnl $Id$ dnl --- dnl tclreadline -- gnu readline for tcl dnl http://www.zellner.org/tclreadline/ dnl Copyright (c) 1998 - 2000, Johannes Zellner <johannes@zellner.org> dnl This software is copyright under the BSD license. AC_INIT(tclreadline.c) AM_CONFIG_HEADER(config.h) AC_PREREQ(2.13) AC_REVISION($Revision$) AC_CONFIG_AUX_DIR(./aux) MAJOR=2 MINOR=0 PATCHLEVEL=0 VERSION=$MAJOR.$MINOR PATCHLEVEL_STR=$VERSION.$PATCHLEVEL AC_SUBST(MAJOR) AC_SUBST(MINOR) AC_SUBST(PATCHLEVEL) AC_SUBST(VERSION) AC_SUBST(PATCHLEVEL_STR) AM_INIT_AUTOMAKE(tclreadline, $VERSION) AC_PROG_MAKE_SET dnl AM_INIT_AUTOMAKE(tclreadline, $VERSION) AC_CANONICAL_HOST AC_PROG_CC AC_EXEEXT dnl AC_LIBTOOL_DLOPEN AM_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then STATIC=-static else STATIC= fi AC_SUBST(STATIC) AC_C_CONST AC_PROG_INSTALL AC_PROG_RANLIB AC_PROG_LN_S # -- WHICH TCL TO USE AC_ARG_WITH( tcl, [ --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 AC_MSG_ERROR(Can't find Tcl libraries. Use --with-tcl to specify the directory containing tclConfig.sh on your system.) fi . $TCL_LIB_DIR/tclConfig.sh AC_MSG_RESULT($TCL_LIB_DIR/tclConfig.sh) AC_MSG_CHECKING([for your tcl version]) AC_MSG_RESULT([$TCL_VERSION, patchlevel $TCL_PATCH_LEVEL]) # Check, if tcl_version is > 8.0 if test $TCL_MAJOR_VERSION -lt 8; then AC_MSG_ERROR(need tcl 8.0 or higher.) fi # ----------------------------------------------------------------------- # Set up a new default --prefix. # ----------------------------------------------------------------------- # this is the default anyway: # AC_PREFIX_DEFAULT(/usr/local) if test "${prefix}" = "NONE"; then prefix=$TCL_PREFIX fi TCLRL_DIR="${prefix}/lib/tclreadline$VERSION" AC_SUBST(TCLRL_DIR) # HEADERS AC_HEADER_STDC AC_CHECK_HEADERS(string.h) #-------------------------------------------------------------------- # Check for tcl.h #-------------------------------------------------------------------- AC_ARG_WITH(tcl-includes, [ --with-tcl-includes=DIR where to look for tcl.h], |
︙ | ︙ | |||
291 292 293 294 295 296 297 | #-------------------------------------------------------------------- # Check for readline.h #-------------------------------------------------------------------- AC_ARG_WITH(readline-includes, | | < | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | #-------------------------------------------------------------------- # Check for readline.h #-------------------------------------------------------------------- AC_ARG_WITH(readline-includes, [ --with-readline-includes=DIR readline include files in DIR], rl_includes=$withval, rl_includes="") AC_MSG_CHECKING([where to look for readline.h]) READLINE_INCLUDE_DIR="" for dir in $rl_includes /usr/local/include/readline /usr/local/include /usr/include/readline /usr/include ; do if test -r $dir/readline.h; then READLINE_INCLUDE_DIR=$dir |
︙ | ︙ | |||
317 318 319 320 321 322 323 | 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, [ Define if we have libreadline. ]) fi fi | < < < < < < | | | | | < < < | < | < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < | | < | < < | < < | < | < < | < < < | < | < < < < < < | < < < < < | | | < < < < < | < < < < | < | < < > | | < < < < < < < < < < < < < < < | 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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | 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, [ Define if we have libreadline. ]) fi fi AC_ARG_WITH(readline-library, [ --with-readline-library=DIR lib spec to readline (e.g. '-L/usr/local/lib -lreadline')], LIBS="$LIBS $withval", AC_CHECK_LIB(readline, rl_callback_read_char, , AC_MSG_RESULT([ Your readline version does not support readline's alternate interface. Please upgrade to readline >= 2.2 and retry. ]) exit ) ) # --- # check for the terminal library. # --- AC_ARG_WITH(tlib-library, [ --with-tlib-library=DIR lib spec to tlib (e.g. '-L/usr/local/lib -lncurses')], LIBS="$LIBS $withval", for tlib in ncurses termlib termcap curses; do brk=yes AC_CHECK_LIB($tlib, tputs, , brk=no) if test $brk == "yes"; then HAVE_TLIB=yes break fi done if test "x" = "x$HAVE_TLIB"; then AC_MSG_ERROR([ no terminal library found. Please retry with the --with-tlib argument. ]) fi ) # check for readline's (macro.c) private variable # _rl_executing_macro. AC_MSG_CHECKING([for _rl_executing_macro in -lreadline]) AC_TRY_LINK(,[ |
︙ | ︙ | |||
481 482 483 484 485 486 487 | fprintf(fp, "%s", rl_library_version); close(fp); return 0; }], READLINE_VERSION=`cat conftestversion` AC_MSG_RESULT($READLINE_VERSION), AC_MSG_RESULT(failed), | | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < < < < < | 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | fprintf(fp, "%s", rl_library_version); close(fp); return 0; }], READLINE_VERSION=`cat conftestversion` AC_MSG_RESULT($READLINE_VERSION), AC_MSG_RESULT(failed), AC_MSG_RESULT(no cross compiling) ) AC_SUBST(TCL_INCLUDE_DIR) AC_SUBST(READLINE_INCLUDE_DIR) AC_OUTPUT(Makefile tclreadline.h tclreadlineInit.tcl tclreadlineSetup.tcl tclreadline.n pkgIndex.tcl) |
Modified pkgIndex.tcl.in from [8b23387c17] to [030e7b1291].
1 2 | #!/usr/local/bin/tclsh # FILE: "/home/joze/src/tclreadline/pkgIndex.tcl.in" | | < < | < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/local/bin/tclsh # FILE: "/home/joze/src/tclreadline/pkgIndex.tcl.in" # LAST MODIFICATION: "Sat, 01 Jul 2000 21:53:04 +0200 (joze)" # (C) 1998 - 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. package ifneeded tclreadline @VERSION@ \ [list source [file join $dir tclreadlineInit.tcl]] |
Modified tclreadline.c from [1174583766] to [9af4c77029].
1 2 | /* ================================================================== | < | < < < > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | /* ================================================================== FILE: "/home/joze/src/tclreadline/tclreadline.c" LAST MODIFICATION: "Sat, 01 Jul 2000 23:47:30 +0200 (joze)" (C) 1998 - 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. ================================================================== */ #ifdef HAVE_CONFIG_H # 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); #ifdef EXECUTING_MACRO_HACK /** |
︙ | ︙ | |||
539 540 541 542 543 544 545 | (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); tclrl_interp = interp; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::historyLength", (char*) &tclrl_history_length, TCL_LINK_INT))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::library", | | | | 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); tclrl_interp = interp; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::historyLength", (char*) &tclrl_history_length, TCL_LINK_INT))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::library", (char*) &tclrl_library, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::version", (char*) &TCLRL_VERSION, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::patchLevel", (char*) &TCLRL_PATCHLEVEL, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::license", (char*) &tclrl_license, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "tclreadline_library", (char*) &tclrl_library, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "tclreadline_version", (char*) &TCLRL_VERSION, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "tclreadline_patchLevel", (char*) &TCLRL_PATCHLEVEL, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; |
︙ | ︙ |
Modified tclreadline.h.in from [af6b25ae5c] to [473c3d5ffb].
1 2 | /* ================================================================== | < | < < < | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /* ================================================================== FILE: "/home/joze/src/tclreadline/tclreadline.h.in" LAST MODIFICATION: "Sat, 01 Jul 2000 23:46:41 +0200 (joze)" (C) 1998 - 2000 by Johannes Zellner, <johannes@zellner.org> $Id$ vim:set ft=c: --- 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. ================================================================== */ static char *TCLRL_VERSION = "@VERSION@"; static char* tclrl_library = "@TCLRL_DIR@"; /* * NOTE, that PATCHLEVEL is the complete version string. */ static char *TCLRL_PATCHLEVEL = "@PATCHLEVEL_STR@"; |
Modified tclreadline.n.in from [b897c201a8] to [b7a2cbc600].
1 2 3 | .TH tclreadline n "@TCLREADLINE_VERSION@.@TCLREADLINE_PATCHLEVEL@" "Johannes Zellner" .\" FILE: "/home/joze/src/tclreadline/tclreadline.n.in" | | < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | .TH tclreadline n "@TCLREADLINE_VERSION@.@TCLREADLINE_PATCHLEVEL@" "Johannes Zellner" .\" FILE: "/home/joze/src/tclreadline/tclreadline.n.in" .\" LAST MODIFICATION: "Sat, 01 Jul 2000 21:52:43 +0200 (joze)" .\" (C) 1998 - 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. .\" # CS - begin code excerpt .de CS .RS .nf |
︙ | ︙ |
Modified tclreadlineConfig.sh.in from [bb11ff1098] to [9e8fa4fdb5].
1 2 | #!/bin/sh # FILE: "/home/joze/src/tclreadline/tclreadlineConfig.sh.in" | | < < | < | | | | < < < < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #!/bin/sh # FILE: "/home/joze/src/tclreadline/tclreadlineConfig.sh.in" # LAST MODIFICATION: "Sat, 01 Jul 2000 21:52:25 +0200 (joze)" # (C) 1998 - 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. # --- # # This shell script (for sh) is generated automatically by tclreadline's # configure script. It will create shell variables for most of # the configuration options discovered by the configure script. # This script is intended to be included by the configure scripts # for tclreadline extensions so that they don't have to figure this all # out for themselves. This file does not duplicate information # already provided by tclConfig.sh, so you may need to use that # file in addition to this one. # # The information in this file is specific to a single platform. # tclreadline's version number. TCLREADLINE_VERSION='@VERSION@' TCLREADLINE_MAJOR_VERSION='@MAJOR@' TCLREADLINE_MINOR_VERSION='@MINOR@' # there's no leading dot here as in tclConfig.sh! TCLREADLINE_PATCHLEVEL='@PATCHLEVEL@' |
Modified tclreadlineInit.tcl.in from [8d6b0fc6f5] to [8b27a39294].
1 2 | #!/usr/local/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineInit.tcl.in" | | < < | < < | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/usr/local/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineInit.tcl.in" # LAST MODIFICATION: "Sat, 01 Jul 2000 23:54:15 +0200 (joze)" # (C) 1998 - 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. package provide tclreadline @VERSION@ namespace eval tclreadline:: { namespace export Init } proc ::tclreadline::Init {} { uplevel #0 { if ![info exists tclreadline::library] { if [catch {load @TCLRL_DIR@/../libtclreadline[info sharedlibextension]} msg] { puts stderr $msg exit 2 } } } } |
︙ | ︙ |
Modified tclreadlineSetup.tcl.in from [9146e47c18] to [c39b3436f6].
1 2 | #!/usr/locanl/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineSetup.tcl.in" | | < < | < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/usr/locanl/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineSetup.tcl.in" # LAST MODIFICATION: "Sat, 01 Jul 2000 21:53:28 +0200 (joze)" # (C) 1998 - 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. package provide tclreadline @VERSION@ proc unknown args { global auto_noexec auto_noload env unknown_pending tcl_interactive global errorCode errorInfo # Save the values of errorCode and errorInfo variables, since they |
︙ | ︙ |