Use pthread_attr_init() as a test function, since most of the rest of

Tue May 19 23:41:04 1998  Owen Taylor  <otaylor@gtk.org>

	* configure.in: Use pthread_attr_init() as a test function,
	since most of the rest of -lpthread is macros on DU4.

Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
(Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)

	* gutils.c: Restored a missing prototype for g_vsprintf.
This commit is contained in:
Owen Taylor 1998-05-20 03:41:28 +00:00 committed by Owen Taylor
parent 2abec112dc
commit aed9cf77fa
10 changed files with 42 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -1,3 +1,8 @@
Tue May 19 23:41:04 1998 Owen Taylor <otaylor@gtk.org>
* 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 <lupus@debian.org>
* gtk/gtkcombo.c: implemented completion in the entry.

View File

@ -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")

View File

@ -1,3 +1,8 @@
Mon May 18 22:14:39 1998 Owen Taylor <otaylor@gtk.org>
(Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)
* gutils.c: Restored a missing prototype for g_vsprintf.
Wed May 20 05:02:26 1998 Tim Janik <timj@gtk.org>
* glib.h: conditionally define NULL, FALSE and TRUE.

View File

@ -24,6 +24,7 @@
#include <ctype.h> /* For tolower() */
#include "glib.h"
extern char* g_vsprintf (const gchar *fmt, va_list *args, va_list *args2);
gchar*
g_strdup (const gchar *str)