From 5e4d4b0f3202e980035612e42fa2b242554a2ac6 Mon Sep 17 00:00:00 2001 From: Sean Eric Fagan Date: Tue, 11 Feb 1992 00:01:35 +0000 Subject: [PATCH] all: Don't include if NO_SYS_FILE is defined. On the Apollo, this file does not exist, and not including it hasn't seemed to cause problems. main.c: Use the proper enum's in the options structure initialization; the Apollo compiler chokes on this. --- gdb/xcoffread.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index 43de5dbc1e..d336ac4af7 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -32,7 +32,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "obstack.h" #include +#ifndef NO_SYS_FILE #include +#endif #include #include "symtab.h"