*** empty log message ***
[bpt/guile.git] / ChangeLog
index 74ff284..338817f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,163 @@
+2001-11-22  Gary Houston  <ghouston@arglist.com>
+
+       * HACKING: Modified the Hacking It Yourself section.  Removed the
+       version numbers from the tools.
+
+2001-11-21  Gary Houston  <ghouston@arglist.com>
+
+       * HACKING: Removed reference to no longer practiced * in ChangeLog
+       convention.
+
+2001-11-19  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * BUGS (11): Set "fixed: no-need".
+
+       * TODO (write emacs/patch.el): New item, self-assigned.
+
+2001-11-19  Rob Browning  <rlb@defaultvalue.org>
+
+       * configure.in: switch to AC_LIBLTDL_INSTALLABLE so we'll use the
+       system libltdl when it's available.  Aside from the normal reasons
+       to prefer installed shared libs, this means other apps that link
+       with libguile and also use libltdl will be more likely to work
+       right.
+
+2001-11-17  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * BUGS (4): Set "fixed: 2001-11-17 (1.7.x)".
+
+2001-11-15  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * guile-tools.in: Handle command "list" specially: list scripts dir.
+
+       (help): Make more informative.
+
+2001-11-12  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * autogen.sh: Recurse into libltdl directory and invoke autoconf
+       there.
+
+2001-11-11  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * HACKING: Restrict documentation change log
+       waiver to only apply to ChangeLog files.
+
+2001-11-12  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * configure.in: Check for sizes of short, size_t, uintptr_t, and
+       ptrdiff_t.  Checking for a size also checks automatically for the
+       existence of the type, so we don't check for the existence of
+       uintptr_t, ptrdiff_t and long long ourselves.
+
+2001-11-10  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * BUGS (11): New.
+
+2001-11-07  Stefan Jahn  <stefan@lkcc.org>
+
+       * configure.in: Include `win32-socket.o' in the list of object
+       files if networking is enabled on Win32.
+
+2001-11-06  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * TODO (sync srfi-modules.texi): New, done.
+
+       * BUGS (9, 10): New.
+
+2001-11-04  Stefan Jahn  <stefan@lkcc.org>
+
+       * NEWS: Corrected remarks about SCM_API.
+
+       * configure.in: Defining USE_DLL_IMPORT definition to indicate
+       usage of DLL import macros in `libguile/__scm.h'.
+       (LIBOBJS): Removed `fileblocks.o' from the list of object files.
+       Somehow Jim Blandy's patch from 1997 did not survive.
+
+2001-11-02  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       Support for native Win32.  Thanks to Stefan Jahn!
+
+        * check-guile.in: Replaced `ln -s' by `@LN_S@' to supports
+        build systems which do not have symbolic links.
+        * configure.in: Define AC_LIBTOOL_WIN32_DLL to build clean dlls
+        on Win32 platforms.
+        Checking for `ws2_32.dll', `winsock2.h', add `win32-uname.o'
+       and `win32-dirent.o' and define extra compiler flags necessary
+       to build clean dlls.
+        Check for `regcomp()' inside `-lregex'.
+
+2001-10-26  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * BUGS (7, 8): New.
+
+2001-10-25  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * BUGS: Expand on file format description.
+
+       (1): Update "fixed" field.
+       (2, 3, 4, 5, 6): New.
+
+2001-10-14  Gary Houston  <ghouston@arglist.com>
+
+       * configure.in: include sys/types.h when testing uint32_t.
+       thanks to Bill Schottstaedt.
+
+2001-10-14  Marius Vollmer  <mvo@zagadka.ping.de>
+
+       * configure.in: Do not use an absolute path for <unistd.h> when
+       checking for return type of usleep.  Thanks to Michael Carmack.
+
+2001-09-30  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * BUGS: New file.
+       * Makefile.am (EXTRA_DIST): Add BUGS file.
+
+2001-09-25  Thien-Thi Nguyen  <ttn@glug.org>
+
+       * TODO: Add bugfix item to "Eventually".
+
+2001-09-20  Rob Browning  <rlb@defaultvalue.org>
+
+       * configure.in (AC_CONFIG_FILES): add libguile/version.h.
+
+2001-09-11  Rob Browning  <rlb@defaultvalue.org>
+
+       * RELEASE: Deleted Ian Grant and Julian Satchell's addresses from
+       the testing list since they're no longer functional.
+
+2001-09-04  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * TODO:
+       Use outline mode instead of text.
+       Reword protocol explanation.
+       Add "make error-signalling functions more consistent" to Eventually.
+       Move some C-related GOOPS tasks to 1.8.0, take ownership.
+
+2001-08-31  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * HACKING (Sample GDB Initialization File): New section.
+
+       * TODO (1.8.0): Add "move .gdbinit" entry.
+
+2001-08-31  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * TODO:  Added some points, and eliminated all done items.
+
+       * acconfig.h, configure.in (SCM_DEBUG_DEPRECATED,
+       SCM_ENABLE_DEPRECATED):  Renamed SCM_DEBUG_DEPRECATED to
+       SCM_ENABLE_DEPRECATED with the logic reversed.
+
+2001-08-31  Dirk Herrmann  <D.Herrmann@tu-bs.de>
+
+       * libguile.h:  Removed bogus comment, rearranged includes, removed
+       deprecated definitions.
+
+       (LIBGUILEH, SCM_LIBGUILE_H):  Renamed <foo>H to SCM_<foo>_H.
+
+2001-08-30  Thien-Thi Nguyen  <ttn@revel.glug.org>
+
+       * HACKING: Mention libtool ./configure-regeneration requirement.
+
 2001-08-27  Marius Vollmer  <mvo@zagadka.ping.de>
 
        * check-guile.in: Do not include ".libs" in LTDL_LIBRARY_PATH,
@@ -7,7 +167,7 @@
 
        * configure.in (AC_CONFIG_FILES): Add per-manual doc directory
        Makefiles.
-       
+
 2001-08-15  Rob Browning  <rlb@defaultvalue.org>
 
        * configure.in