-DG_LOG_DOMAIN="GThread", we don't need an extern variable for that
authorTim Janik <timj@gtk.org>
Thu, 17 Dec 1998 02:42:57 +0000 (02:42 +0000)
committerTim Janik <timj@src.gnome.org>
Thu, 17 Dec 1998 02:42:57 +0000 (02:42 +0000)
Thu Dec 17 03:38:57 1998  Tim Janik  <timj@gtk.org>

        * Makefile.am: -DG_LOG_DOMAIN="GThread", we don't need an extern
        variable for that (noticed by Joel Becker <jlbec@ocala.cs.miami.edu>)

gthread/ChangeLog
gthread/Makefile.am
gthread/gthread.c

index 04b0ecd2dab37a10ed3d68d7e3dceea3374169c2..77e9b3c0846d8f46ca73e76e892cd4c5ff5e1552 100644 (file)
@@ -1,3 +1,8 @@
+Thu Dec 17 03:38:57 1998  Tim Janik  <timj@gtk.org>
+
+       * Makefile.am: -DG_LOG_DOMAIN="GThread", we don't need an extern
+       variable for that (noticed by Joel Becker <jlbec@ocala.cs.miami.edu>)
+
 Wed Dec 16 03:16:16 1998  Tim Janik  <timj@gtk.org>
 
        * testgthread.c: s/g_thread_supported/g_thread_supported ()/
index 72242b699afc4204e364bb1e718fdf25a80af8aa..7e577f20b3e336eff5985404f91b5ba1b8d7f33d 100644 (file)
@@ -1,6 +1,6 @@
 ## Process this file with automake to produce Makefile.in
 
-INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gthread -DG_LOG_DOMAIN=g_log_domain_gthread
+INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gthread -DG_LOG_DOMAIN=\"GThread\"
 
 EXTRA_DIST =                           \
                gthread-posix.c         \
index bca35ac28867584b609cb7e05f5cd52af1a4b7b7..3a5a6220a4875c23d4ce5c429021f79b4a60c91a 100644 (file)
@@ -30,7 +30,6 @@
 
 #include <glib.h>
 
-static const char *g_log_domain_gthread = "GThread";
 static gboolean thread_system_already_initialized = FALSE;
 
 #include G_THREAD_SOURCE