X-Git-Url: http://git.hcoop.net/bpt/guile.git/blobdiff_plain/5ebbe4ef9b3beff3daf06a75818cfb700a08e879..c862d0e0c125808a85c5290045a4e1f87c5ac962:/ChangeLog diff --git a/ChangeLog b/ChangeLog index a8533cf5c..0f32c104a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,463 @@ +2006-06-13 Ludovic Courtès + + * NEWS: Mentioned the new behavior of `equal?' for structures. + +2006-06-06 Neil Jerram + + * acinclude.m4 (ACX_PTHREAD): Update to latest definition from + autoconf macro archive, to fix pthread linking problem on Solaris + 10, reported by Charles Gagnon. + +2006-05-28 Kevin Ryde + + * configure.in (isnan): Remove "#ifdef __MINGW32__, #define isnan + _isnan". Mingw provides isnan as a macro (in math.h), the test + already detects it just fine with no special case. + +2006-05-26 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add ioctl. + (pthread_attr_getstack): Restrict test to pthreads case, to avoid + AC_TRY_RUN when cross-compiling --without-threads. + +2006-05-20 Kevin Ryde + + * configure.in (S_ISLNK): Remove test, leave it to #ifdef in the .c + files. + +2006-05-16 Kevin Ryde + + * configure.in (struct stat st_blocks): Change AC_STRUCT_ST_BLOCKS to + a plain AC_CHECK_MEMBERS, we don't want AC_LIBOBJ(fileblocks) which + the former gives. Remove the commented-out code that was to have + munged fileblocks out of LIBOBJS. This fixes mingw, where the lack of + st_blocks and absense of the fileblocks.c replacement caused build + failure. Reported by "The Senator". + (struct stat st_rdev, st_blksize): Combine into a single + AC_CHECK_MEMBERS. + +2006-04-18 Rob Browning + + * configure.in: Add AC_CONFIG_AUX_DIR([.]) as suggested in the + autotools documentation. + +2006-04-16 Kevin Ryde + + * configure.in (stat64, off_t): New tests. + +2006-03-31 Kevin Ryde + + * configure.in (socklen_t): Enhance test for this type, coping with + need for on MacOS X. Reported by Michael Tuexen and + Jay Cotton. + +2006-03-26 Marius Vollmer + + * configure.in: Added check that defines + PTHREAD_ATTR_GETSTACK_WORKS when pthread_attr_getstack works for + the main thread. + +2006-02-26 Kevin Ryde + + * configure.in (AC_CHECK_FUNCS): Add dirfd. + +2006-02-20 Marius Vollmer + + Released 1.8.0. + + * GUILE-VERSION: Set version. + + * GUILE-VERSION: Bumped versions for 1.9 series. + +2006-02-06 Marius Vollmer + + Branched for 1.8 series. + + * GUILE-VERSION: Bumped version numbers. + + * configure.in: Removed --enable-arrays option. + +2005-12-14 Neil Jerram + + * NEWS: Remove entry claiming that breakpoints have been added, + because breakpoints are now implemented outside the core distro. + Add entries on obsolescence of the 'cheap option and on tweaking + support in evaluator trap calls. Finally, correct outline level + of item about make-keyword-from-dash-symbol. + +2005-07-09 Neil Jerram + + * configure.in (AC_CONFIG_FILES): Removed emacs/Makefile and + ice-9/debugger/breakpoints/Makefile. + + * Makefile.am (SUBDIRS): Removed emacs. + +2005-06-05 Marius Vollmer + + From Jan Nieuwenhuizen . Thanks! + + * configure.in: Add tests for socklen_t and ip_mreq. + +2005-03-13 Kevin Ryde + + * configure.in, GUILE-VERSION (LIBGUILE_SRFI_SRFI_60): New defines. + +2005-03-09 Marius Vollmer + + Guile 1.7.2 has been released. + + * GUILE-VERSION (GUILE_MICRO_VERSION): Incremented to "2". + +2005-03-08 Marius Vollmer + + libltdl is no longer distributed. We expect it to be installed + already. + + * configure.in: Do not call AC_LIBLTDL_INSTALLABLE. Use + AC_CHECK_LIB instead. Do not subst LTDLINCL and LIBLTDL. Do not + add "-DLIBLTDL_DLL_IMPORT" on MINGW32. + + * Makefile.am (SUBDIRS): Removed libltdl. + + * README: Talk about required external packages. + + * autogen.sh: Do not call libtoolize. + +2005-03-02 Marius Vollmer + + * configure.in: Do not check for fast or recursive mutexes. Check + for pthread_attr_getstack. + (SCM_I_GSC_USE_COOP_THREADS): Dot not subst. + (pthread_mutexattr_settype): Do not check for it. + +2005-02-28 Marius Vollmer + + * autogen.sh: Add '--verbose' option to autoreconf invocation. + Thanks to Bruno Haible. + +2005-01-02 Marius Vollmer + + * configure.in (SCM_I_GSC_HAVE_ARRAYS): Removed '--disable-arrays' + option. + +2004-11-28 Kevin Ryde + + * configure.in (AC_SUBST): Correction, LTDLINC should be LTDLINCL, the + latter is what libtool defines. + +2004-10-27 Marius Vollmer + + * libguile.h: Include "libguile/srfi-4.h". + +2004-10-25 Marius Vollmer + + * autogen.sh: Added explicit invocation of libtoolize before + autoreconf so that libltdl/ is updated as well. + +2004-10-22 Marius Vollmer + + Removed usage of libguile-ltdl. + + * configure.in: Call AC_LIBLTDL_INSTALLABLE instead of + AC_LIB_LTDL. + (AC_CONFIG_SUBDIRS): Added libltdl. + (DLPREOPEN, LTDLINC, LIBLTDL): Moved AC_SUBST near other libtool + stuff. Also subst LTDLINC instead of INCLTDL. + (AC_CONFIG_FILES): Removed libguile-ltdl/Makefile and + libguile-ltdl/upstream/Makefile. + + * Makefile.am (SUBDIRS): Replaced libguile-ltdl with libltdl. + +2004-09-28 Marius Vollmer + + * ABOUT-NLS: New, from gettext 0.14.1. + + * configure.in: Do use AM_GNU_GETTEXT, since gettextize is not run + with autoconf 2.59. + +2004-09-25 Marius Vollmer + + * configure.in: Do not use AM_GNU_GETTEXT for now, it causes + gettextize to run during autogen.sh, which we do not want. + Explicitely check for libintl, gettext, bindtextdomain, and + textdomain instead. + +2004-09-24 Marius Vollmer + + * libguile.h: Include outside of extern "C" block. + (Note that numbers.h still includes gmp.h to make it + self-contained.) + + * configure.in: Do not include PTHREAD_CFLAGS in CFLAGS, CFLAGS is + for the user and is often overwritten temporarily. + (GUILE_CFLAGS): New, include PTHREAD_CFLAGS here. + (GUILE_LIBS): Remove THREAD_LIBS_INSTALLED, which is unused now. + +2004-09-22 Marius Vollmer + + * configure.in: Add AM_GNU_GETTEXT invocation. From Bruno Haible. + +2004-09-21 Marius Vollmer + + * acinclude.m4 (ACX_PTHREAD): New. + * configure.in: Use it instead of simply looking for -lpthread. + Thanks to Andreas Vögele! + +2004-09-08 Marius Vollmer + + * configure.in: Fail when alloca can not be found natively. + +2004-09-03 Stefan Jahn + + * configure.in (isinf): Let configure find the isinf() function + on MinGW32 systems. + +2004-08-27 Kevin Ryde + + * configure.in (AC_CHECK_MEMBERS): Add struct sockaddr.sin_len and + struct sockaddr_in6.sin6_len. Reported by Michael Tuexen. + +2004-08-27 Marius Vollmer + + Guile 1.7.1 as been released. + +2004-08-26 Marius Vollmer + + * GUILE-VERSION: Bumped all versions for the 1.7.1 release. Added + LIBGUILE_*_MAJOR variables for inclusion in the names of shared + libraries such as "libguile-srfi-srfi-1-v-MAJOR.la". Removed + LIBQTHREADS_*. + * configure.in: Updated for the new set of variables defined in + GUILE-VERSION. + +2004-08-25 Marius Vollmer + + * libguile.h: Include srfi-13.h and srfi-14.h, do not include + strop.h. + +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,