mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
Set G_LOG_DOMAIN to \"GModule\" instead of g_log_domain_gmodule.
2001-03-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * Makefile.am, makefile.mingw.in, makefile.msc.in: Set G_LOG_DOMAIN to \"GModule\" instead of g_log_domain_gmodule. * gmodule.def, gmodule.h, gmodule.c: Removed g_log_domain_gmodule. * docs/reference/glib/glib-sections.txt, docs/reference/glib/tmpl/messages.sgml: Removed g_log_domain_gmodule.
This commit is contained in:
parent
1d3de4d2d0
commit
66107ac7e1
@ -1,3 +1,8 @@
|
|||||||
|
2001-03-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
|
* glib/glib-sections.txt, glib/tmpl/messages.sgml: Removed
|
||||||
|
g_log_domain_gmodule.
|
||||||
|
|
||||||
2001-02-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
2001-02-23 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
* glib/tmpl/threads.sgml: Big update. Almost ready.
|
* glib/tmpl/threads.sgml: Big update. Almost ready.
|
||||||
|
@ -693,7 +693,6 @@ G_BREAKPOINT
|
|||||||
<FILE>messages</FILE>
|
<FILE>messages</FILE>
|
||||||
G_LOG_DOMAIN
|
G_LOG_DOMAIN
|
||||||
g_log_domain_glib
|
g_log_domain_glib
|
||||||
g_log_domain_gmodule
|
|
||||||
G_LOG_FATAL_MASK
|
G_LOG_FATAL_MASK
|
||||||
G_LOG_LEVEL_USER_SHIFT
|
G_LOG_LEVEL_USER_SHIFT
|
||||||
GLogFunc
|
GLogFunc
|
||||||
|
@ -44,12 +44,6 @@ INCLUDES = \
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### VARIABLE g_log_domain_gmodule ##### -->
|
|
||||||
<para>
|
|
||||||
|
|
||||||
</para>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- ##### MACRO G_LOG_FATAL_MASK ##### -->
|
<!-- ##### MACRO G_LOG_FATAL_MASK ##### -->
|
||||||
<para>
|
<para>
|
||||||
GLib log levels that are considered fatal by default.
|
GLib log levels that are considered fatal by default.
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
2001-03-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||||
|
|
||||||
|
* Makefile.am, makefile.mingw.in, makefile.msc.in: Set
|
||||||
|
G_LOG_DOMAIN to \"GModule\" instead of g_log_domain_gmodule.
|
||||||
|
|
||||||
|
* gmodule.def, gmodule.h, gmodule.c: Removed g_log_domain_gmodule.
|
||||||
|
|
||||||
2001-02-17 Havoc Pennington <hp@pobox.com>
|
2001-02-17 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
Applied patch from Soeren Sandmann:
|
Applied patch from Soeren Sandmann:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gmodule \
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gmodule \
|
||||||
-DG_LOG_DOMAIN=g_log_domain_gmodule @GLIB_DEBUG_FLAGS@
|
-DG_LOG_DOMAIN=\"GModule\" @GLIB_DEBUG_FLAGS@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw.in \
|
makefile.mingw.in \
|
||||||
|
@ -82,7 +82,6 @@ static inline GModule* g_module_find_by_name (const gchar *name);
|
|||||||
|
|
||||||
|
|
||||||
/* --- variables --- */
|
/* --- variables --- */
|
||||||
const char *g_log_domain_gmodule = "GModule";
|
|
||||||
static GModule *modules = NULL;
|
static GModule *modules = NULL;
|
||||||
static GModule *main_module = NULL;
|
static GModule *main_module = NULL;
|
||||||
static GStaticPrivate module_error_private = G_STATIC_PRIVATE_INIT;
|
static GStaticPrivate module_error_private = G_STATIC_PRIVATE_INIT;
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
EXPORTS
|
EXPORTS
|
||||||
g_log_domain_gmodule
|
|
||||||
g_module_build_path
|
g_module_build_path
|
||||||
g_module_close
|
g_module_close
|
||||||
g_module_error
|
g_module_error
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
#ifndef __GMODULE_H__
|
#ifndef __GMODULE_H__
|
||||||
#define __GMODULE_H__
|
#define __GMODULE_H__
|
||||||
|
|
||||||
extern const char *g_log_domain_gmodule;
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
@ -15,7 +15,7 @@ GLIB_VER = @GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@
|
|||||||
# Nothing much configurable below
|
# Nothing much configurable below
|
||||||
|
|
||||||
INCLUDES = -I .. -I .
|
INCLUDES = -I .. -I .
|
||||||
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=g_log_domain_gmodule -DG_ENABLE_DEBUG
|
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GModule\" -DG_ENABLE_DEBUG
|
||||||
|
|
||||||
BUILD_DLL = ../build-dll
|
BUILD_DLL = ../build-dll
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ GLIB_VER = @GLIB_MAJOR_VERSION@.@GLIB_MINOR_VERSION@
|
|||||||
# Nothing much configurable below
|
# Nothing much configurable below
|
||||||
|
|
||||||
INCLUDES = -I .. -I .
|
INCLUDES = -I .. -I .
|
||||||
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=g_log_domain_gmodule -DG_ENABLE_DEBUG
|
DEFINES = -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"GModule\" -DG_ENABLE_DEBUG
|
||||||
|
|
||||||
all : \
|
all : \
|
||||||
gmoduleconf.h \
|
gmoduleconf.h \
|
||||||
|
Loading…
Reference in New Issue
Block a user