X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-0;h=ed2ae30e26d4d3b1c8b432c1896e4703117432d5;hb=ef8daf92979a4825d4fea4bf2241ba1278d460a5;hp=28e908dbd82e911b3f612abf65d485288081f30e;hpb=4d8aba89471f091dc2cfccb18e2bb4933ccc2cd8;p=platform%2Fupstream%2Fglib.git diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 28e908d..ed2ae30 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,155 @@ +Thu Jun 14 14:09:46 2001 Owen Taylor + + * gstrfuncs.c (g_strconcat): Fix a use of strcat that + wasn't replaced with g_stpcpy in the original + stpcpy-for-efficiency patch. + +2001-06-11 Havoc Pennington + + * NEWS: updated + + * configure.in (GLIB_MICRO_VERSION): increment version to 1.3.6 + +2001-06-08 Alex Larsson + + * gstrfuncs.[ch]: + Added new functions g_strstr_len, g_strrstr and g_strrstr_len + + * tests/strfunc-test.c: + Add some tests for the new functions. + + * gunicode.h: + * gutf8.c: + Add length argument to g_utf8_strchr and g_utf8_strrchr. + +2001-06-08 Havoc Pennington + + * gspawn.c: support G_SPAWN_FILE_AND_ARGV_ZERO specifying that + the vector passed in to g_spawn_* contains a filename to + execute in argv[0] then the actual argv begins at argv + 1. + Kind of a lame hack, but this isn't something you commonly want + to do, and avoids adding more function arguments. + +2001-06-08 Pablo Saratxaga + + * configure.in: Added Azeri (az) to ALL_LINGUAS + +2001-06-08 Sebastian Wilhelmi + + * docs/Makefile.am, configure.in: Remove docs/glib-config.1.in. + + * gthread-2.0-uninstalled.pc.in (Cflags): Add @G_THREAD_CFLAGS@. + +2001-06-07 Havoc Pennington + + * m4macros/glib-2.0.m4: subst GLIB_GENMARSHAL, GOBJECT_QUERY, + GLIB_MKENUMS variables + + * gmodule-2.0.pc.in: add gmodule_supported variable + + * glib-2.0.pc.in: add glib_genmarshal, gobject_query, + glib_mkenums variables + + * configure.in: put G_MODULE_SUPPORTED value into + .pc files + + * autogen.sh: support AUTOGEN_SUBDIR_MODE + + * Makefile.am: add -uninstalled.pc.in to EXTRA_DIST + +2001-06-07 Sebastian Wilhelmi + + * configure.in: Look for nanosleep function. + + * gtimer.c: Use nanosleep for g_usleep, when found. + + * gtimer.c, gtimer.h: Add g_time_val_add function. Closes #54271. + + * gasyncqueue.c: Documentation updates. + + * gthreadpool.c: Use g_time_val_add now that we have it. + +2001-06-01 Jon Trowbridge + + * gdate.c (g_date_update_julian): Changed to take a const + argument, and then to cast out const. + (g_date_update_dmy): Changed to take a const argument, and then + cast out const. + (g_date_get_weekday): Changed argument to be const. + (g_date_get_month): Changed argument to be const. + (g_date_get_year): Changed argument to be const. + (g_date_get_day): Changed argument to be const. + (g_date_get_julian): Changed argument to be const. + (g_date_get_day_of_year): Changed argument to be const. + (g_date_get_monday_week_of_year): Changed argument to be const. + (g_date_get_sunday_week_of_year): Changed argument to be const. + (g_date_compare): Changed arguments to be const. + (g_date_to_struct_tm): Changed GDate argument to be const. + (g_date_strftime): Changed GDate argument to be const. + (g_date_clamp): Added. The equivalent of the CLAMP macro for + GDates. + (g_date_order): Added. Ensure that the first GDate argument + preceeds the second, swapping them if necessary. + (g_date_days_between): Added. Computes the (signed) number of days + between two dates. + +Mon Jun 4 16:02:57 2001 Owen Taylor + + * gstrfuncs.c (g_strup/strdown): to match g_strcasecmp, + check if it is lower/upper before converting to upper/lower + [ not required by ISO... ] (#55682, Jon Trowbridge) + +Mon Jun 4 15:59:15 2001 Owen Taylor + + * gunicode.h: Make a bit more standalone by adding include + of gerror.h. #54543. + + * gunicode.h: Change size_t to g_size. (Ugh) + +2001-05-31 Sebastian Wilhelmi + + * grand.h (g_random_boolean, g_rand_boolean): Fix to stupid bug in + g_random_boolean, also both functions now return 1 or 0 instead of + 1<<15 or 0. + + * tests/rand-test.c: Extended testcases. + + * configure.in: Remove G_HAVE_ISO_CXX_VARARGS and + G_HAVE_ISO_C_VARARGS and define G_HAVE_ISO_VARARGS directly + guarded by #if(n)def __cplusplus. + +2001-05-30 Sebastian Wilhelmi + + * gthread-2.0.pc.in: Add @G_THREAD_CFLAGS@ to Cflags. + +Tue May 29 18:17:11 2001 Owen Taylor + + * autogen.sh (have_libtool): Fix GNU sedism + +2001-05-29 Sebastian Wilhelmi + + * tests/Makefile.am, tests/qsort-test.c: Add test case for the + g_qsort_with_data func. It works. This fixes bug #52605. + + * tests/Makefile.am, tests/cxx-test.C: Now that we check for a C++ + compiler in configure.in anyway, I added a test, that the GLib + headers can be inclued into a C++ program. This fixes bug #52605. + + * configure.in: Don't bail out, if no C++ compiler is + found. Define G_HAVE_ISO_VARARGS only if appropriate. + + * gmessages.h: Thus we can revert the previous patch. + +2001-05-29 James Henstridge + + * gmessages.h: "#ifdef G_HAVE_ISO_VARARGS" will always succeed + even when we don't have ISO vararg support. Changed to + "#if G_HAVE_ISO_VARARGS". + +Mon May 28 11:40:34 2001 Owen Taylor + + * configure.in: Check for __VARARGS__ separately for C and C++. + 2001-05-28 Sebastian Wilhelmi * configure.in: Fix typo.