[Chicken-hackers] [PATCH] Include reverse-list-string in srfi-13's import library

2014-08-04 Thread Evan Hanson
This procedure is provided by library.scm, but also needs to be exported by the primitive srfi-13 library so that it's accessible when a module imports srfi-13 but not chicken. Fixes #1101. --- srfi-13.import.scm |1 + 1 file changed, 1 insertion(+) diff --git a/srfi-13.import.scm

[Chicken-hackers] [PATCH 1/2] Set HAVE_POSIX_POLL for Android

2014-08-04 Thread Moritz Heidkamp
Hi everyone, the attached patch enables poll(2) for the Android platform. I verified via strace on an Android device that poll(2) is actually used after the patch. A preliminary NEWS entry is included but needs to be updated once we have a CVE number for this issue. Moritz -- bevuta IT GmbH -

Re: [Chicken-hackers] [PATCH 1/2] Set HAVE_POSIX_POLL for Android

2014-08-04 Thread Moritz Heidkamp
Moritz Heidkamp moritz.heidk...@bevuta.com writes: the attached patch enables poll(2) for the Android platform. Forgot to mention that I think this should probably go into stability. Moritz ___ Chicken-hackers mailing list Chicken-hackers@nongnu.org

[Chicken-hackers] [PATCH 2/2] Invert poll(2) flag default

2014-08-04 Thread Moritz Heidkamp
The attached patch is a follow-up to my previous patch (the one which enables poll(2) on Android). It inverts the HAVE_POSIX_POLL flag to HAVE_NO_POSIX_POLL which only needs to be set when poll(2) is *not* available rather than the other way around. The purpose is to make the safe choice the

[Chicken-hackers] [PATCH] Don't enable debugging on Android by default

2014-08-04 Thread Moritz Heidkamp
This was probably accidentally left in when generating the Android patch. -- bevuta IT GmbH - professionelle IT-Lösungen Marktstraße 10 | http://www.bevuta.com/ | HRB 62476 AG Köln 50968 Köln | Tel.: +49 221 282678-0 | Geschäftsführer: Pablo Beyen From 8d21fae15e69c65d0b3d1e721de557588f0a4dfa

Re: [Chicken-hackers] [PATCH] Don't enable debugging on Android by default

2014-08-04 Thread Felix Winkelmann
From: Moritz Heidkamp moritz.heidk...@bevuta.com Subject: [Chicken-hackers] [PATCH] Don't enable debugging on Android by default Date: Mon, 04 Aug 2014 18:30:44 +0200 This was probably accidentally left in when generating the Android patch. That's mostly correct - I thought it might be handy,