X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=eglib%2FChangeLog;h=204674eb31286ae7168dc1e51262e540393aab90;hb=f29e8e450199e224c77bc08316040ebaeae0c650;hp=1b1e1703ae347bd440d6f0c1a988d095b6819f30;hpb=47990e3daab8a26969c3da2147aa5c2ff39e7ba3;p=mono.git diff --git a/eglib/ChangeLog b/eglib/ChangeLog index 1b1e1703ae3..204674eb312 100644 --- a/eglib/ChangeLog +++ b/eglib/ChangeLog @@ -1,3 +1,129 @@ +2010-07-25 Zoltan Varga + + * configure.ac src/eglib-config.h.in src/eglib-config.hw: Define G_GINT64_FORMAT. + +2010-07-20 Zoltan Varga + + * src/glib.h (G_LIKELY): Implement these for gcc properly. + +2010-07-19 Miguel de Icaza + + * src/gmisc-win32.c (g_getenv): Distinguish between variable not + found and an empty variable. + + This should fix 566152 + +2010-07-19 Zoltan Varga + + * src/glib.h (G_MAXUINT64): Define this. Fixes #623293. + + * src/eglib-config.hw: Define UINT64_MAX. + +2010-07-16 Gonzalo Paniagua Javier + + * src/gmisc-unix.c: include config.h. Fixes bug #609632. + Use getpwuid_r instead of getpwent_r. + +2010-07-02 Zoltan Varga + + * src/glib.h: Define gboolean as int32_t to match mono_bool. + +2010-06-22 Rodrigo Kumpera + + * src/ghashtable.c: Add code to sanity check the + hashtable contents. This is invaluable, for example, + to catch bugs where a key hashcode changes after + insertion. + +2010-06-18 Chris Toshok + + patch from Jacob Berkman: + + * src/glib.h (g_mkdir): #define to mkdir + (g_ascii_strtoull): #define to strtoull + + * src/gmodule.h: add G_BEGIN/END_DECLS + + * src/gstr.c (g_strdupv): new function. + +2010-06-18 Rolf Bjarne Kvinge + + * src/eglib-remap.h: Remap g_ptr_array_remove_fast too. + +2010-06-15 Zoltan Varga + + * src/gunicode.c: Applied patch from Hib Eris . use "windows.h" + instead of "Windows.h". + +2010-05-25 Zoltan Varga + + * Applied patch from Burkhard Linke (blinke@cebitec.uni-bielefeld.de). Fix + building on solaris. + +2010-05-21 Zoltan Varga + + * src/gmisc-win32.c (g_setenv): Use the + GetEnvironmentVariableW/SetEnvironmentVariableW variants. + +2010-05-15 Zoltan Varga + + * src/glib.h (g_error): Add a for (;;) after the call to tell GCC this doesn't + return, fixing some warnings. + +2010-05-13 Alan McGovern + + * src/gstring.c: Put in some null guards for the ctors + +2010-05-11 Miguel de Icaza + + * src/gunicode.c: Pull the Windows.h header when G_OS_WIN32 is + defined. + +2010-05-11 Atsushi Enomoto + + * Makefile.am : do not try to build test on windows (fails). + * src/glib.h : fix cygwin build, do not include unistd.h. + +2010-05-10 Miguel de Icaza + + * gfile-win32.c: Port this to use the Win32 APIs to get this + building with Cygwin. + +2010-05-07 Andrew Jorgensen + + * test/test.h: Fix some compiler warning that SUSE takes seriously. + +2010-05-06 Alan McGovern + + * src/gmarkup.c: Fix a parser issue when skipping the xml declaration. + +2010-05-06 Jonathan Chambers + + * gfile-win32.c: Use __stat64 instead of _stat64. + +2010-05-04 Jonathan Chambers + + * gspawn.c: Remove extern define for MSVC. + +2010-05-03 Zoltan Varga + + * src/glib.h: Include unistd.h on !windows for pid_t. + + * gspawn.c: Add an extern define for environ on !apple platforms. + +2010-05-02 Zoltan Varga + + * src/glib.h: Include sys/types.h for pid_t. + +2010-05-01 Zoltan Varga + + * src/goutput.c (g_logv): Append a '\n' to the end of the string as glib does. + +2010-04-28 Zoltan Varga + + * configure.ac src/gspawn.c: Applied openbsd changes from Robert Nagy + . + 2010-04-16 Miguel de Icaza * src/gshell.c (g_shell_unquote): Implement this.