diff options
| author | Eli Zaretskii | 2013-10-08 22:06:40 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-10-08 22:06:40 +0300 |
| commit | c7a7f318ff5593331341d05a762a765f52e6bdd2 (patch) | |
| tree | 06e0ac39032ac572348a75519cca027f46ab7935 /src | |
| parent | b0904477b398c3778198b10a6bd0b1631284bc3f (diff) | |
| download | emacs-c7a7f318ff5593331341d05a762a765f52e6bdd2.tar.gz emacs-c7a7f318ff5593331341d05a762a765f52e6bdd2.zip | |
Attempt to fix broken compilation on several systems due to menu.h.
src/term.c: Include "../lwlib/lwlib.h" before including menu.h.
Diffstat (limited to 'src')
| -rw-r--r-- | src/term.c | 4 |
1 files changed, 4 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>. */ | |||
| 51 | static int been_here = -1; | 51 | static int been_here = -1; |
| 52 | #endif | 52 | #endif |
| 53 | 53 | ||
| 54 | #ifdef USE_X_TOOLKIT | ||
| 55 | #include "../lwlib/lwlib.h" | ||
| 56 | #endif | ||
| 57 | |||
| 54 | #include "cm.h" | 58 | #include "cm.h" |
| 55 | #ifdef HAVE_X_WINDOWS | 59 | #ifdef HAVE_X_WINDOWS |
| 56 | #include "xterm.h" | 60 | #include "xterm.h" |