* scheme-modules.texi (Compiled Code Modules): replace
[bpt/guile.git] / guile-readline / ChangeLog
index 0b2bdfb..8f568e2 100644 (file)
@@ -1,9 +1,128 @@
+2002-04-30  Marius Vollmer  <marius.vollmer@uni-dortmund.de>
+
+       * autogen.sh: Invoke plain aclocal instead of guile-aclocal.sh.
+       We don't need the Guile m4 macros and the previous invocation of
+       guile-aclocal.sh created the aclocal.m4 file in the wrong
+       directory (see change from 2002-04-26).
+
+2002-04-26  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * autogen.sh: Change to parent dir before invoking
+       guile-aclocal.sh.
+
+2002-04-16  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (dist-hook): Make sure $(distdir)/Makefile.in is
+       writable before modifying it.
+
+2002-04-10  Rob Browning  <rlb@defaultvalue.org>
+
+       * configure.in: add definitions to AC_DEFINE calls for new
+       autoconf.
+
+       * .cvsignore: add autom4te.cache and *.c.clean.c.
+
+2002-03-24  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
+
+2002-03-13  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * Makefile.am (snarfcppopts): New var.
+       (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
+
+2002-02-27  Stefan Jahn  <stefan@lkcc.org>
+
+       * Makefile.am (EXTRA_DIST): Added the `LIBGUILEREADLINE-VERSION'
+       file.
+
+2002-02-25  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * configure.in (LIBGUILEREADLINE-VERSION):
+       Look for this file in $srcdir.
+
+2002-02-24  Rob Browning  <rlb@defaultvalue.org>
+
+       * configure.in: source ./LIBGUILEREADLINE-VERSION for version info
+       and then AC_SUBST the resulting variables:
+       LIBGUILEREADLINE_INTERFACE_CURRENT,
+       LIBGUILEREADLINE_INTERFACE_REVISION,
+       LIBGUILEREADLINE_INTERFACE_AGE, and
+       LIBGUILEREADLINE_INTERFACE.
+
+       * Makefile.am (libguilereadline_la_LDFLAGS): use
+       @LIBGUILEREADLINE_INTERFACE@ for version information.
+
+       * LIBGUILEREADLINE-VERSION: new file containing shared lib
+       versioning information.
+
+2002-02-12  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * Makefile.am (AUTOMAKE_OPTIONS): Replace "gnu" with "foreign".
+       This undoes the 2002-02-08 change.
+
+2002-02-08  Thien-Thi Nguyen  <ttn@giblet.glug.org>
+
+       * Makefile.am (AUTOMAKE_OPTIONS): Replace "foreign" with "gnu".
+
+2002-01-29  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * readline.scm (with-readline-completion-function): Renamed from
+       `call-with-readline-completion-function'.
+
+2001-11-30  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * Makefile.am (EXTRA_DIST): Refer to $(ice9_DATA) rather than
+       readline.scm explicitly.
+       (ETAGS_ARGS): Added.
+
+2001-11-04  Stefan Jahn  <stefan@lkcc.org>
+
+       * configure.in (EXTRA_DEFS): Follow-up patch.  Using SCM_IMPORT
+       instead of __SCM_IMPORT__.
+
+       * readline.c (scm_readline_init_ports): Disable input/output
+       stream redirection for Win32.  The readline package for Win32
+       does not support this.  The guile-readline library works fine
+       for command line editing.
+
+       * readline.h (SCM_RL_API): Renamed __FOO__ macros into FOO.
+
+2001-11-02  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       Support for native Win32.  Thanks to Stefan Jahn!
+
+        * Makefile.am: Put `-export-dynamic -no-undefined' into LDFLAGS
+        and add the library `libguile.la' to support linkers which do not
+        allow unresolved symbols inside shared libraries.
+
+        * configure.in: Define AC_LIBTOOL_WIN32_DLL to build clean dlls
+        on Win32 platforms.
+        Define extra compiler flags necessary to build clean dlls.
+
+        * readline.c: Include `io.h' and exclude `sys/time.h' for MinGW.
+
+        * readline.h: Defintion of SCM_RL_API.  Prefixed each exported
+        symbol with SCM_RL_API.
+
+2001-08-31  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * readline.c (scm_readline, scm_add_history,
+       scm_filename_completion_function, completion_function):  Remove
+       calls to SCM_STRING_COERCE_0TERMINATION_X.  Since the substring
+       type is gone, all strings are 0-terminated anyway.
+
+2001-08-31  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * readline.scm: `feature?´ is deprecated.  Use `provided?´
+       instead.
+
 2001-08-25  Marius Vollmer  <mvo@zagadka.ping.de>
 
        * readline.scm: Use load-extension instead of explicit
        dynamic-link/dynamic-call.  Removed ".so" extension from library
        name.
-       
+
 2001-08-02  Neil Jerram  <neil@ossau.uklinux.net>
 
        * readline.scm (call-with-readline-completion-function): New.