Overview
Comment: | Modified Files: Makefile.in README configure.in sample.tclshrc tclreadlineSetup.tcl.in |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
46ef5876f192089735be5951d64ad9cc |
User & Date: | johannes@zellner.org on 1999-08-23 15:51:07 |
Other Links: | manifest | tags |
Context
1999-08-23
| ||
15:55 | Modified Files: Makefile.in sources check-in: 2f48c6f953 user: johannes@zellner.org tags: trunk | |
15:51 | Modified Files: Makefile.in README configure.in sample.tclshrc tclreadlineSetup.tcl.in check-in: 46ef5876f1 user: johannes@zellner.org tags: trunk | |
09:17 | configure.in check-in: e356777f67 user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in from [52fb3dea44] to [6c49ace40a].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | # -*- make -*- |
︙ | |||
134 135 136 137 138 139 140 | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | - + | RANLIB = @RANLIB@ TOP_DIR = $(srcdir) TCL_INCLUDE_DIR = @TCL_INCLUDE_DIR@ READLINE_INCLUDE_DIR = @READLINE_INCLUDE_DIR@ TCLREADLINE_LIB_FILE = @TCLREADLINE_LIB_FILE@ READLINE_LIB = -L@READLINE_LIB_DIR@ -lreadline |
︙ | |||
189 190 191 192 193 194 195 | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | - + | .SUFFIXES: .c .o .so .sl .tcl all: $(TCLREADLINE_LIB_FILE) @TCLREADLINE_LIB_FILE@: ${OBJS} rm -f $(TCLREADLINE_LIB_FILE) |
︙ | |||
229 230 231 232 233 234 235 | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | - + | clean: rm -f *.a *.o core errs *~ \#* tags* *.E a.out errors so_locations distclean: clean rm -f \ Makefile *.so *.sl pkgIndex.tcl tclreadlineInit.tcl \ |
︙ |
Modified README from [109aca9237] to [5f6392bebf].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + |
|
︙ | |||
47 48 49 50 51 52 53 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | + - + - | --------------------------------------- This release will probably only build under UNIX (Linux). Before trying to compile tclreadline you should do the following things: (a) Make sure you have tcl 8.0 or higher. I've tested tclreadline with tcl 8.0.3, 8.0.4, 8.0.5, 8.1.0, 8.1.1 and 8.2.0. |
︙ | |||
94 95 96 97 98 99 100 | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | - + | proc tclreadline::Setup and can be used with the command namespace import tclreadline::ls (see sample.tclshrc). bug fixes: - lines added to tcl's history. (were only in readline's hist.) - macro mappings didn't work. (only when hitting mapped characters more than once.) |
Modified configure.in from [bb83c845d2] to [217aaced79].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # -*- autoconf -*- # FILE: "/diska/home/joze/src/tclreadline/configure.in" |
︙ | |||
335 336 337 338 339 340 341 | 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | Use --with-readline-library to specify the directory containing libreadline$SHLIB_SUFFIX on your system.]) else AC_MSG_RESULT({READLINE_LIB_DIR}/libreadline${SHLIB_SUFFIX}${READLINE_VERSION_SUFFIX}) fi |
︙ | |||
454 455 456 457 458 459 460 | 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 | - + - | AC_SUBST(SHLIB_CFLAGS) AC_SUBST(SHLIB_LD) AC_SUBST(SHLIB_LD_LIBS) AC_SUBST(SHLIB_SUFFIX) |
︙ |
Modified sample.tclshrc from [75407d3132] to [d234ad5a9b].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | #!/bin/sh |
︙ | |||
25 26 27 28 29 30 31 | 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 | - + - + - + + - + | # tclreadline::ls # } # } # uncomment the following line to use # tclreadline's fancy ls proc. # |
Modified tclreadlineSetup.tcl.in from [2a8fdfa53f] to [71baf77ef1].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | #!/usr/local/bin/tclsh |
︙ | |||
131 132 133 134 135 136 137 | 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | - + | } } } return -code error "invalid command name \"$name\"" } namespace eval tclreadline:: { |
︙ |