diff --git a/ChangeLog b/ChangeLog index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 50dfcb49f3..ed530803fe 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Tue May 19 23:41:04 1998 Owen Taylor + + * configure.in: Use pthread_attr_init() as a test function, + since most of the rest of -lpthread is macros on DU4. + Tue, 19 May 1998 09:03:03 +0200 Paolo Molaro * gtk/gtkcombo.c: implemented completion in the entry. diff --git a/configure.in b/configure.in index 74f23e4f61..be02f4e1f0 100644 --- a/configure.in +++ b/configure.in @@ -187,7 +187,7 @@ fi # Threads if test "x$with_threads" = "xposix" || test "x$with_threads" = "xyes"; then - AC_CHECK_LIB(pthread, pthread_create, + AC_CHECK_LIB(pthread, pthread_attr_init, AC_DEFINE(USE_PTHREADS) x_libs="$x_libs -lpthread" CFLAGS="$CFLAGS -D_REENTRANT") diff --git a/glib/ChangeLog b/glib/ChangeLog index 8ea2a218e9..247319f3e9 100644 --- a/glib/ChangeLog +++ b/glib/ChangeLog @@ -1,3 +1,8 @@ +Mon May 18 22:14:39 1998 Owen Taylor +(Yasuhiro SHIRASAKI : gtk-joke-980517-0.patch) + + * gutils.c: Restored a missing prototype for g_vsprintf. + Wed May 20 05:02:26 1998 Tim Janik * glib.h: conditionally define NULL, FALSE and TRUE. diff --git a/glib/gutils.c b/glib/gutils.c index ef51134828..c97f408bf4 100644 --- a/glib/gutils.c +++ b/glib/gutils.c @@ -24,6 +24,7 @@ #include /* For tolower() */ #include "glib.h" +extern char* g_vsprintf (const gchar *fmt, va_list *args, va_list *args2); gchar* g_strdup (const gchar *str)