X-Git-Url: http://git.hcoop.net/bpt/guile.git/blobdiff_plain/ad280ae0a33d17d638e0dd3a2ff08707c8a69c59..957f9f622d0de2747698af20c002971903f28814:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 632e1d4ce..a90002438 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,197 @@ +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