[xbuild] Set @(CollectedBuildOutput) for projects build from .sln .
[mono.git] / support / ChangeLog
index 4bb3c13bf3b1322c310aa56a6e0fb79a1d707b7f..58224ea9c08315238838b3b4a1ea973c37699e44 100644 (file)
@@ -1,3 +1,111 @@
+2010-06-28  Zoltan Varga  <vargaz@gmail.com>
+
+       * Makefile.am (patch-libtool): Fix this up after the dolt changes.
+
+2010-05-13  Geoff Norton  <gnorton@novell.com>
+
+       * fakepoll.h: Added for OSX
+       * serial.c:
+       * signal.c: poll on OSX is broken, so we use a select based 
+       implementation instead.
+
+2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * zlib-helper.c: don't call Z_FINISH if nothing has been written.
+
+2010-04-19  Jonathan Pryor  <jpryor@novell.com>
+
+       * dirent.c, grp.c, macros.c, pwd.c, signal.c, sys-statvfs.c, sys-time.c,
+         unistd.c: Add #if HAVE_XXX checks for functions which aren't
+         provided on Android.
+
+2010-04-15  Jonathan Pryor  <jpryor@novell.com>
+
+       * Makefile.am: Revert previous linkage against libmono.so, as lupus
+         mentioned that it's unacceptable for MonoPosixHelper to link against
+         libmono (e.g. when embedding mono, there might not be a libmono).
+       * map.h: Flush updated Mono_Unix_UnixSignal_SignalInfo prototype.
+       * signal.c: Don't use mono_runtime_is_shutting_down(). Instead, change
+         Mono_Unix_UnixSignal_WaitAny() to accept a function pointer argument,
+         which will return Environment.HasShutdownStarted in managed code (the 
+         moral equivalent of mono_runtime_is_shutting_down()).  This allows
+         us to avoid a libmono dependency w/o lots of rewriting. Fixes #592981.
+
+2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * zlib-helper.c: now that we don't use Z_SYNC_FLUSH, there might be
+       unflushed input in zstream, so always call Z_FINISH.
+
+2010-04-02  Jonathan Pryor  <jpryor@novell.com>
+
+       * Makefile.am: On non-Windows platforms, MonoPosixHelper now links
+         against libmono.so, for mono_runtime_is_shutting_down().
+       * signal.c: Only continue retrying system calls if Mono is NOT
+         attempting to shut down.  Fixes #592981.
+
+2010-03-29  Zoltan Varga  <vargaz@gmail.com>
+
+       * mph.h: Applied some changes from the openbsd ports tree to fix openbsd
+       support.
+
+2010-03-23  Andreas Faerber  <andreas.faerber@web.de>
+
+       * old-map.c (map_Mono_Posix_Signals): Fix build for platforms where
+       SIGIO is not defined (Haiku).
+       
+       Code is contributed under MIT/X11 license.
+
+2010-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
+
+       * serial.cs: Add 921600 to the list of possible baud rates, and
+       use it only if defined, as is not available in all the unix systems.
+       Fixes #445520.
+
+2010-01-28 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * zlib-helper.c: no need for sync flush when compressing.
+       Thanks to Hin-Tak Leung.
+
+2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * serial.c: Fix the OSX build.
+
+2010-01-22 Leszek Ciesielski <skolima@gmail.com>
+       
+       * serial.c: baud rate 460800 by Thad Thompson <TThompson@nucsafe.com>
+       * serial.c: report errors from every function
+
+2009-12-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * zlib-helper.c: when finishing uncompressing a buffer, we might need
+       more than one call to deflate with Z_FINISH since the uncompressed
+       data can take more space than the allocated buffer.
+
+       Fixes the IPY+Chiron test case.
+
+2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * zlib-helper.c: stop trying to decompress when we get Z_STREAM_END.
+       Patch by Ives Bastide. Fixes bug #549942.
+
+2009-09-21 Leszek Ciesielski <skolima@gmail.com>
+
+       * serial.c: return -1 from close() on error
+
+2009-09-14  Jonathan Pryor  <jpryor@novell.com>
+
+       * zlib-helper.c: support reverse callbacks within MonoTouch.
+
+2009-09-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
+
+       * zconf.h:
+       * Makefile.am: attempt to fix the windows GCC build.
+
+2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
+
+       * time.c (Mono_Posix_Syscall_nanosleep): Avoid referencing unitialized
+       memory.
+
 2009-08-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
 
        * deflate.c: