From: Michael Tuexen <Michael.Tuexen@lurchi.franken.de>
Cc: guile-devel@gnu.org
Subject: Re: Guile 1.7.91 has been released.
Date: Mon, 13 Feb 2006 00:46:41 +0100 [thread overview]
Message-ID: <D542A358-8251-4861-B4BE-DCC0F80339F0@lurchi.franken.de> (raw)
In-Reply-To: <87y80gyxrq.fsf@zagadka.de>
Hi Marius,
the check for socklen_t fails incorrectly because socklen_t is
defined in /sys/socket.h on Mac OS X, and on BSD systems in general.
What about using
AC_MSG_CHECKING(for socklen_t)
AC_TRY_COMPILE([#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#include <sys/socket.h>],
[socklen_t x = 1; return 0;],
[AC_MSG_RESULT(yes)],
[AC_MSG_RESULT(int)
AC_DEFINE(socklen_t, int, [Define a type for
socklen_t.])])
instead of
AC_CHECK_TYPE(socklen_t, int)
Best regards
Michael
On Feb 13, 2006, at 12:15 AM, Marius Vollmer wrote:
> We are pleased to announce the release of Guile 1.7.91. This is a
> release candidate for Guile 1.8. It can be found here:
>
> ftp://alpha.gnu.org/gnu/guile/guile-1.7.91.tar.gz
>
> Its MD5 checksum is
>
> b2106c1b574e22ec67c4c2178074b5ec guile-1.7.91.tar.gz
>
> The plan is to release version 1.8.0 next weekend, 2006-01-19, if all
> goes well.
>
>
> The NEWS file is quite long. Here are the most interesting entries:
>
> Changes since 1.6:
>
> * Guile is now licensed with the GNU Lesser General Public License.
>
> * The manual is now licensed with the GNU Free Documentation
> License.
>
> * We now use GNU MP for bignums.
>
> * We now have exact rationals, such as 1/3.
>
> * We now use native POSIX threads for real concurrent threads.
>
> * There is a new way to initalize Guile that allows one to use Guile
> from threads that have not been created by Guile.
>
> * Mutexes and condition variables are now always fair. A recursive
> mutex must be requested explicitely.
>
> * The low-level thread API has been removed.
>
> * There is now support for copy-on-write substrings and
> mutation-sharing substrings.
>
> * A new family of functions for converting between C values and
> Scheme values has been added that is future-proof and thread-safe.
>
> * The INUM macros like SCM_MAKINUM have been deprecated.
>
> * The macros SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_LENGTH,
> SCM_SYMBOL_CHARS, and SCM_SYMBOL_LENGTH have been deprecated.
>
> * There is a new way to deal with non-local exits and re-entries in
> C code, which is nicer than scm_internal_dynamic_wind.
>
> * There are new malloc-like functions that work better than
> scm_must_malloc, etc.
>
> * There is a new way to access all kinds of vectors and arrays from
> C that is efficient and thread-safe.
>
> * The concept of dynamic roots has been factored into continuation
> barriers and dynamic states.
>
> See NEWS and the manual for more details.
>
> --
> GPG: D5D4E405 - 2F9B BCCC 8527 692A 04E3 331E FAF8 226A D5D4 E405
>
>
> _______________________________________________
> Guile-devel mailing list
> Guile-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/guile-devel
>
_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-devel
next prev parent reply other threads:[~2006-02-12 23:46 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-12 23:15 Guile 1.7.91 has been released Marius Vollmer
2006-02-12 23:46 ` Michael Tuexen [this message]
2006-02-14 21:50 ` Marius Vollmer
2006-02-18 23:45 ` Han-Wen Nienhuys
2006-02-20 20:59 ` Marius Vollmer
2006-02-13 8:37 ` Han-Wen Nienhuys
2006-02-13 9:41 ` Ludovic Courtès
2006-02-13 19:50 ` Marius Vollmer
2006-02-14 9:22 ` Ludovic Courtès
2006-02-14 19:39 ` Marius Vollmer
2006-02-13 12:49 ` Bill Schottstaedt
2006-02-13 21:35 ` Kevin Ryde
2006-02-13 22:33 ` Bill Schottstaedt
2006-02-13 22:50 ` Kevin Ryde
2006-02-13 23:35 ` Bill Schottstaedt
2006-02-14 0:58 ` Kevin Ryde
2006-02-14 1:28 ` Kevin Ryde
2006-02-14 21:36 ` Bill Schottstaedt
2006-02-15 0:03 ` Kevin Ryde
2006-02-15 7:56 ` Ludovic Courtès
2006-02-15 12:37 ` Guile 1.7.91 has been released (x86-64 segfault) Bill Schottstaedt
2006-02-14 9:27 ` Guile 1.7.91 has been released Ludovic Courtès
2006-02-13 15:31 ` Bill Schottstaedt
2006-02-14 8:50 ` Andy Wingo
2006-02-20 18:36 ` Neil Jerram
2006-02-20 20:04 ` Bill Schottstaedt
2006-02-13 18:40 ` Bill Schottstaedt
2006-02-14 11:35 ` Han-Wen Nienhuys
2006-02-14 21:32 ` Marius Vollmer
2006-02-14 13:58 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/guile/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=D542A358-8251-4861-B4BE-DCC0F80339F0@lurchi.franken.de \
--to=michael.tuexen@lurchi.franken.de \
--cc=guile-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).