* x.h: Instead of undefining MIX and MAX after <gnome.h> make

sure that <sys/param.h> is included before <gnome.h>.
This commit is contained in:
Pavel Roskin 2001-08-18 07:35:11 +00:00
parent 82e68774de
commit ced66d3c9b
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-08-18 Pavel Roskin <proski@gnu.org>
* x.h: Instead of undefining MIX and MAX after <gnome.h> make
sure that <sys/param.h> is included before <gnome.h>.
2001-08-17 Pavel Roskin <proski@gnu.org>
* key.c (mc_bindings) [linux]: Remove old hack - recognizing

View File

@ -6,11 +6,12 @@
#endif
#ifdef HAVE_GNOME
# ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
# endif
# define GNOME_REGEX_H
# include <gnome.h>
# include "gconf.h"
# undef MIN
# undef MAX
# include "gmain.h"
#endif