From: Eli Zaretskii Date: Tue, 8 Oct 2013 19:06:40 +0000 (+0300) Subject: Attempt to fix broken compilation on several systems due to menu.h. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1326 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c7a7f318ff5593331341d05a762a765f52e6bdd2;p=emacs.git Attempt to fix broken compilation on several systems due to menu.h. src/term.c: Include "../lwlib/lwlib.h" before including menu.h. --- diff --git a/src/term.c b/src/term.c index 44a83b6a4c8..6d53664949e 100644 --- a/src/term.c +++ b/src/term.c @@ -51,6 +51,10 @@ along with GNU Emacs. If not, see . */ static int been_here = -1; #endif +#ifdef USE_X_TOOLKIT +#include "../lwlib/lwlib.h" +#endif + #include "cm.h" #ifdef HAVE_X_WINDOWS #include "xterm.h"