mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
*** empty log message ***
This commit is contained in:
parent
1e4be672f5
commit
c794483cc0
7 changed files with 36 additions and 6 deletions
4
AUTHORS
4
AUTHORS
|
@ -78,8 +78,8 @@ In the subdirectory doc, wrote:
|
||||||
|
|
||||||
Marius Vollmer: Many changes throughout.
|
Marius Vollmer: Many changes throughout.
|
||||||
In the subdirectory libguile, wrote:
|
In the subdirectory libguile, wrote:
|
||||||
fluids.c fluids.h
|
fluids.c fluids.h extensions.h
|
||||||
deprecation.h deprecation.c
|
deprecation.h deprecation.c extensions.c
|
||||||
In the subdirectory libguile, rewrote:
|
In the subdirectory libguile, rewrote:
|
||||||
dynl.c dynl-dl.c dynl-shl.c
|
dynl.c dynl-dl.c dynl-shl.c
|
||||||
dynl.h dynl-dld.c
|
dynl.h dynl-dld.c
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
* configure.in (AC_CONFIG_FILES, AC_CONFIG_COMMANDS): Add
|
||||||
|
guile-snarf.
|
||||||
|
|
||||||
2001-06-02 Rob Browning <rlb@cs.utexas.edu>
|
2001-06-02 Rob Browning <rlb@cs.utexas.edu>
|
||||||
|
|
||||||
* configure.in: changes for autoconf 2.50.
|
* configure.in: changes for autoconf 2.50.
|
||||||
|
|
6
HACKING
6
HACKING
|
@ -37,12 +37,12 @@ you want to make changes to the system (which we encourage!) you will
|
||||||
find it helpful to have the tools we use to develop Guile. They
|
find it helpful to have the tools we use to develop Guile. They
|
||||||
are the following:
|
are the following:
|
||||||
|
|
||||||
Autoconf 2.13 --- a system for automatically generating `configure'
|
Autoconf 2.50 --- a system for automatically generating `configure'
|
||||||
scripts from templates which list the non-portable features a
|
scripts from templates which list the non-portable features a
|
||||||
program would like to use. Available in
|
program would like to use. Available in
|
||||||
"ftp://ftp.gnu.org/pub/gnu/autoconf"
|
"ftp://ftp.gnu.org/pub/gnu/autoconf"
|
||||||
|
|
||||||
Automake 1.4 --- a system for automatically generating Makefiles that
|
Automake 1.4-p2 --- a system for automatically generating Makefiles that
|
||||||
conform to the (rather Byzantine) GNU coding standards. The
|
conform to the (rather Byzantine) GNU coding standards. The
|
||||||
nice thing is that it takes care of hairy targets like 'make
|
nice thing is that it takes care of hairy targets like 'make
|
||||||
dist' and 'make distclean', and automatically generates
|
dist' and 'make distclean', and automatically generates
|
||||||
|
@ -53,7 +53,7 @@ Automake 1.4 --- a system for automatically generating Makefiles that
|
||||||
`guile.m4' from the top directory of the Guile core disty to
|
`guile.m4' from the top directory of the Guile core disty to
|
||||||
`/usr/local/share/aclocal.
|
`/usr/local/share/aclocal.
|
||||||
|
|
||||||
libtool 1.3.5 --- a system for managing the zillion hairy options needed
|
libtool 1.4 --- a system for managing the zillion hairy options needed
|
||||||
on various systems to produce shared libraries. Available in
|
on various systems to produce shared libraries. Available in
|
||||||
"ftp://ftp.gnu.org/pub/gnu/libtool"
|
"ftp://ftp.gnu.org/pub/gnu/libtool"
|
||||||
|
|
||||||
|
|
4
RELEASE
4
RELEASE
|
@ -47,7 +47,9 @@ After signal handling and threading have been fixed:
|
||||||
try-module-dynamic-link
|
try-module-dynamic-link
|
||||||
init-dynamic-module
|
init-dynamic-module
|
||||||
scm_register_module_xxx
|
scm_register_module_xxx
|
||||||
etc.
|
scm_registered_modules
|
||||||
|
scm_clear_registered_modules
|
||||||
|
|
||||||
- remove deprecated variables:
|
- remove deprecated variables:
|
||||||
scm_top_level_lookup_closure_var
|
scm_top_level_lookup_closure_var
|
||||||
scm_scm_system_transformer
|
scm_scm_system_transformer
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
* configure.in: Added AC_PREREQ(2.50) and minimally changed for
|
||||||
|
autoconf 2.50. This is mostly so that the `transparent autoconf
|
||||||
|
wrapper' on Debian picks the right version of autoconf.
|
||||||
|
|
||||||
2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
|
2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
|
||||||
|
|
||||||
* Makefile.am (libguilereadline_la_SOURCES): removed readline.x
|
* Makefile.am (libguilereadline_la_SOURCES): removed readline.x
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
|
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
* boot-9.scm (try-load-module): Bracket calls to try-module-linked
|
||||||
|
and try-module-dynamic-link with `begin-deprecated'.
|
||||||
|
(split-c-module-name, convert-c-registered-modules,
|
||||||
|
registered-modules, register-modules, warn-autoload-deprecation,
|
||||||
|
init-dynamic-module, dynamic-maybe-call, dynamic-maybe-link,
|
||||||
|
find-and-link-dynamic-module, try-using-libtool-name,
|
||||||
|
try-using-sharlib-name, link-dynamic-module, try-module-linked,
|
||||||
|
try-module-dynamic-link): Deprecated. Activate deprecation
|
||||||
|
message.
|
||||||
|
|
||||||
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
|
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* Makefile.am (psyntax.pp): Make it dependent on psyntax.ss and
|
* Makefile.am (psyntax.pp): Make it dependent on psyntax.ss and
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
* dynl.c (scm_register_module_xxx, scm_registered_modules,
|
||||||
|
scm_clear_registered_modules): Deprecated.
|
||||||
|
|
||||||
2001-06-02 Rob Browning <rlb@cs.utexas.edu>
|
2001-06-02 Rob Browning <rlb@cs.utexas.edu>
|
||||||
|
|
||||||
* .cvsignore: add guile_filter_doc_snarfage guile-snarf-docs
|
* .cvsignore: add guile_filter_doc_snarfage guile-snarf-docs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue