X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog.pre-2-0;h=00b2e0331c524b5db174c80c8b80757eb9653747;hb=b3ee868f9443d4de4b26d159e49fbd2c512ee1e8;hp=3bff784cb18f3b44274e22f03919b2bf9ec46698;hpb=e2600b0476761b7d87bf5dd7d328edb094059a0e;p=platform%2Fupstream%2Fglib.git diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 3bff784..00b2e03 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,111 @@ +2000-09-29 Jonathan Blandford + + * gnode.c (g_node_insert_after): Added function to keep symetry + with g_node_insert_before. + +2000-09-30 Martin Baulig + + * configure.in (HAVE_THREADS): New automake conditional. + * Makefile.am (SUBDIRS): Only compile the gthread subdirectory if we + actually have threads. + +2000-09-29 Martin Baulig + + * Makefile.am (pkgconfigdir): Set this to `$(libexecdir)/pkgconfig'; + this is the directory where pkg-config actually looks. + + * *.pc.in: Made the pkg-config scripts actually work. + +2000-09-29 Martin Baulig + + Several minor ANSI C fixes. + + Added missing casts: + * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'. + * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'. + (g_idle_add_full): `(gpointer) function' in call to g_source_add(). + * gstrfuncs.c (g_strdown): `s = (guchar *) string' and + `return (gchar *) string'. + (g_strup): Likewise. + (g_strchug): `start = (guchar*) string' in 1st for() argument; + `strlen ((gchar *) start)' in call to g_memmove(). + * gstring.c (g_string_down): `s = (guchar *) string->str'. + (g_string_up): Likewise. + * gthreadpool.c (stop_this_thread_marker): + `(gpointer) &g_thread_pool_new'. + * gunidecomp.h (decomp_table[]): Cast all the strings to + `unsigned char *'. + + Put text following #endif into comments: + * gmain.c: here. + +2000-09-29 Sebastian Wilhelmi + + * configure.in, glib.h: Added errorcheck mutexes. These are + activated through the preprocessor symbol + G_ERRORCHECK_MUTEXES. Need to add an extra word to StaticMutex in + order to achieve this. g_(static_)mutex_* functions instrument the + mutex operations with mutex name and location, when compiled with + -DG_ERRORCHECK_MUTEXES. g_thread_init activates the errorcheck + mutexes, when compiled with -DG_ERRORCHECK_MUTEXES. + +2000-09-28 Havoc Pennington + + * glib.h (GThreadPriority): fix indentation + (GConvertError): generic error is conventionally called + _FAILED rather than _OTHER, at least at the moment, + according to GError docs in docs/reference. + + * gconvert.c: s/_OTHER/_FAILED/ + +2000-09-28 Sebastian Wilhelmi + + * configure.in: Adjusted the test for an unimplemented + getpwuid_r. Info from Michael Pruett. This is just a forward + merge from glib-1-2. + + * configure.in: Moved determination of G_THREAD_FLAGS before + G_THREAD_LIBS. Check for UnixWare systems and set the right cflags + and libs there (it needs -Kthread for the native compiler and + -pthread for gcc). Thanks to Boyd Lynn Gerber + for the info. + + * configure.in: Fail immediately, when no thread library is found, + instead of continuing searching for rt libs etc. Changed almost + all occurances of $enable_threads to $have_threads, as that's, + what we want. + + * tests/threadpool-test.c: Define vars inside the guard to avoid + warnings. + + * configure.in, tests/type-test.c: Some platforms support 64 bit + 'long long', but you can not printf or scanf them. In that case, + don't define G_G{UINT|INT}64_FORMAT. Changed the type-test program + to reflect that. + + * gutils.c (g_get_current_dir): max_len can't be initialized + statically as it might call a function. So do it at first call. + +Tue Sep 26 2000 Elliot Lee + * glib.h: Add G_GNUC_PURE macro (but don't use it anywhere). + +Mon Sep 25 2000 Elliot Lee + * garray.c, glib.h, gmem.c: Add a few missing G_GNUC_CONST's. + +2000-09-21 Tor Lillqvist + + * makefile.mingw.in: Add gconvert.o. Use libiconv. + + * config.h.win32.in: Define HAVE_GETCWD. + + * glib.def: Add new entry points. + +2000-09-21 Sebastian Wilhelmi + + * configure.in: The last released automake (1.4) still requires + AM_PROG_LIBTOOL instead of AC_PROG_LIBTOOL, so use that for the + time being. + 2000-09-19 Sebastian Wilhelmi * acconfig.h, configure.in, gutils.c: Test for the existence of