diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-08-26 15:16:56 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-08-26 15:16:56 +0000 |
commit | 0e33f862345b2fc072b9bc10e59c0677f61da3ee (patch) | |
tree | 7ff9c6dcd1c89f15ca16ca283241151f9f0dda51 | |
parent | 51fab002a8fd542da204703af521319711565390 (diff) | |
download | guile-0e33f862345b2fc072b9bc10e59c0677f61da3ee.tar.gz |
* LIBGUILEREADLINE-VERSION: Bumped versions for the 1.7.1 release.
Added LIBGUILEREADLINE_MAJOR variable for inclusion in the name of
the shared library.
* configure.in: AC_SUBST it.
* Makefile.am: Substitute it into name of library.
* ice-9/readline.scm: Use new name with load-extension.
-rw-r--r-- | guile-readline/ice-9/readline.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guile-readline/ice-9/readline.scm b/guile-readline/ice-9/readline.scm index 1f61a8a98..ad40dcba2 100644 --- a/guile-readline/ice-9/readline.scm +++ b/guile-readline/ice-9/readline.scm @@ -35,7 +35,7 @@ ;;; but only when it isn't already present. (if (not (provided? 'readline)) - (load-extension "libguilereadline" "scm_init_readline")) + (load-extension "libguilereadline-v-16" "scm_init_readline")) (if (not (provided? 'readline)) (scm-error 'misc-error |