Check-in [5096b666f4]
Not logged in
Overview
Comment: * configure.in: changed a == to = in a sh test (reported by "Daniel O'Connor" <darius@dons.net.au>)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 5096b666f4887baa32098a4c9331971e09d0cd3f
User & Date: johannes@zellner.org on 2000-07-27 13:14:23
Other Links: manifest | tags
Context
2000-08-27
13:23
Made readline an object command to fix a number of memory leaks. Added commands "readline text" to retrieve the current input and "readline update" to redraw the current input. check-in: 357858a659 user: mpatton@jhu.edu tags: trunk
2000-07-27
13:14
* configure.in: changed a == to = in a sh test (reported by "Daniel O'Connor" <darius@dons.net.au>) check-in: 5096b666f4 user: johannes@zellner.org tags: trunk
2000-07-21
19:01
Fri Jul 21 21:00:32 CEST 2000 check-in: b59f593e02 user: johannes@zellner.org tags: trunk
Changes

Modified ChangeLog from [79d99795ec] to [048d296ceb].

1





2
3
4
5
6
7
8
9






2000-07-03  Johannes Zellner <johannes@zellner.org>

     * Makefile.am: included EXTRA_DIST so that it compiles from `dist'

2000-07-01  Johannes Zellner <johannes@zellner.org>

     * switched to automake
     * small fix so that itcl config switches are correctly completed.

>
>
>
>
>








1
2
3
4
5
6
7
8
9
10
11
12
13
14

2000-07-27  Johannes Zellner <johannes@zellner.org>

     * configure.in: changed a == to = in a sh test
     (reported by "Daniel O'Connor" <darius@dons.net.au>)

2000-07-03  Johannes Zellner <johannes@zellner.org>

     * Makefile.am: included EXTRA_DIST so that it compiles from `dist'

2000-07-01  Johannes Zellner <johannes@zellner.org>

     * switched to automake
     * small fix so that itcl config switches are correctly completed.

Modified configure.in from [e9dde35018] to [559b0281b5].

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
dnl -*- autoconf -*-
dnl FILE: "/home/joze/src/tclreadline/configure.in"
dnl LAST MODIFICATION: "Don, 20 Jul 2000 03:30:38 +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=1
VERSION=$MAJOR.$MINOR
PATCHLEVEL_STR=$VERSION.$PATCHLEVEL

AC_SUBST(MAJOR)
AC_SUBST(MINOR)
AC_SUBST(PATCHLEVEL)
AC_SUBST(VERSION)


|
















|







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
dnl -*- autoconf -*-
dnl FILE: "/home/joze/src/tclreadline/configure.in"
dnl LAST MODIFICATION: "Don, 27 Jul 2000 15:10:24 +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=2
VERSION=$MAJOR.$MINOR
PATCHLEVEL_STR=$VERSION.$PATCHLEVEL

AC_SUBST(MAJOR)
AC_SUBST(MINOR)
AC_SUBST(PATCHLEVEL)
AC_SUBST(VERSION)
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
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.







|







180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
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.