Skip to content
Snippets Groups Projects
Commit 155eae8f authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Changed the include order to work around a silly bug in glibc 2.1

where the macros MAX and MIN gets redefined.

Rev: src/post_modules/GTK/pgtk.c.head:1.3
parent d654e957
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
#define GTK_NO_CHECK_CASTS #define GTK_NO_CHECK_CASTS
#include "config.h" #include "config.h"
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
#include <program.h> #include <program.h>
#include <pike_types.h> #include <pike_types.h>
#include <interpret.h> #include <interpret.h>
...@@ -18,6 +16,8 @@ ...@@ -18,6 +16,8 @@
#include <threads.h> #include <threads.h>
#include <builtin_functions.h> #include <builtin_functions.h>
#include <operators.h> #include <operators.h>
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
#include "prototypes.h" #include "prototypes.h"
#ifdef HAVE_SIGNAL_H #ifdef HAVE_SIGNAL_H
#include <signal.h> #include <signal.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment