1 2010-07-25 Zoltan Varga <vargaz@gmail.com>
3 * configure.ac src/eglib-config.h.in src/eglib-config.hw: Define G_GINT64_FORMAT.
5 2010-07-20 Zoltan Varga <vargaz@gmail.com>
7 * src/glib.h (G_LIKELY): Implement these for gcc properly.
9 2010-07-19 Miguel de Icaza <miguel@novell.com>
11 * src/gmisc-win32.c (g_getenv): Distinguish between variable not
12 found and an empty variable.
14 This should fix 566152
16 2010-07-19 Zoltan Varga <vargaz@gmail.com>
18 * src/glib.h (G_MAXUINT64): Define this. Fixes #623293.
20 * src/eglib-config.hw: Define UINT64_MAX.
22 2010-07-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
24 * src/gmisc-unix.c: include config.h. Fixes bug #609632.
25 Use getpwuid_r instead of getpwent_r.
27 2010-07-02 Zoltan Varga <vargaz@gmail.com>
29 * src/glib.h: Define gboolean as int32_t to match mono_bool.
31 2010-06-22 Rodrigo Kumpera <rkumpera@novell.com>
33 * src/ghashtable.c: Add code to sanity check the
34 hashtable contents. This is invaluable, for example,
35 to catch bugs where a key hashcode changes after
38 2010-06-18 Chris Toshok <toshok@ximian.com>
40 patch from Jacob Berkman:
42 * src/glib.h (g_mkdir): #define to mkdir
43 (g_ascii_strtoull): #define to strtoull
45 * src/gmodule.h: add G_BEGIN/END_DECLS
47 * src/gstr.c (g_strdupv): new function.
49 2010-06-18 Rolf Bjarne Kvinge <RKvinge@novell.com>
51 * src/eglib-remap.h: Remap g_ptr_array_remove_fast too.
53 2010-06-15 Zoltan Varga <vargaz@gmail.com>
55 * src/gunicode.c: Applied patch from Hib Eris <hib@hiberis.nl>. use "windows.h"
56 instead of "Windows.h".
58 2010-05-25 Zoltan Varga <vargaz@gmail.com>
60 * Applied patch from Burkhard Linke (blinke@cebitec.uni-bielefeld.de). Fix
63 2010-05-21 Zoltan Varga <vargaz@gmail.com>
65 * src/gmisc-win32.c (g_setenv): Use the
66 GetEnvironmentVariableW/SetEnvironmentVariableW variants.
68 2010-05-15 Zoltan Varga <vargaz@gmail.com>
70 * src/glib.h (g_error): Add a for (;;) after the call to tell GCC this doesn't
71 return, fixing some warnings.
73 2010-05-13 Alan McGovern <amcgovern@novell.com>
75 * src/gstring.c: Put in some null guards for the ctors
77 2010-05-11 Miguel de Icaza <miguel@novell.com>
79 * src/gunicode.c: Pull the Windows.h header when G_OS_WIN32 is
82 2010-05-11 Atsushi Enomoto <atsushi@ximian.com>
84 * Makefile.am : do not try to build test on windows (fails).
85 * src/glib.h : fix cygwin build, do not include unistd.h.
87 2010-05-10 Miguel de Icaza <miguel@novell.com>
89 * gfile-win32.c: Port this to use the Win32 APIs to get this
92 2010-05-07 Andrew Jorgensen <ajorgensen@novell.com>
94 * test/test.h: Fix some compiler warning that SUSE takes seriously.
96 2010-05-06 Alan McGovern <amcgovern@novell.com>
98 * src/gmarkup.c: Fix a parser issue when skipping the xml declaration.
100 2010-05-06 Jonathan Chambers <joncham@gmail.com>
102 * gfile-win32.c: Use __stat64 instead of _stat64.
104 2010-05-04 Jonathan Chambers <joncham@gmail.com>
106 * gspawn.c: Remove extern define for MSVC.
108 2010-05-03 Zoltan Varga <vargaz@gmail.com>
110 * src/glib.h: Include unistd.h on !windows for pid_t.
112 * gspawn.c: Add an extern define for environ on !apple platforms.
114 2010-05-02 Zoltan Varga <vargaz@gmail.com>
116 * src/glib.h: Include sys/types.h for pid_t.
118 2010-05-01 Zoltan Varga <vargaz@gmail.com>
120 * src/goutput.c (g_logv): Append a '\n' to the end of the string as glib does.
122 2010-04-28 Zoltan Varga <vargaz@gmail.com>
124 * configure.ac src/gspawn.c: Applied openbsd changes from Robert Nagy
125 <robert@openbsd.org>.
127 2010-04-16 Miguel de Icaza <miguel@novell.com>
129 * src/gshell.c (g_shell_unquote): Implement this.
131 2010-04-25 Andreas Faerber <andreas.faerber@web.de>
133 * configure.ac: The iconv function may be libiconv_open.
134 Fixes linking with GNU libiconv.
136 Contributed under MIT/X11 license.
138 2010-04-23 Geoff Norton <gnorton@novell.com>
140 * configure.ac: The iconv function is iconv_open.
142 2010-04-19 Jonathan Pryor <jpryor@novell.com>
144 * src/glib.h: Rebase g_return_if_fail(), g_return_val_if_fail() in
145 terms of g_critical() instead of printf, and turn g_printerr() into
146 an actual function instead of a macro.
147 * src/goutput.c: Add Android support, sending g_print(), g_printerr(),
148 and g_log() messages to the Android system log.
150 2010-04-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
152 * test/ptrarray.c: new tests
153 * src/gptrarray.c: implemented g_ptr_array_remove_fast().
155 2010-04-10 Andreas Faerber <andreas.faerber@web.de>
157 * configure.ac: Add checks for libm and libdl.
158 * {src,test}/Makefile.am: Remove hardcoded library dependencies.
159 Fixes compilation on Haiku.
161 Contributed under MIT/X11 license.
163 2010-03-05 Zoltan Varga <vargaz@gmail.com>
165 * test/test.c (_GNU_SOURCE): Fix compilation if _GNU_SOURCE is already defined.
168 Thu Mar 4 16:34:37 CET 2010 Paolo Molaro <lupus@ximian.com>
170 * src/unicode-data.h: save 70 KB.
172 Thu Mar 4 16:18:34 CET 2010 Paolo Molaro <lupus@ximian.com>
174 * src/eglib-remap.h, src/glib.h: header file to remap the symbols
175 so there is no clash with system glib.
176 * src/Makefile.am: build static lib as well.
178 2010-03-04 Zoltan Varga <vargaz@gmail.com>
180 * configure.ac: Add a check for ISO varargs.
182 * test/test.c: Fix the build.
184 * src/glib.h src/goutput.c: Emit asserts through a g_assertion_message ()
185 function which is decorated with G_GNUC_NORETURN, to fix many warnings when using
188 Mon Mar 1 17:12:24 CET 2010 Paolo Molaro <lupus@ximian.com>
190 * src/unicode-data.h, src/gutf8.c: don't export private symbols.
192 2009-12-03 Zoltan Varga <vargaz@gmail.com>
194 * src/gmisc-unix.c (g_get_user_name): Avoid returning NULL if the env
197 2009-10-15 Andreia Gaita <avidigal@novell.com>
199 * src/gptrarray.c: implement g_ptr_array_remove_index_fast
200 * src/glib.h: fix g_ptr_array_remove_index_fast declaration
201 * test/ptrarray.c: new tests
203 2009-10-15 Andreia Gaita <avidigal@novell.com>
205 * src/garray.c: (g_array_remove_index_fast) only move 1 element
206 and not the whole shebang
208 2009-09-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
210 * test/queue.c: new tests.
211 * src/gqueue.c: fixed pop_head.
213 2009-09-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
215 * src/gqueue.c: add g_queue_push_tail.
217 2009-06-20 Zoltan Varga <vargaz@gmail.com>
219 * src/glib.h: Add GUINT32_FROM/TO_BE macros.
221 2009-06-09 Jonathan Chambers <joncham@gmail.com>
223 * CMakeLists.txt: Add start of CMake build.
224 * src/CMakeLists.txt: Add start of CMake build.
226 Contribution is licensed as MIT/X11.
228 2009-06-02 Bill Holmes <billholmes54@gmail.com>
230 * src/gpath.c (g_find_program_in_path): While searching on Windows
231 also try additional suffixes .exe, .cmd, .bat, and.com.
233 Contributed under MIT/X11 license.
235 2009-05-27 Geoff Norton <gnorton@novell.com>
237 * src/gfile-posix.c: Fix g_get_current_dir on amd64
239 2009-04-22 Jeffrey Stedfast <fejj@novell.com>
241 * src/gtimer-win32.c (g_timer_elapsed): Avoid re-querying freq by
242 just saving it in a static variable. Also modified microseconds
243 calculation to avoid overflow.
245 2009-04-05 Miguel de Icaza <miguel@novell.com>
247 * src/gpath.c: Avoid situations where we add the separator if one
248 of the elements is the separator.
250 2009-04-02 Miguel de Icaza <miguel@novell.com>
252 * src/gpath.c: If the first element is NULL, return an empty
255 2009-02-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
257 * src/gstr.c: use memset in g_strnfill.
259 2009-01-19 Bill Holmes <billholmes54@gmail.com>
261 * src/gstr.c (g_strnfill): Fixing a warning for MSVC.
263 Contributed under MIT/X11 license.
265 2009-02-05 Miguel de Icaza <miguel@novell.com>
267 * src/gstr.c: Add g_strnfill
269 * src/glib.h: Add g_list_previous
271 2009-01-19 Bill Holmes <billholmes54@gmail.com>
273 * gmisc-win32.c (g_path_is_absolute): Adding support for UNC
276 Contributed under MIT/X11 license.
278 2009-01-08 Bill Holmes <billholmes54@gmail.com>
280 * winconfig.h, src/gfile-posix.c :
281 Fixing the MSVC builds.
283 Contributed under MIT/X11 license.
285 2009-01-07 Miguel de Icaza <miguel@novell.com>
287 * src/gfile-posix.c: Move g_get_current_dir, as it is a
288 POSIX-esque feature, and some other systems do not have current
291 * src/glib.h (G_LOCK_DEFINE, G_LOCK_DEFINE_STATIC):
293 Embedded support from Paolo's work on quack.
295 * configure.ac: check for strtok_r, langinfo.h and iconv.h
297 * src/gpath.c (strtok_r): Add a strtok_r implementation if it is
298 not available on the target system.
300 2008-11-05 Bill Holmes <billholmes54@gmail.com>
302 * src/gutf8.c, src/unicode-data.h, src/gunicode.c :
303 Fixing the MSVC builds.
305 Contributed under MIT/X11 license.
307 2008-11-04 Atsushi Enomoto <atsushi@ximian.com>
309 * src/gutf8.c, src/gunicode.c, src/glib.h:
310 implemented g_unichar_type(), g_unichar_toupper(),
311 g_unichar_tolower(), g_unichar_totitle(), g_utf8_strup()
312 and g_utf8_strdown(). Fixed some surrogate pair bugs.
313 * TODO : removed implemented things.
314 * test/unicode.c, test/tests.h, test/utf8.c, test/Makefile.am:
317 2008-11-04 Atsushi Enomoto <atsushi@ximian.com>
319 * src/unicode-data.h : new header for some new unicode manipulation
322 2008-10-17 Miguel de Icaza <miguel@novell.com>
324 * Allow types to be defined on the eglib-config.h file, that could
325 be a platform specific generated type file.
327 * gtimer.c: split functionality in platforms.
329 2008-10-13 Bill Holmes <billholmes54@gmail.com>
331 * src/gdate-win32.c : Fix compiler errors for MSVC.
333 * src/gpath.c : Fix compiler errors for MSVC.
335 * src/gfile-posix.c : Adding declaration for mkstemp for the win 32
336 implementation in gfile-win32.c.
338 Contributed under MIT/X11 license.
340 2008-10-11 Miguel de Icaza <miguel@novell.com>
342 * gtimer.c: Same process.
344 * src/glib.h: Move g_strdup here, to consolidate all allocations
345 in this header, will help for merging the allocation work later.
347 * src/gpattern.c (compile_pattern): From Unity, use -1 in the enum
350 * src/gpath.c: Split this one as well.
352 * src/gmodule-win32.c, src/gmisc-unix.c, src/gmisc-win32.c,
353 src/gmodule-unix.c: split functionality in platforms.
355 * src/goutput.c (g_logv): On some platforms, before we abort we
356 want to flush the stdout/stderr.
358 2008-10-10 Miguel de Icaza <miguel@novell.com>
360 * Split functionality that is operating system specific into
361 -win32.c, -unix.c and -posix.c
363 * Use g_malloc everywhere, and g_free, so that these can be easily
364 overwritten consistently.
366 2008-09-16 Bill Holmes <billholmes54@gmail.com>
368 * src/gunicode.c : Fix a warning.
370 Contributed under MIT/X11 license.
372 2008-08-28 Bill Holmes <billholmes54@gmail.com>
374 * src/glib.h : Adding a c++ definition for G_BEGIN_DECLS.
376 Contributed under MIT/X11 license.
378 2008-08-27 Bill Holmes <billholmes54@gmail.com>
380 * glib.h, gunicode.c : Fixing some compiler errors.
382 Contributed under MIT/X11 license.
384 2008-08-20 Mike Voorhees <vernish13@gmail.com>
386 * Patch from Mike Voorhees to fix various problems with
387 g_utf8_validate compared to the glib implementation and unit tests
388 to ensure that there are no regressions.
390 From a mailing list post to mono-devel-list on August 19th, 2008
392 [Mono-dev] utf8 related patches. Please review.
394 2008-08-20 Mike Voorhees <vernish13@gmail.com>
396 * src/glib.h : Adding declarations for g_utf8_strlen, g_utf8_get_char,
397 and g_utf8_next_char.
399 * src/gunicode.c : Adding implementation for g_utf8_strlen, g_utf8_get_char,
400 and g_utf8_next_char.
402 * src/gunicode.c : Rewrote g_utf8_validate.
404 * test/utf8.c Adding tests for g_utf8_strlen, g_utf8_get_char,
405 g_utf8_next_char, and g_utf8_validate.
407 Contributed under MIT/X11 license.
409 2008-08-05 Andreas Faerber <andreas.faerber@web.de>
411 * autogen.sh: Suppress arguments warning for NOCONFIGURE.
413 Contributed under MIT/X11 license.
415 2008-08-04 Bill Holmes <billholmes54@gmail.com>
417 * test/tests.h, test/Makefile.am, test/memory.c : Adding memory tests to test
418 allocation routines return NULL when 0 size is passed in.
420 Contributed under MIT/X11 license.
422 2008-08-04 Bill Holmes <billholmes54@gmail.com>
424 * src/glib.h : Changing the allocation routines to return null if 0 size is
427 Contributed under MIT/X11 license.
429 2008-06-16 Zoltan Varga <vargaz@gmail.com>
431 * src/vasprintf.c (vasprintf): Applied patch from Michail Ushakov
432 <migelU@gmail.com>. Workaround broken vsnprintf on windows. Fixes
435 2008-06-11 Zoltan Varga <vargaz@gmail.com>
437 * src/goutput.c (g_log): Remove unnecessary and incorrect call to
438 g_strdup_printf (). Fixes #398918.
440 2008-05-01 Bill Holmes <billholmes54@gmail.com>
442 * src/glib.h : Adding declarations for g_ucs4_to_utf16 and g_utf16_to_ucs4.
444 * src/gutf8.c : Adding implementation for g_ucs4_to_utf16 and g_utf16_to_ucs4.
446 * test/utf8.c Adding tests for g_ucs4_to_utf16 and g_utf16_to_ucs4.
448 Contributed under MIT/X11 license.
450 2008-04-20 Geoff Norton <gnorton@novell.com>
452 * src/gspan.c: Fix the _NSGetEnviron define to prevent an impropoer
455 2008-03-19 Bill Holmes <billholmes54@gmail.com>
457 * src/gpath.c (g_path_is_absolute) : Adding a case for '/'
460 * src/gpath.c (g_get_user_name) : On Windows add a check for %USERNAME%
463 * src/gstr.c (g_strsplit, g_strsplit_set): Change to remove truncation
464 errors with MSVC build.
466 * src/gstr.c (g_filename_to_uri, g_filename_from_uri): Fixes to handle
469 * src/gstr.c (g_ascii_strncasecmp): Convert each character to lower case
472 * src/gunicode.c (g_get_charset): Implement for Windows.
474 Contributed under MIT/X11 license.
476 2008-03-12 Geoff Norton <gnorton@novell.com>
478 * src/gutf8.c: Implement g_ucs4_to_utf16 and g_utf16_to_ucs4 as
479 asserts. They're needed to build mono with eglib.
480 * src/gutil.h: Add a few missing function declarations to the header.
481 * src/gspawn.c: Some darwin implementations don't have crt_externs.h
482 So we'll just define _NSGetEnviron() ourselves.
483 * Makefile.am: Dont build test when cross compiling.
484 * configure.ac: Define CROSS_COMPILING when cross compiling.
485 Undefine _FORTIFY_SOURCE on arm-apple-darwin as the headers it
486 requires are not available.
488 2008-01-15 Andreas Faerber <andreas.faerber@web.de>
490 * configure.ac: Add default G_BREAKPOINT implementation.
491 Fix typo in breakpoint CPU output.
493 2007-12-23 Zoltan Varga <vargaz@gmail.com>
495 * src/glib.h: Include <limits.h>. Fixes #350482.
497 2007-11-21 Dick Porter <dick@ximian.com>
499 * src/gslist.c (g_slist_find_custom): Implement
501 * src/glist.c (g_list_find_custom): Implement
503 * test/list.c: Test g_list_find_custom()
505 * test/slist.c: Test g_slist_find_custom()
507 2007-11-20 Dick Porter <dick@ximian.com>
509 * src/gstr.c: Implement g_strsplit_set() and re-implement
510 g_strsplit() so it passes the additional tests. (g_strsplit()
511 should treat multi-char delimiters as just a single token, rather
512 than a set of delimiters.)
514 * src/gslist.c: Implement g_slist_index(), g_slist_nth() and
517 * test/string-util.c: Test g_strsplit_set() and more tests for
520 * test/slist.c: Test g_slist_nth() and
523 2007-11-06 Geoff Norton <gnorton@novell.com>
525 * configure.ac: Check for libiconv_open as the previous check was failing against
526 some versions of libiconv.
528 2007-11-06 Andreas Faerber <andreas.faerber@web.de>
530 * test/Makefile.am: Fix noinst_PROGRAMS for automake 1.6.3
531 Add support for VPATH
533 2007-11-06 Geoff Norton <gnorton@novell.com>
535 * configure.ac: Determing if glib-2.0 is installed and set HAVE_GLIB appropriately
536 * test/Makefile.am: Only build test-glib if glib-2.0 is available
538 2007-11-05 Geoff Norton <gnorton@novell.com>
540 * configure.ac: Check for getpwent_r and wether libiconv is needed to be linked.
541 Also look to see if we can use export-dynamic in the test suite.
542 * test/Makefile.am: Get LDFLAGS from configure instead of setting them.
543 * src/gerror.c: Implement g_clear_error.
544 * src/glib.h: Only use the format, ... convention is HAVE_C99_SUPPORT is available.
545 * src/gpath.c: Only use the getpwent_r codepath if getpwent_r is available.
546 * src/gspawn.c: Define environ to call _NSGetEnviron() on Apple.
547 * src/Makefile.am: Remove -Werror so we dont fail on different function declarations.
548 Portions of all of the above are from Andreas Faerber & Jonathan Chambers
550 2007-10-31 Jonathan Chambers <joncham@gmail.com>
552 * src/ghashtable.c: Add g_hash_table_foreach_steal.
553 * src/garray.c: Add g_array_remove_index_fast.
554 * src/gpath.c (g_path_is_absolute): Handle windows paths.
555 * src/glib.h: Add g_hash_table_foreach_steal and g_array_remove_index_fast
557 Contribution is licensed as MIT/X11.
559 2007-06-13 Jonathan Chambers <joncham@gmail.com>
561 * src/gunicode.c: Add g_unichar_isxdigit and g_unichar_xdigit_value.
562 * src/gmisc.c: Add g_win32_getlocale stub.
563 * src/glib.h: Add declarations of above functions,
564 GFreeFunc typedef, and CLAMP, GUINT_TO_LE, and threading
567 * test/string-util.c: Fix warning.
568 * test/utf8.c: Add test for g_unichar_xdigit_value.
570 Contribution is licensed as MIT/X11.
572 2007-05-05 Aaron Bockover <abockover@novell.com>
575 * src/glib.h: Added g_ascii_tolower implementation; make g_ascii_strdown
576 use it to do the transformation
578 * test/string-util.c: Added a test for g_ascii_strdown
580 2007-04-27 Jonathan Chambers <joncham@gmail.com>
582 * src/gstr.c: Fix off by one error in g_strdup allocation.
584 2007-04-27 Jonathan Chambers <joncham@gmail.com>
586 * src/eglib-config.hw: Forgot to add for msvc build.
587 * src/vasprintf: Forgot to add for msvc build.
589 2007-04-27 Jonathan Chambers <joncham@gmail.com>
591 * src/gstr.c: Fix off by one error for NULL terminator.
593 2007-04-27 Jonathan Chambers <joncham@gmail.com>
595 Combined patch from Michael Jerris <mike@jerris.com> and me.
596 * winconfig.h: Config file for msvc builds.
597 * configure.ac: Add AC_CHECK_HEADERS for getopt.h, sys/time.h,
598 sys/wait.h, and pwd.h.
600 * src/gspawn.c: Include config.h and use HAVE_* macros.
601 * src/eglib-config.h.in: Add inclusion guards.
602 * src/ghashtable.c: Fix warnings.
603 * src/gmisc.c: Windows implementation of g_getenv, g_setenv,
605 * src/gpath.c: Include config.h and use HAVE_* macros.
606 * src/gmarkup.c: Fix warnings.
607 * src/gptrarray.c: Fix warnings.
608 * src/gstr.c: Fix warnings and use HAVE_* macros.
609 * src/glib.h: Move macros to eglib-config.h and include it.
610 * src/gdate.c: Implement g_get_current_time on windows.
611 * src/gpattern.c: Fix warnings.
612 * src/gdir.c: Implement g_dir on windows.
613 * src/gfile.c: Implement mkstemp and g_file_test on windows.
614 * src/gtimer.c: Implement g_timer on windows.
615 * src/gmodule.c: Fix warnings.
616 * src/gunicode.c: Fix warnings.
617 * src/gutf8.c: Fix warnings.
619 * test/ptrarray.c: Fix warnings.
620 * test/string.c: Fix warnings.
621 * test/list.c: Fix warnings.
622 * test/pattern.c: Use HAVE_* macros.
623 * test/dir.c: Use HAVE_* macros.
624 * test/file.c: Use HAVE_* macros and use system specific files for tests.
625 * test/test.c: Fix warnings and use HAVE_* macros.
626 * test/timer.c: Use HAVE_* macros.
627 * test/string-util.c: Fix warnings.
628 * test/test.h: Supress warnings on msvc.
629 * test/module.c: Use HAVE_* macros.
630 * test/utf8.c: Fix warnings.
631 * test/spawn.c: Use HAVE_* macros.
632 * test/driver.c: Fix warnings and use HAVE_* macros.
633 * test/path.c: Use HAVE_* macros and use system specific files for tests.
634 * test/sizes.c: Fix warnings.
636 2007-04-24 Jonathan Chambers <joncham@gmail.com>
638 Patch from Michael Jerris <mike@jerris.com>
639 * src/gspawn.c: Start msvc build.
640 * src/gpath.c: Start msvc build.
641 * src/gmarkup.c: Start msvc build.
642 * src/gshell.c: Start msvc build.
643 * src/gstr.c: Start msvc build.
644 * src/glist.c: Start msvc build.
645 * src/glib.h: Start msvc build.
646 * src/gdate.c: Start msvc build.
647 * src/gpattern.c: Start msvc build.
648 * src/gdir.c: Start msvc build.
649 * src/gfile.c: Start msvc build.
650 * src/gtimer.c: Start msvc build.
651 * src/gmodule.c: Start msvc build.
652 * src/gunicode.c: Start msvc build.
654 2007-01-27 Robert Jordan <robertj@gmx.net>
656 * test/Makefile.am: Add linker option to be able to
657 load symbols from the main program.
658 * test/module.c: Clean-ups.
660 2007-01-26 Robert Jordan <robertj@gmx.net>
662 * configure.ac: Add PLATFORM_WIN32 conditional.
663 * src/Makefile.ac: Use PLATFORM_WIN32 conditional for psapi, iconv
664 * test/module.c, test/tests.h, test/Makefile.am: New test for gmodule.
665 * src/gmodule.h: Add G_MODULE_{IMPORT|EXPORT} defines.
666 * src/gmodule.c (g_module_symbol): Implement in-proc symbol lookup
668 * src/gmodule.c: Add GModule.main_module, consider it in
670 * src/gpath.c (g_get_home_dir): Add dummy Win32 implementation to
673 2006-11-03 Miguel de Icaza <miguel@novell.com>
675 * src/gpath.c (g_path_get_dirname): If the pathname starts with a
678 * test/string-util.c (test_strlcpy): Add new test.
680 * src/gunicode.c (g_filename_from_utf8): g_strlcpy needs the full
681 size, with the extra zero at the end; Fixes the stack trace
684 2006-10-30 Miguel de Icaza <miguel@novell.com>
686 * test/utf8.c (test_utf8_seq): Add new failing test.
688 2006-10-30 Atsushi Enomoto <atsushi@ximian.com>
690 * src/gutf8.c : several fixes:
691 - fixed incorrect mb_size clear and mb_remain computation.
692 - initialize items_written to 0 for error case.
693 - in utf8_to_utf16_len differentiate error messages completely.
694 - in g_utf8_to_utf16 use guchar instead of gchar.
695 * test/utf8.c : added test case string in test_utf8_seq() to
696 both test_utf8_to_utf16() and test_utf16_to_utf8().
698 2006-10-21 Miguel de Icaza <miguel@novell.com>
700 * src/gunicode.c (g_filename_from_utf8): Use g_strlcpy here.
702 * src/gmarkup.c (g_markup_parse_context_parse): Do not dereference
703 null values here. This gets things a little bit further in
704 corlib, but not too far.
706 * src/gdir.c (g_dir_read_name): Do not return . or ..
708 * src/gstr.c (g_ascii_xdigit_value): Make this into a function,
709 thanks to Paolo for pointing the problem with the double macro
712 * src/gmodule.c (g_module_open): Actually return NULL if we fail
713 to load the module (was hiding the real bug in the pinvoke tests).
715 (g_module_build_path): Do not prepend "lib" if the "lib" is part
718 * src/gstr.c (g_strsplit): this routine has some non-expected
719 behavior, if the string begins with the delimiter, it will return
720 an empty first string, unlike strtok
722 * src/gpath.c (g_path_get_dirname): Return "." as a dirname for
723 paths that do not contain a directory.
725 2006-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
727 * test/array.c: new test for insertion in the middle of other values.
728 * src/garray.c: fixed destination index.
730 2006-10-18 Miguel de Icaza <miguel@novell.com>
732 * src/gpath.c (g_build_path): Do not append terminator if the next
735 * src/gutf8.c (g_utf8_to_utf16): Include trailing zero as
737 (g_utf16_to_utf8): Include trailing zero as documented.
739 2006-10-17 Miguel de Icaza <miguel@novell.com>
741 * src/gstr.c (g_strdown): Actually move.
743 * src/gmarkup.c (g_markup_parse_context_parse): Accept dots in the
744 sequence, reset the state after a closing element.
746 * src/garray.c (g_array_insert_vals): Shift the elements the
749 (g_array_insert_vals): Should actually use the
750 number of elements to insert.
752 * test/array.c: Add new test case, this was happening in the JIT.
754 * Add _GNU_SOURCE at configure time, remove from sources.
756 * src/gstr.c (g_strsplit): Empty strings return a 0 value vector.
758 * src/glib.h (G_MAXINT64, G_MININT64): Add another set of macros
759 for the support stuff.
761 Move private prototypes elsewhere
763 * src/glib.h (g_thread_init): Adding missing brace
764 (g_list_next): remove ; from the macro definition.
766 2006-10-17 Miguel de Icaza <miguel@novell.com>
768 * src/gutf8.c: internal methods
770 * src/ghashtable.c: internal methods.
772 2006-10-16 Miguel de Icaza <miguel@novell.com>
774 * src/gerror.c (g_propagate_error): Implement.
776 * src/gstr.c (g_strjoinv, g_ascii_strncasecmp): implement.
778 * test/string-util.c (test_ascii_strncasecmp): test
780 2006-10-15 Miguel de Icaza <miguel@novell.com>
782 * configure.in: Fix detection of platforms the [3456] stuff does
783 not work inside autoconf.
785 * src/eglib-config.h.in: Make G_BREAKPOINT into a function-macro
787 * src/glib.h (offsetof): Mono sources depend on this, bring this
788 from the standard definition. Redefine G_STRUCT_OFFSET in terms
791 * src/glib.h (G_STRUCT_OFFSET): fix macro definition.
794 * src/sizes.c: Add test.
796 * src/gshell.c: Make it build
798 2006-10-14 Miguel de Icaza <miguel@novell.com>
800 * src/glib.h: add various _TO_LE and _FROM_LE macros.
802 * test/endian.c: tests for endian conversion macros.
804 2006-10-09 Miguel de Icaza <miguel@novell.com>
806 * src/gmodule.h: Move definitions of gmodule to gmodule.h because
807 Mono expects it there.
809 Mon Oct 9 12:59:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
811 * src/ghashtable.c: s/to_prime/g_spaced_primes_closest/g
812 and put the array in readonly memory.
813 * src/gstr.c: fixed the build and made array const.
814 * src/gmodule.c: fixed thinko.
816 2006-10-08 Miguel de Icaza <miguel@novell.com>
818 * src/gstr.c (g_strdup): should allow NULL as an argument.
820 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
822 * test/string-util.c:
825 * src/glib.h: implemented g_strescape.
827 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
829 * test/string-util.c:
833 * src/glib.h: implemented g_strlcpy.
835 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
837 * test/string-util.c:
840 * src/glib.h: implemented g_strdelimit.
842 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
844 * test/spawn.c: add search path flag when running ls.
845 * src/gspawn.c: g_spawn_command_line_sync searches the program in the
846 PATH if it's not an absolute path.
848 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
850 * test/string-util.c:
851 * src/glib.h: implement g_ascii_xdigit_value and tests.
853 2006-10-06 Miguel de Icaza <miguel@novell.com>
855 * src/gstr.c (g_ascii_strdown): Implement.
857 * str/glib.c (g_log_set_handler): empty.
859 (GMemVTable): define, empty, ignored.
862 * src/gunicode.c (g_convert): Add bytes_read, bytes_written
863 support; Small fixes to avoid valgrind errors.
865 (g_utf8_validate): Add, based on the libxml code.
867 gstr.c: implement g_strdown.
869 2006-10-05 Miguel de Icaza <miguel@novell.com>
871 * src/gunicode.c: Some work in progress to implement g_convert
872 (which is needed by g_locale_to_utf8).
874 2006-09-18 Miguel de Icaza <miguel@novell.com>
876 * test/string-util.c (test_filename_from_uri): tests for new
879 * src/gstr.c (g_filename_to_uri, g_filename_from_uri): implement.
881 2006-09-14 Atsushi Enomoto <atsushi@ximian.com>
883 * src/gutf8.c, test/utf8.c : EOL fix.
885 2006-09-04 Miguel de Icaza <miguel@novell.com>
887 * src/gmarkup.c: The leak fixing commit.
889 * src/gmarkup.c (g_markup_parse_context_end_parse): Add missing
891 (g_markup_parse_context_free): Implement.
892 (parse_attributes): Store the value, not the attribute name
894 Properly check the /> section.
895 (g_markup_parse_context_parse): When checking for error, use the
896 "error!=NULL && *error != NULL" upon return from callbacks,
897 it is only then that its valid to check for *error for error
899 (g_markup_parse_context_parse): Add comment processing.
901 Only release one element of the list.
903 * test/markup.c: Incorporate the kind of code that is used in Mono
904 for domain loading; Will test the rest later.
906 2006-09-01 Miguel de Icaza <miguel@novell.com>
908 * src/gmarkup.c (g_markup_parse_context_parse): Add text parsing
909 support, and end-element support; not tested yet.
911 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
913 * gutf8.c : bad allocation size. multiply sizeof gchar/gunichar2.
915 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
917 * gutf8.c : when error is null, utf8_to_utf16_len() and
918 utf16_to_utf8_len() could return -1, so return NULL for those
919 cases in g_utf8_to_utf16() and g_utf16_to_utf8().
921 2006-09-01 Miguel de Icaza <miguel@novell.com>
923 * src/gmarkup.c: Builds and does minimal parsing.
925 * test/markup.c: Sample test cases I have been using
927 2006-08-31 Atsushi Enomoto <atsushi@ximian.com>
930 src/gerror.c : added g_set_error().
932 g_utf8_to_utf16() and g_utf16_to_utf8() implementation.
933 * src/glib.h : added all above, and some dependent bits.
934 * src/Makefile.am : added gutf8.c.
935 * TODO: removed above.
937 test/tests.h : added utf8 tests.
938 * test/utf8.c : test for g_utf8_to_utf16 and g_utf16_to_utf8.
939 It still needs more tests e.g. for multibytes.
941 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
943 * src/gspawn.c: small touch-ups and make read/write EINTR-proof.
945 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
947 * test/file.c: remove useless test.
949 * test/spawn.c: new g_spawn_async_with_pipes test.
950 * src/glib.h: Modified file.
951 * src/gspawn.c: implemented g_spawn_async_with_pipes. Needs fine tuning.
953 2006-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
955 * TODO: Modified file.
963 * src/gfile.c: implemented g_dir_*, unix version.
965 2006-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
968 * test/Makefile.am: Modified file.
970 * src/Makefile.am: Modified file.
972 * src/gpattern.c: implemented the 3 pattern matching functions used.
974 * test/ptrarray.c: fix the compare function to work with qsort.
979 * src/gpath.c: made valgrind happy.
981 2006-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
985 * src/gfile.c: implemented g_file_test. Changed the default mask to
988 2006-08-26 Raja R Harinath <rharinath@novell.com>
990 * src/sort.frag.h (digit): Declare here based on externally
991 provided typedef 'list_node'.
992 (MAX_DIGITS): Use 'sizeof (list_node)'.
993 * src/gslist.c (list_node): Declare instead of 'digit'.
994 * src/glist.c: Likewise.
996 * test/slist.c (verify_sort): Verify the length of the list too.
997 (test_slist_sort): Free the correct list.
998 * test/list.c: Likewise.
999 * src/sort.frag.h (MAX_DIGITS): Rename from N_DIGITS.
1000 (combine_sort): Change 'max_pos' argument to more natural
1002 (increment): Likewise. Use 'n_digits' to avoid reading at an
1003 offset that hasn't been initialized.
1004 (do_sort): Remove memset.
1006 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1011 * src/gfile.c: implement g_file_open_tmp.
1013 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1017 * src/gdate.c: New file.
1018 * src/gfile.c: New file.
1019 * src/Makefile.am: implemented g_file_get_contents and
1023 * test/file.c: New file.
1024 * test/Makefile.am: tests for the above.
1026 2006-08-26 Raja R Harinath <rharinath@novell.com>
1028 * src/sort.frag.h: Add copyright notice and some explanation.
1029 (increment): Remove null check.
1030 (combine_digits): Add 'list' argument to seed the summation.
1031 (do_sort): Use the empty or singleton tail as the seed, rather
1032 than calling 'increment'.
1034 2006-08-25 Raja R Harinath <rharinath@novell.com>
1036 * TODO: Remove 'List' entries.
1037 * src/Makefile.am (libeglib_la_SOURCES): Add sort.frag.h.
1038 * src/sort.frag.h: New. Implements a "generic" bottom-up "counting"
1039 mergesort that works both on singly- and doubly-linked lists.
1040 * src/gslist.c (g_slist_sort): Use it.
1041 * src/glist.c (g_list_sort): Likewise.
1042 * src/glib.h (g_slist_sort, g_list_sort): Declare.
1043 * test/slist.c, test/list.c: Add basic testcases.
1045 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1047 * src/gspawn.c: propagate errors from reads.
1048 * src/gpath.c: an empty PATH is like a NULL one.
1050 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1058 * src/Makefile.am: implemented GTimer.
1060 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1067 * src/Makefile.am: initial implentation of g_spawn_command_line_sync.
1068 Still need better error handling, but works for the most part.
1070 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1072 * src/garray.c: grow faster so that the 'big' test does not crawl.
1074 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1077 * src/gqueue.c: plugged leaks.
1079 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1082 * src/gpath.c: when PATH is not defined, the current dir is used.
1085 2006-08-25 Alp Toker <alp@atoker.com>
1087 * src/gstr.c: g_strv_length() should return guint, not gint
1088 * src/glib.h: Add g_strv_length() prototype
1090 2006-08-24 Miguel de Icaza <miguel@novell.com>
1092 * src/gpath.c (g_get_home_dir, g_get_tmp_dir, g_get_user_name,
1093 g_get_prgname, g_set_prgname): implemented.
1097 * src/gpath.c (g_get_current_dir): Implement.
1099 (g_find_program_in_path, g_path_is_absolute): implement.
1101 Add g_path_get_dirname, g_path_get_basename
1103 * src/gpath.c: Path routines
1105 2006-08-23 Miguel de Icaza <miguel@novell.com>
1107 * src/gerror.c: Implement.
1109 * src/glist.c (g_list_sort): Remove routine instead of hoping that
1110 it wont crash when we run it.
1112 2006-08-23 Raja R Harinath <rharinath@novell.com>
1114 * src/glist.c (g_list_insert_before): Avoid non-head declaration.
1116 * test/slist.c (test_slist_insert_before): Add.
1117 * src/gslist.c (g_slist_insert_before): Append if 'sibling' is null.
1119 * test/list.c (test_list_insert_before): Add test for return value
1120 of g_list_insert_before.
1121 * test/Makefile.am (test_eglib_LDADD): Refer to the .la file so as
1122 to rebuild test if eglib changes.
1123 * src/glist.c (new_node, disconnect_node): New helpers that
1124 maintain doubly-linked list invariants.
1125 (g_list_prepend, g_list_append): Express in terms of new_node.
1126 (g_list_insert_before): Likewise. Fix return value when inserting
1127 in the middle of the list.
1128 (g_list_concat): Reorganize to make more compact.
1129 (g_list_nth): Likewise.
1130 (g_list_nth_data): Don't segfault if 'n' is too large.
1131 (g_list_remove): Rewrite using _find and disconnect_node.
1132 (g_list_remove_link): Don't traverse list: use disconnect_node.
1133 (g_list_insert_sorted): Rewrite to make more compact. Use new_node.
1134 (g_list_copy): Likewise.
1135 (_prepend, _concat): Remove.
1136 * src/gslist.c (insert_after, find_prev, find_prev_link):
1138 (g_slist_copy): Simplify slightly, using insert_after.
1139 (g_slist_concat): Reorganize to make more compact.
1140 (g_slist_find): Likewise.
1141 (g_slist_insert_sorted): Likewise.
1142 (g_slist_remove): Rewrite using find_prev.
1143 (g_slist_remove_link): Rewrite using find_prev_link.
1144 (g_slist_remove_all, g_slist_insert_before): New.
1146 2006-08-21 Duncan Mak <duncan@a-chinaman.com>
1148 * src/gqueue.c: GQueue implementation.
1149 * src/glib.h: Add prototypes.
1150 * src/Makefile.am (libeglib_la_SOURCES): Include gqueue.c.
1153 * test/Makefile.am (SOURCES):
1154 * test/tests.h (DEFINE_TEST_GROUP_INIT_H): add tests for GQueue.
1156 2006-08-21 Aaron Bockover <abockover@novell.com>
1158 * src/gstr.c: fixed bug/invalid read/write on malloc-only case (no
1159 realloc/delimiter token not found); use memcpy instead of strncpy for
1162 * test/test.c (run_group): allow running specific tests under a group;
1163 added copied g_strsplit/g_strfreev from EGlib source as eg_strsplit
1164 and eg_strfreev to avoid performance skews in the driver
1166 * test/driver.c: allow user-specified group name to contain specific
1167 test to run under the group as 'group_name:test1,test2,...testN'
1169 * test/string-util.c: Added more g_strsplit tests
1177 * test/hashtable.c: make test names shorter (no need to prefix with
1178 the group since it runs under the group)
1180 2006-08-21 Miguel de Icaza <miguel@novell.com>
1182 * src/glib.h (g_hash_table_new_full): Add missing prototype.
1183 Replace g_free(x) with plain free, so it can be used as a function
1187 * src/ghashtable.c: Add rehashing.
1189 * test/hashtable.c: Add a bunch of extra tests.
1191 * src/goutput.c: Fix g_log so it actually formats the data.
1193 * src/ghashtable.c (g_hash_table_new): The glib test suite
1194 uncovered a bunch of bugs, the g_hash_table_new should actually
1197 (g_hash_table_remove, g_hash_table_foreach_remove): Fixed bugs
1200 2006-08-20 Aaron Bockover <abockover@novell.com>
1202 * src/gmisc.c: added g_setenv, g_getenv, g_unsetenv
1204 * src/gstr.c: added g_snprintf, g_sprintf, g_fprintf, g_printf
1206 * src/glib.h: added macros for above va_args printf functions
1208 * src/Makefile.am: added gmisc.c
1210 * test/whats-implemented: script to see what needs to be implemented
1212 2006-08-20 Chris Toshok <toshok@ximian.com>
1214 * test/array.c (test_array_big): add a test from the glib
1217 2006-08-20 Chris Toshok <toshok@ximian.com>
1219 * test/tests.h: add array tests to the mix.
1221 * test/array.c: a few array tests.
1223 * src/glib.h: add array prototypes.
1225 * src/garray.c: initial array foo.
1227 * test/Makefile.am (SOURCES): add array.c
1229 * src/Makefile.am (libeglib_la_SOURCES): add garray.c
1231 2006-08-19 Aaron Bockover <abockover@novell.com>
1233 * src/gstring.c: optimize and generalize reallocation by providing
1234 a GROW_IF_NECESSARY macro, do not use strcpy/strcat as they are
1235 very, very slow; GString is now much closer to GLib's implementation
1236 in terms of performance
1238 * test/string.c: added speed-specific tests to beat on reallocation code
1240 * test/test-both: run make if the test drivers don't exist
1242 2006-08-19 Jonathan Chambers <jonathan.chambers@gmail.com>
1244 * src/gmodule.c: Add gmodule support for windows and fix
1245 windows build. Contribution is licensed as MIT/X11.
1247 2006-08-19 Aaron Bockover <abockover@novell.com>
1249 * test/driver.c: Added --debug mode that allows for testing all paths
1250 of the driver without actually running real tests; runs only the 'fake'
1251 test, which does nothing; useful for running the driver through valgrind
1255 * test/fake.c: Added fake test for valgrinding the driver
1257 * test/ptrarray.c: update sort test
1259 2006-08-19 Aaron Bockover <abockover@novell.com>
1261 * test/test-both: added --help
1263 2006-08-19 Aaron Bockover <abockover@novell.com>
1265 * test/driver.c: added -n mode to show only raw global run times,
1266 which is useful for scripts (test-both --speed-compare)
1268 * test/test-both: added --speed-compare mode
1270 * test/README: updated with information on --speed-compare
1272 2006-08-19 Aaron Bockover <abockover@novell.com>
1274 * test/test.c: do not print times if -t is not passed
1276 * test/driver.c: removed use of GList from the driver to avoid skews due
1277 to performance differences between GLib and EGLib
1279 2006-08-19 Aaron Bockover <abockover@novell.com>
1281 * test/test.c: Perform iterations at the test level, only output one
1282 report for all iterations of tests in a group to produce more usable
1283 output; add timing for the tests and group; added get_timestamp for
1286 * test/test.h: Removed run_test as it should only be called from
1287 run_group, added get_timestamp
1289 * test/Makefile.am: Added -DDRIVER_NAME
1291 * test/test-both: simple script to run both drivers with the same options
1293 * test/driver.c: Iterations are now run at the test level, show a global
1294 status (OK/FAIL) indicator
1296 * test/README: Updated
1298 * configure.ac: Renamed from configure.in as configure.in naming
1299 convention is deprecated in favor of configure.ac
1301 * autogen.sh: s/configure.in/configure.ac/
1303 2006-08-19 Miguel de Icaza <miguel@novell.com>
1305 * Makefile.am: Removed MAINTAINERCLEANFILES that was too
1306 aggresive, it failed make distcheck and the resulting tarball was
1309 * src/glib.h: remove the various GPOINTER_TO_*, G*_TO_POINTER,
1310 GSIZE_FORMAT macros, and move them into src/eglib-config.h
1312 Moved also gssize and gsize to be arch specific. This should fix
1313 the 32/64 problems that Jon Chambers reported.
1315 * configure.in: test for pointer size, define the various values
1316 depending on 32 vs 32/64 worlds, might need further porting in the
1319 Change package name to eglib
1321 * test/slist.c, test/list.c, test/hashtable.c: Update tests to use
1324 * test/string-util.c: fix leak for valgrind tests.
1326 * test/tests.h: New size test, for testing datatypes.
1328 * test/sizes.c: New tests.
1330 2006-08-19 Aaron Bockover <abockover@novell.com>
1332 * test/README: Added quick guide on adding new tests/groups to the
1333 driver and some examples on how to perform various tests with the driver
1335 2006-08-18 Aaron Bockover <abockover@novell.com>
1337 * test/driver.c: Added getopt support and code timing, among other
1338 nice features to make testing/profiling easier
1340 * test/test.c: Add support for suppressing output (quiet) and
1341 define RESULT, FAILED, and OK
1344 * src/glist.c: Added g_list_nth_data implementation
1347 * test/string-util.c:
1351 * test/list.c: Use RESULT, FAILURE, and OK for tests
1353 2006-08-18 Miguel de Icaza <miguel@novell.com>
1355 * src/gstring.c (g_string_truncate): Implement truncate.
1356 (g_string_prepend): implement.
1358 Fix various bugs uncovered by new tests.
1360 * src/glib.h: introduce gssize type, the signed one. Important.
1362 * src/eglib-config.h (G_OS_): Add the G_OS_UNIX and G_OS_WIN32
1363 defines that we can use to check on the host OS.
1365 2006-08-18 Aaron Bockover <abockover@novell.com>
1368 * test/driver.c: Support pass/fail logging on tests to show group report
1370 2006-08-18 Aaron Bockover <abockover@novell.com>
1373 * test/test.h: Added result() to be used in place of g_strdup_printf(),
1374 it's shorter to write and allows the duped string to be freed safely;
1375 added license header to file
1377 * test/driver.c: Added license header to file
1379 * test/string-util.c:
1382 * test/list.c: Use result() in place of g_strdup_printf(), it's nicer
1384 2006-08-18 Aaron Bockover <abockover@novell.com>
1386 * src/gptrarray.c: Implemented g_ptr_array_sort
1388 * test/ptrarray.c: Added sort test
1390 * test/driver.c: Added --help; support running N iterations and allow
1391 selecting which test groups to run; uses the test group table in tests.h
1393 * test/tests.h: Added group table
1396 * test/test.c: Using a Group structure and table, removed run_groups
1397 as we only need run_group now
1399 * test/slist.h: Removed, not needed, tests/groups defined in tests.h
1401 2006-08-18 Miguel de Icaza <miguel@novell.com>
1403 * src/unicode.c: New file, to host unicode code, it will throw as
1404 this code is no longer used in the Mono runtime anyways.
1406 * src/glib.h: Use stdint.h types, a lot of the good stuff is
1409 2006-08-18 Duncan Mak <duncan@a-chinaman.com>
1411 * src/glist.c (g_list_remove, g_list_remove_link): Implemented.
1413 * src/gslist.c (g_slist_remove): Remember to set the next pointer
1414 to NULL when the item to remove is the first item in the list.
1416 2006-08-18 Duncan Mak <duncan@a-chinaman.com>
1418 * src/glist.c: Implemented. Missing remove,
1419 remove_link and insert_before.
1421 * test/list.c: Tests for GList.
1423 2006-08-17 Aaron Bockover <abockover@novell.com>
1425 * src/gptrarray.c: Implemented g_ptr_array_remove and
1426 g_ptr_array_remove_index
1428 * test/other: Removed, rewritten in Makefile.am
1430 * test/Makefile.am: Build test-eglib against local eglib and
1431 test-glib against GLib 2.0 (replaces 'other')
1433 * test/ptrarray.c: Added tests for g_ptr_array_remove and
1434 g_ptr_array_remove_index
1436 2006-08-17 Duncan Mak <duncan@a-chinaman.com>
1438 * src/gslist.c: Added MIT license.
1439 (g_slist_insert_sorted): Forgot the case where the data is
1440 appended to the end of the list.
1442 * test/slist.c (test_slist_insert_sorted): Fix the test.
1444 2006-08-17 Aaron Bockover <abockover@novell.com>
1446 * src/gptrarray.c: Added g_ptr_array_set_size implementation
1448 * test/ptrarray.c: Added test for g_ptr_array_set_size
1450 2006-08-17 Miguel de Icaza <miguel@novell.com>
1452 * src/glib.h: A handful of extra macros
1454 * configure.in, src/eglib-config.h.in: Set some system-specific
1455 settings that are probed at configure time.
1457 2006-08-17 Aaron Bockover <abockover@novell.com>
1459 * src/gptrarray.c: Added beginnings of GPtrArray (alloc, free, add, iterate)
1461 * src/glib.h: Added GPtrArray signatures
1463 * src/Makefile.am: Added gptrarray.c to build
1468 * test/Makefile.am: Add ptrarray tests for available functionality
1470 2006-08-17 Aaron Bockover <abockover@novell.com>
1473 * test/test.c: Added group iterator/test driver functionality
1475 * test/driver.c: Added groups to run using new test functionality
1479 * test/string-util.h: Test group definitions for string util/hashtable
1483 * test/hash.c: Added test definition table
1485 * test/Makefile.am: Added -Wall -Werror -D_FORTIFY_SOURCE=2
1487 * src/gstr.c: Added implementation for g_str_has_prefix, g_str_has_suffix
1489 * src/glib.h: Added missing function signatures
1491 * src/Makefile.am: added -D_FORTIFY_SOURCE=2
1493 2006-08-17 Duncan Mak <duncan@a-chinaman.com>
1495 * src/gslist.c (g_slist_remove_link): I misread the function
1496 signature. Re-implemented.
1497 (g_slist_delete_link): Implemented.
1498 (g_slist_reverse): Implemented.
1499 (g_slist_insert_sorted): Implemented.
1501 2006-08-17 Duncan Mak <duncan@a-chinaman.com>
1503 * src/gslist.c (g_slist_find):
1506 (g_slist_remove_link): Implemented.
1508 * test/slist.c: Tests for GSList.
1510 2006-08-17 Raja R Harinath <harinath@gmail.com>
1512 * src/gslist.c (g_slist_free_1): New. Free a single list node.
1513 (g_slist_free): Use it to free the list nodes. Don't free the
1514 data, since the list doesn't own it.
1515 (g_slist_append): Convert into a one-liner.
1516 (g_slist_foreach): Remove redundant null check.
1517 (g_slist_last): Actually return the last node.
1518 (g_slist_copy): Simplify.
1519 * src/gslist.h (g_slist_free_1): Add.
1521 2006-08-16 Duncan Mak <duncan@a-chinaman.com>
1525 * src/gslist.h: First attempt at implementing GSList, incomplete.
1527 * src/Makefile.am (libeglib_la_SOURCES): add gslist.c
1528 * src/glib.h: Add GFunc definition. #include the new gslist.h.
1530 2006-08-16 Miguel de Icaza <miguel@novell.com>
1532 * src/Makefile.am: Added -Wall,-Werror, corrected lots of
1535 * src/gstring.c: Gstring implementation.
1537 * test/str.c (test_gstring): string tests.
1539 2006-08-16 Aaron Bockover <abockover@novell.com>
1541 * src/gstr.c: Added g_strsplit implementation
1543 * test/driver.c: Run the split test
1545 * test/str.c: Added a test for g_strsplit
1549 * test/Makefile.am: Added MAINTAINERCLEANFILES
1551 2006-08-16 Miguel de Icaza <miguel@novell.com>
1553 * src/gouput.c: Implement some output routines, update missing
1556 * test: Add test driver, and initial tests.
1558 2006-08-15 Miguel de Icaza <miguel@novell.com>
1560 * src/ghashtable.c: Implement most of this, it is completely
1561 untested at this point.