Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Correct earlier bustage fix so it actually works. b=381133
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaron committed Jun 12, 2007
1 parent 1c0d825 commit e37f497
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions xpfe/bootstrap/nsSigHandlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,12 @@ void beos_signal_handler(int signum) {
}
#endif

#if defined(MOZ_WIDGET_GTK2) && (GLIB_MAJOR_VERSION > 2 || (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION >= 6))

#ifdef MOZ_WIDGET_GTK2
// Need this include for version test below.
#include <glib.h>
#endif

#if defined(MOZ_WIDGET_GTK2) && (GLIB_MAJOR_VERSION > 2 || (GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION >= 6))

static GLogFunc orig_log_func = NULL;

Expand Down

0 comments on commit e37f497

Please sign in to comment.