* configure.in: check for hstrerror.
[bpt/guile.git] / guile-readline / ChangeLog
1 1999-11-18 Gary Houston <ghouston@freewire.co.uk>
2
3 * readline.c (scm_init_readline): set rl_readline_name to Guile,
4 to allow conditionals in .inputrc.
5
6 1999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
7
8 * Makefile.in, configure, aclocal.m4: Deleted from CVS repository.
9 Run the autogen.sh script to create generated files like these.
10 * autogen.sh: New script, invoked by the top-level autogen.sh.
11
12 1999-09-22 Jim Blandy <jimb@savonarola.red-bean.com>
13
14 * configure.in: Call AM_PROG_CC_STDC.
15 * configure, aclocal.m4: Regenerated.
16
17 1999-09-16 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
18
19 * Makefile.am (.c.x): Use same rule as in libguile.
20
21 1999-09-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
22
23 * readline.h, readline.scm: Updated copyright notices.
24
25 1999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
26
27 * readline.scm (activate-readline): Set (using-readline?).
28
29 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
30
31 * aclocal.m4: Regenerated with newer libtool macros.
32
33 * Makefile.am (DISTCLEANFILES): Get rid of .x files.
34 * Makefile.in: Regenerated.
35 (Thanks to Keisuke Nishida.)
36
37 1999-09-11 Marius Vollmer <mvo@zagadka.ping.de>
38
39 * readline.scm: Moved from ../ice-9.
40 Dynamically link libguilereadline.so.
41 (readline): Just define in this module, do not overwrite builtin
42 variable. The builtin readline function is now named "%readline",
43 so this works. See below.
44 (activate-readline): New function which contains the readline
45 activation code formerly found in top-repl.
46
47 * readline.c (scm_readline): Export it to Scheme as "%readline".
48
49 * configure.in: Get version from ../GUILE-VERSION and use it for
50 package version.
51
52 * Makefile.am: Do not install and distribute
53 readline-activator.scm. Install and distribute readline.scm
54 instead.
55
56 * aclocal.m4, Makefile.in, configure, libtool: Regenerated, but
57 probably with the wrong version of the tools.
58
59 1999-08-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
60
61 The following change makes it possible for applications to have
62 their own version of scm_readline.
63 * readline.c, readline.h (rl_cleanup_after_signal,
64 rl_free_line_state): Made global.
65 (scm_readline_init_ports): New function.
66 (scm_readline): Use scm_readline_init_ports.
67 (Thanks to Anders Holst.)
68
69 * Makefile.am: Install guile-readline/readline.h.
70
71 1999-08-20 James Blandy <jimb@mule.m17n.org>
72
73 * Makefile.in, aclocal.m4, configure: Regenerated.
74
75 1999-08-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
76
77 * configure.in (HAVE_RL_GETC_FUNCTION): Modified test to actually
78 use rl_getc_function. Otherwise smart compilers, like gcc,
79 optimize away the reference so that no error occurs in the link
80 phase.
81
82 1999-08-04 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
83
84 * Makefile.am (INCLUDES): Added -I$(srcdir)/../libguile.
85 (Thanks to Greg Badros.)
86
87 1999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
88
89 * readline.c (handle_error): Put a cosmetic newline on
90 rl_outstream on error before closing it.
91
92 * configure.in: Changed AC_MSG_ERROR into AC_MSG_WARN in case
93 readline doesn't exist on the system, so that configuration can
94 proceed normally without readline.
95
96 * readline.c: #include "libguile/_scm.h" (so that we get the
97 configuration information) and fix other includes so that they'll
98 work on a system where guile is not yet installed.
99
100 * Makefile.am (BUILT_SOURCES): Added.
101
102 1999-07-23 Marius Vollmer <mvo@zagadka.ping.de>
103
104 * Checked everything into CVS.
105
106 1999-07-22 Marius Vollmer <mvo@zagadka.ping.de>
107
108 * readline.c (stream_from_fport): New function.
109 (scm_readline): Use it to for the input and output ports. Close
110 the streams after readline returns.
111 (handle_error): Close them also when an error occured.
112
113 1999-06-17 Marius Vollmer <mvo@zagadka.ping.de>
114
115 * readline.h, readline.c: Removed exception notice from copyright
116 statement.
117
118 1999-05-16 Marius Vollmer <mvo@zagadka.ping.de>
119
120 * Started guile-readline package. Files are copied from old
121 guile-core package and slightly modified.