X-Git-Url: https://git.hcoop.net/bpt/guile.git/blobdiff_plain/7fd1bad4967d1f43d31ff344c7e7a545e67a2741..f7f3964e89ce25607874dfa29c307068fabdfa17:/ChangeLog diff --git a/ChangeLog b/ChangeLog index abf075fed..77d7e4c6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,551 @@ +2004-08-02 Marius Vollmer + + * README: Document the new --disable-discouraged option. + + * configure.in (SCM_I_GSC_ENABLE_DISCOURAGED): New, for the new + --enable-discouraged option. + + * libguile.h: Include libguile/discouraged.h. + +2004-07-29 Marius Vollmer + + * configure.in: Bugfix: logic in detecting ptrdiff_t was inverted; + assume ptrdiff_t is available when its size is non-zero, not when + it is zero. Do no longer define SCM_I_GSC_*_LIMITS macros. Check + for sizes of size_t and intmax_t. + +2004-07-09 Marius Vollmer + + * configure.in: Bugfix: set SCM_I_GSC_T_UINTMAX, not + SCM_I_GSC_T_INTMAX in two places. Thanks to Andreas Vögele! + +2004-07-07 Marius Vollmer + + * configure.in: When checking for suitable types for scm_t_int8, + etc, try int8_t first, so that we pick them up when they are + defined. Also, substitute limit macros like INT8_MIN into the + configure header for all these types. + +2004-07-05 Kevin Ryde + + * configure.in (isinf, isnan): Detect macro versions as well as + functions, since C99 specifies them as macros and that's all HP-UX + has. Reported by Andreas Voegele. + +2004-06-28 Marius Vollmer + + * configure.in: Removed code for --enable-htmldoc; support for + HTML is now included in automake. + +2004-06-16 Rob Browning + + * pre-inst-guile.in: modify to handle move of readline.scm to + ice-9 subdir of guile-readline. + + * pre-inst-guile-env.in: modify to handle move of readline.scm to + ice-9 subdir of guile-readline. + + * configure.in: move package and version args to AC_INIT as is now + recommended. This also requires m4_esyscmd to read GUILE-VERSION + given the way AC_INIT handles its args. + +2004-04-22 Kevin Ryde + + * configure.in (AC_CHECK_HEADERS): Add fenv.h. + (AC_CHECK_FUNCS): Add fesetround. + +2004-04-18 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add readdir_r. + +2004-03-23 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add sysconf. + (AC_CHECK_HEADERS): Add netdb.h and sys/param.h. + +2004-03-21 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add gmtime_r. + +2004-03-14 Kevin Ryde + + * configure.in (strptime): Use #define _GNU_SOURCE to get the + prototype from glibc, use AC_CHECK_DECLS rather than AC_EGREP_HEADER. + +2004-02-29 Kevin Ryde + + * configure.in: Use AC_COPYRIGHT and AH_TOP to get copyright notice + into generated configure and config.h.in. + + * configure.in (AC_CHECK_FUNCS): Add DINFINITY and DQNAN. + +2004-02-21 Kevin Ryde + + * configure.in (crypt): Test with AC_SEARCH_LIBS, for the benefit of + HP-UX. Define HAVE_CRYPT rather than HAVE_LIBCRYPT. Reported by + Andreas Voegele. + +2004-02-18 Kevin Ryde + + * configure.in (AC_CHECK_HEADERS): Add crt_externs.h. + (AC_CHECK_FUNCS): Add _NSGetEnviron. + +2004-02-15 Mikael Djurfeldt + + * configure.in: Use AC_PROG_LIBTOOL instead of AM_PROG_LIBTOOL. + +2004-01-25 Neil Jerram + + * configure.in (GUILE_FUNC_DECLARED), acinclude.m4 + (GUILE_STRUCT_UTIMBUF, GUILE_NAMED_CHECK_FUNC): Correctly quote + macros being defined. + +2003-12-26 Marius Vollmer + + * configure.in: Find a suitable type for the new scm_t_intmax and + scm_t_uintmax. + +2003-11-17 Rob Browning + + * configure.in: rewrite ALLOCA related code as multiple lines so + it doesn't break with current autoconf substitutions. + +2003-11-15 Kevin Ryde + + * configure.in (--with-guile-for-build): Remove this option, it's not + normal style for --with. + (GUILE_FOR_BUILD): Use AC_ARG_VAR. + * README (Cross building Guile): Describe GUILE_FOR_BUILD rather than + --with-guile-for-build. + +2003-11-11 Neil Jerram + + * .cvsignore: Add elisp-comp. + +2003-10-30 Neil Jerram + + * configure.in (AC_CONFIG_FILES): Add `emacs/Makefile'. + (AM_PATH_LISPDIR): Added. + + * Makefile.am (SUBDIRS): Add `emacs'. + +2003-07-27 Marius Vollmer + + * configure.in: Look for sched_yield in -lrt; this is needed for + Solaris. Thanks to Matthias Koeppe! + (setgroups): Check for it. + + * configure.in (__libc_stack_end): Actually use the value in + __libc_stack_end for something so that the access doesn't get + optimized away. Thanks to Matthias Koeppe! + +2003-07-08 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add sincos. + +2003-06-21 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add asinh, acosh, atanh and trunc. + +2003-06-19 Marius Vollmer + + * configure.in: use "-Werror" only with GCC. Thanks to Matthias + Koeppe! + +2003-06-19 Kevin Ryde + + * README (Guile Documentation): Update to manuals now available, + remove notes about the reference manual being in progress. + +2003-06-14 Stefan Jahn + + * configure.in: Checking for __int64 as possible candidate for + the SCM_I_GSC_T_INT64 define. + +2003-05-30 Stefan Jahn + + * configure.in: Checking for unsetenv(). + +2003-05-29 Stefan Jahn + + * configure.in: Removed -lm check and added a cached check for + __libc_stack_end to get it building for mingw32 hosts. + +2003-05-19 Kevin Ryde + + * README (Cross building Guile): Remove --with-cc-for-build in favour + of CC_FOR_BUILD. + +2003-05-16 Kevin Ryde + + * configure.in (--with-cc-for-build): Remove this option, CC_FOR_BUILD + variable is more or less standard, and is adequate for the task. + +2003-05-12 Kevin Ryde + + * configure.in (CC_FOR_BUILD): Use AC_ARG_VAR. + + * configure.in (SCM_SINGLES): Use AC_CHECK_SIZEOF(float), to + eliminate guess-yes when cross compiling. + + * configure.in (SCM_I_GSC_STACK_GROWS_UP): Fix missing comma in + AC_TRY_RUN. + +2003-04-20 Dirk Herrmann + + * libguile.h: Removed uses of DEBUG_EXTENSIONS to fix compile + errors with --disable-deprecated. + +2003-04-07 Rob Browning + + * pre-inst-guile-env.in: new script -- can be used to run commands + in an envt set up using the development libs, Guile, etc. + + * configure.in: handle pre-inst-guile-env and add + test-suite/standalone/Makefile. + +2003-04-06 Marius Vollmer + + * configure.in: Check for mpz_import, which is required but only + available in GMP 4.1. + +2003-04-05 Marius Vollmer + + * Changed license terms to the plain LGPL thru-out. + +2003-04-04 Rob Browning + + * configure.in: add GMP test (require GMP). + +2003-03-26 Marius Vollmer + + * libguile.h: Include "libguile/deprecated.h". + +2003-03-25 Rob Browning + + * configure.in: big overhaul to shift us to have separate private, + config.h, and public, scmconfig.h, configuration headers. Added a + fair amount of code to track down new required types: scm_t_uint8, + scm_t_uint16, scm_t_uint32, scm_t_int8, scm_t_int16, scm_t_int32, + and to detect optional types scm_t_uint64, scm_t_in64, long long, + unsigned long long, scm_t_ptrdiff, intptr_t, and uintptr_t. + (SCM_I_GSC_T_PTRDIFF): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_NEEDS_INTTYPES_H): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_NEEDS_STDINT_H): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_UINT8): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_UINT16): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_UINT32): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_UINT64): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_INT8): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_INT16): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_INT32): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_T_INT64): gen-scmconfig.h.in AC_SUBST var. + (USE_PTHREAD_THREADS): removed - handled by gen-scmconfig.c. + (USE_NULL_THREADS): removed - handled by gen-scmconfig.c. + (USE_COOP_THREADS): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_USE_PTHREAD_THREADS): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_USE_NULL_THREADS): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_USE_COOP_THREADS): gen-scmconfig.h.in AC_SUBST var. + (STACK_GROWS_UP): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_STACK_GROWS_UP): gen-scmconfig.h.in AC_SUBST var. + (GUILE_DEBUG_FREELIST): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_GUILE_DEBUG_FREELIST): gen-scmconfig.h.in AC_SUBST var. + (GUILE_DEBUG): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_GUILE_DEBUG): gen-scmconfig.h.in AC_SUBST var. + (SCM_ENABLE_DEPRECATED): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_ENABLE_DEPRECATED): gen-scmconfig.h.in AC_SUBST var. + (HAVE_ARRAYS): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_HAVE_ARRAYS): gen-scmconfig.h.in AC_SUBST var. + (SCM_ENABLE_ELISP): removed - handled by gen-scmconfig.c. + (SCM_I_GSC_ENABLE_ELISP): gen-scmconfig.h.in AC_SUBST var. + (SCM_I_GSC_C_INLINE): gen-scmconfig.h.in AC_SUBST var. + (DEBUG_EXTENSIONS): removed - handled by gen-scmconfig.c. + (READER_EXTENSIONS): removed - handled by gen-scmconfig.c. + (USE_THREADS): removed - handled by gen-scmconfig.c. + (GUILE_ISELECT): removed - handled by gen-scmconfig.c. + (DYNAMIC_LINKING): removed - handled by gen-scmconfig.c. + + * README: merge information from INSTALL and remove at least some + of the stale bits. + + * LICENSE: new file -- we should change this to the LGPL soon and + add COPYING.LIB to the distribution. + + * autogen.sh: call autoreconf with --force. This may fix the + "order" problem below without having to have two calls. + + * INSTALL: use the automake installed INSTALL file. The Guile + specific instructions are now in README. + +2003-03-21 Marius Vollmer + + * autogen.sh: Invoke autoreconf twice since the required files do + not seem to be generated in the right order. XXX - investigate + further. + +2003-03-19 Marius Vollmer + + * guile-tools.in (guileversion): Use $GUILE_EFFECTIVE_VERSION + instead of $GUILE_VERSION. Thanks to Kevin Ryde! + +2003-02-27 Rob Browning + + * configure.in (AC_CONFIG_SRCDIR): use GUILE-VERSION. + (AM_CONFIG_HEADER): change to config.h + + * Makefile.am (EXTRA_DIST): remove $(ACLOCAL). + (ACLOCAL_AMFLAGS): replaces ACLOCAL. + + * autogen.sh: switch to autoreconf -- see how it goes. remove + call to guile-aclocal.sh -- we now do the same thing with an + automake setting. + + * guile-aclocal.sh: deleted in favor of ACLOCAL_AMFLAGS in + Makefile.am. + +2003-02-26 Rob Browning + + * configure.in: change our config header from libguile/scmconfig.h + to be the traditional ./config.h. libguile/scmconfig.h is now + built from that during the build process. More changes coming... + +2003-01-23 Mikael Djurfeldt + + * libguile.h: #include "futures.h" + +2002-12-16 Mikael Djurfeldt + + * configure.in: Test if pthread.h declares + pthread_mutexattr_settype (). + +2002-12-15 Mikael Djurfeldt + + * configure.in (SCM_MUTEX_FAST, SCM_MUTEX_RECURSIVE): Test for + ways to get fast and recursive mutexes. + +2002-12-10 Mikael Djurfeldt + + * configure.in (_THREAD_SAFE): Define when pthreads are enabled in + order to get thread safe versions of glibc functions. + +2002-12-09 Mikael Djurfeldt + + * configure.in: Temporarily replaced "copt" threads option with new + option "pthreads". + (USE_PTHREAD_THREADS): Define if pthreads configured. + +2002-12-08 Rob Browning + + * configure.in (GUILE_EFFECTIVE_VERSION): AC_SUBST it. + (AC_CONFIG_FILES): separate out the files that need to be chmodded + at the end of config.status. Our "default" approach using + AC_CONFIG_COMMANDS quit working (and would have needed to be + changed to AC_CONFIG_COMMANDS(,,CMDS) rather than our previous + AC_CONFIG_COMMANDS(default,CMDS), but I the new approach, using + per-file AC_CONFIG_FILES calls appears to be more "correct" in the + current autoconf docs. + + * GUILE-VERSION (GUILE_EFFECTIVE_VERSION): new variable. + +2002-12-02 Marius Vollmer + + * Makefile.am (SUBDIRS): Removed qt. + + * configure.in: Do not configure QTHREADS. Do not define + USE_COOP_THREADS. Changed logic for thread package selection so + that the default is "coop-pthread" when -lpthread is found, "null" + otherwise. + +2002-12-01 Mikael Djurfeldt + + * GUILE-VERSION: Added versioning info for srfi 1. + + * configure.in (LIBGUILE_SRFI_SRFI_1_INTERFACE_CURRENT, + LIBGUILE_SRFI_SRFI_1_INTERFACE_REVISION, + LIBGUILE_SRFI_SRFI_1_INTERFACE_AGE, + LIBGUILE_SRFI_SRFI_1_INTERFACE): New AC_SUBST. + +2002-11-10 Marius Vollmer + + * configure.in (USE_THREADS, GUILE_ISELECT): Define always. We + define them with AC_DEFINE and not in some header file so that + they are visible exactly in the same way as they used to be. + +2002-11-03 Marius Vollmer + + * configure.in: Do not add "threads.o" to the libobjs, it is now + always compiled. + (USE_THREADS, GUILE_ISELECT): Do not define. + +2002-10-27 Marius Vollmer + + * configure.in: Handle thread package "coop-pthread" with alias + "copt" and define USE_COPT_THREADS when it is selected. + Always define GUILE_ISELECT. + +2002-10-26 Neil Jerram + + * configure.in (AC_CONFIG_FILES): Add ice-9/debugger/Makefile and + ice-9/debugger/breakpoints/Makefile. + +2002-10-21 Marius Vollmer + + * configure.in: Changed logic in thread support configuration such + that --with-threads=no is equivalent to --with-threads=null. On + platforms that are not supported by QuickThreads, we also use the + null-threads. Thus, USE_THREADS is always defined now. + +2002-10-16 Marius Vollmer + + * configure.in: Shuffled around and extended the thread + configuration code to allow the "null" thread package to be + selected. Define USE_NULL_THREADS in that case. + +2002-10-13 Gary Houston + + * autogen.sh (ac_version): try automake 1.7 too. + +2002-10-05 Marius Vollmer + + * autogen.sh: Make sure that $autoheader is always set. When we + would use the plain "autoconf", $autoheader would end up empty and + libguile/scmconfig.h.in would not be updated. + +2002-10-04 Rob Browning + + * libltdl: moved to libguile-ltdl. + + * Makefile.am (SUBDIRS): remove libltdl. + + * autogen.sh: remove support for libltdl sub-configure. + (ac_version): widen support check to any 2.5? autoconf version. + 2.54 is out now. + + * configure.in: turn on -Werror by default. We're now clean. I'd + like to stay that way. If we want, we can turn it off by default + when we make the stable release, but I caught a lot of bugs this + way. Accomodate libguile-ltdl -- therea are some ltdl things that + are commented out now INCLTDL and LIBLTDL. I think we may not + need them anymore, but I'll leave them until we're sure. We also + killed off the libltdl dir and related options including the + AC_CONFIG_SUBDIRS. I also added some explicit tests for some + headers and functions that weren't listed but were in + scmconfig.h.in. though this may have been unnecessary. + +2002-10-04 Marius Vollmer + + * configure.in: Use AC_LIBLTDL_CONVENIENCE instead of + AC_LIBLTDL_INSTALLABLE. + +2002-10-03 Marius Vollmer + + * autogen.sh: Do not instruct libtoolize to copy libltdl into our + sources. Do not patch it. We have our own version now that is + only being used as a convenience library. + +2002-08-24 Marius Vollmer + + * configure.in: Check for __libc_stack_end. + +2002-08-05 Han-Wen Nienhuys + + * configure.in: add snprintf + +2002-08-04 Han-Wen + + * NEWS: add entries for GC and vector WB. + +2002-07-22 Han-Wen + + * autogen.sh (mscripts): find and check version number of + automake. Complain if 1.6 is not found. + +2002-07-20 Han-Wen + + * autogen.sh (mscripts): find and check version number of + autoconf. Complain if 2.53 is not found. + +2002-07-20 Dirk Herrmann + + * benchmark-guile.in: Copied from check-guile.in and adapted for + use with benchmarks. + + * Makefile.am: Recurse into the benchmark-suite subdir. + + * configure.in: Added benchmarking files. + +2002-07-12 Gary Houston + + * configure.in: check dynamic linking before modules. Add dynl.c + if dynamic linking is available, i.e., unless --with-modules=no + was given to configure. + +2002-07-09 Marius Vollmer + + * autogen.sh: Patch libltdl/ltdl.c to avoid a nasty bug in + libtool-1.4.2. + +2002-07-07 Marius Vollmer + + * autogen.sh: Do not copy INSTALL from workbook since it is not + uniform across branches. + * INSTALL: Re-added to repository. + + Crosscompiling and Cygwin fixes from Jan Nieuwenhuizen. Thanks! + + * autogen.sh: Only fix libltdl/configure.in if it exists. Current + libtool CVS does not need this fix. + + * configure.in (AC_LIBTOOL_WIN32_DLL): Add for shared Cygwin + build. + Add --with-cc-for-build option to re-enable cross building. + Add --with-guile-for-build option to re-enable cross building. + +2002-06-30 Gary Houston + + * autogen.sh: Changed the path to the scripts directory. + In libltdl, run aclocal before autoconf and automake: this + eliminated various warnings after upgrading to newer automake. + +2002-05-22 Marius Vollmer + + From John W. Eaton + + * configure.in (AC_CHECK_FUNCS): Check for copysign. + +2002-05-10 Marius Vollmer + + * libguile.h: Added inclusion of "extensions.h". + +2002-05-06 Marius Vollmer + + * configure.in: Include before when + checking vor IPv6. This is for NetBSD 1.5. Thanks to Greg + Troxel! + + From John W. Eaton. + + * configure.in (AC_CHECK_HEADERS): Check for floatingpoint.h + ieeefp.h, and nan.h. + (AC_CHECK_FUNCS): Check for finite, isinf, and isnan. + +2002-05-01 Thien-Thi Nguyen + + * autogen.sh: Add call to $mscripts/render-bugs + to create BUGS file. + + * BUGS: bye bye + +2002-04-27 Thien-Thi Nguyen + + * Makefile.am (EXTRA_DIST): Remove qthreads.m4. + +2002-04-26 Marius Vollmer + + * guile-aclocal.sh: Replaced with a simple invocation of "aclocal + -I guile-config". This works as of automake 1.5. + * qthreads.m4: Moved to guile-config/. + 2002-04-18 Marius Vollmer * autogen.sh: Call automake twice for guile-core so that two