mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
fixups to allow compilation in non-verbose mode. Closes #515152.
2008-02-14 Jim Huang <jserv.tw@gmail.com> * src/core/display.c, src/core/util.c: fixups to allow compilation in non-verbose mode. Closes #515152. svn path=/trunk/; revision=3569
This commit is contained in:
parent
2d41d65cf2
commit
04956ecf18
@ -1,3 +1,8 @@
|
||||
2008-02-14 Jim Huang <jserv.tw@gmail.com>
|
||||
|
||||
* src/core/display.c, src/core/util.c: fixups to allow
|
||||
compilation in non-verbose mode. Closes #515152.
|
||||
|
||||
2008-02-12 Thomas Thurman <tthurman@gnome.org>
|
||||
|
||||
* configure.in: Correct help for verbose option name.
|
||||
|
@ -1246,7 +1246,9 @@ meta_displays_list (void)
|
||||
return all_displays;
|
||||
}
|
||||
|
||||
#ifdef WITH_VERBOSE_MODE
|
||||
static gboolean dump_events = TRUE;
|
||||
#endif
|
||||
|
||||
static gboolean
|
||||
grab_op_is_mouse_only (MetaGrabOp op)
|
||||
@ -1607,8 +1609,10 @@ event_callback (XEvent *event,
|
||||
|
||||
display = data;
|
||||
|
||||
#ifdef WITH_VERBOSE_MODE
|
||||
if (dump_events)
|
||||
meta_spew_event (display, event);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STARTUP_NOTIFICATION
|
||||
sn_display_process_event (display->sn_display, event);
|
||||
|
@ -131,10 +131,10 @@ meta_set_verbose (gboolean setting)
|
||||
#ifndef WITH_VERBOSE_MODE
|
||||
if (setting)
|
||||
meta_fatal (_("Metacity was compiled without support for verbose mode\n"));
|
||||
#endif
|
||||
|
||||
#else
|
||||
if (setting)
|
||||
ensure_logfile ();
|
||||
#endif
|
||||
|
||||
is_verbose = setting;
|
||||
}
|
||||
@ -148,9 +148,11 @@ meta_is_debugging (void)
|
||||
void
|
||||
meta_set_debugging (gboolean setting)
|
||||
{
|
||||
#ifdef WITH_VERBOSE_MODE
|
||||
if (setting)
|
||||
ensure_logfile ();
|
||||
|
||||
#endif
|
||||
|
||||
is_debugging = setting;
|
||||
}
|
||||
|
||||
@ -373,8 +375,12 @@ meta_bug (const char *format, ...)
|
||||
str = g_strdup_vprintf (format, args);
|
||||
va_end (args);
|
||||
|
||||
#ifdef WITH_VERBOSE_MODE
|
||||
out = logfile ? logfile : stderr;
|
||||
|
||||
#else
|
||||
out = stderr;
|
||||
#endif
|
||||
|
||||
if (no_prefix == 0)
|
||||
utf8_fputs (_("Bug in window manager: "), out);
|
||||
utf8_fputs (str, out);
|
||||
@ -402,8 +408,12 @@ meta_warning (const char *format, ...)
|
||||
str = g_strdup_vprintf (format, args);
|
||||
va_end (args);
|
||||
|
||||
#ifdef WITH_VERBOSE_MODE
|
||||
out = logfile ? logfile : stderr;
|
||||
|
||||
#else
|
||||
out = stderr;
|
||||
#endif
|
||||
|
||||
if (no_prefix == 0)
|
||||
utf8_fputs (_("Window manager warning: "), out);
|
||||
utf8_fputs (str, out);
|
||||
@ -426,8 +436,12 @@ meta_fatal (const char *format, ...)
|
||||
str = g_strdup_vprintf (format, args);
|
||||
va_end (args);
|
||||
|
||||
#ifdef WITH_VERBOSE_MODE
|
||||
out = logfile ? logfile : stderr;
|
||||
|
||||
#else
|
||||
out = stderr;
|
||||
#endif
|
||||
|
||||
if (no_prefix == 0)
|
||||
utf8_fputs (_("Window manager error: "), out);
|
||||
utf8_fputs (str, out);
|
||||
|
Loading…
Reference in New Issue
Block a user