~ chicken-core (chicken-5) bbf5c1d5839970c17b37406155180853c325c710


commit bbf5c1d5839970c17b37406155180853c325c710
Author:     Moritz Heidkamp <moritz.heidkamp@bevuta.com>
AuthorDate: Mon Aug 4 15:19:48 2014 +0200
Commit:     Peter Bex <peter.bex@xs4all.nl>
CommitDate: Thu Aug 7 21:47:47 2014 +0200

    Set HAVE_POSIX_POLL for Android
    
    Signed-off-by: Peter Bex <peter.bex@xs4all.nl>

diff --git a/Makefile.android b/Makefile.android
index 819587f9..ac72ee88 100644
--- a/Makefile.android
+++ b/Makefile.android
@@ -69,6 +69,7 @@ chicken-config.h: chicken-defaults.h
 	echo "#define HAVE_LONG_LONG 1" >>$@
 	echo "#define HAVE_MEMMOVE 1" >>$@
 	echo "#define HAVE_MEMORY_H 1" >>$@
+	echo "#define HAVE_POSIX_POLL 1" >>$@
 	echo "#define HAVE_SIGACTION 1" >>$@
 	echo "#define HAVE_SIGSETJMP 1" >>$@
 	echo "#define HAVE_STDINT_H 1" >>$@
diff --git a/NEWS b/NEWS
index 5ab28f06..71341e85 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
 4.9.1
 
+- Security fixes
+  - Use POSIX poll() on Android (CVE pending).
+
 - Core libraries
   - alist-ref from unit data-structures now gives an error when passed
     a non-list, for consistency with assv/assq/assoc.
Trap