* Makefile.in (READLINE_CFLAGS): Search $(READLINE_SRC)/.. rather
authorPer Bothner <per@bothner.com>
Wed, 23 Dec 1998 23:06:11 +0000 (23:06 +0000)
committerPer Bothner <per@bothner.com>
Wed, 23 Dec 1998 23:06:11 +0000 (23:06 +0000)
than $(READLINE_SRC) so #include <readline/readline.h> will work.
* top.c:  #include <readline/history.h> instead of "history.h".
* tracepoint.c:  Likewise.
* mac-xdep.c:  Likewise.

gdb/ChangeLog
gdb/Makefile.in
gdb/mac-xdep.c
gdb/top.c
gdb/tracepoint.c

index 896db44c1ada92677171eb58478efe8187c3bbfd..806c61c09d342bc557422de80b262028cbcbb923 100644 (file)
@@ -1,3 +1,11 @@
+Wed Dec 23 15:03:42 1998  Per Bothner  <bothner@cygnus.com>
+
+       * Makefile.in (READLINE_CFLAGS):  Search $(READLINE_SRC)/.. rather
+       than $(READLINE_SRC) so #include <readline/readline.h> will work.
+       * top.c:  #include <readline/history.h> instead of "history.h".
+       * tracepoint.c:  Likewise.
+       * mac-xdep.c:  Likewise.
+
 Wed Dec 23 12:32:00 1998  Andrew Cagney  <cagney@chook.cygnus.com>
 
        * defs.h (TARGET_FLOAT_FORMAT, TARGET_DOUBLE_FORMAT): Define using
index 6831a6e6a4d2e90a09c9f9eb82d0187b01416be0..6429fb06fc40d496d02854da0eab67f0cc257e3f 100644 (file)
@@ -105,7 +105,7 @@ BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
 READLINE_DIR = ../readline
 READLINE = $(READLINE_DIR)/libreadline.a
 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
-READLINE_CFLAGS = -I$(READLINE_SRC)
+READLINE_CFLAGS = -I$(READLINE_SRC)/..
 
 WARN_CFLAGS = @WARN_CFLAGS@
 
@@ -168,16 +168,16 @@ ENABLE_GDBTK= @ENABLE_GDBTK@
 ENABLE_IDE= @ENABLE_IDE@
 
 FOUNDRY_LIB_BASE= @FOUNDRY_LIB_BASE@
-LIBGUI = @LIBGUI@
-GUI_CFLAGS_X = @GUI_CFLAGS_X@
 IDE_CFLAGS_X = @IDE_CFLAGS_X@
 IDE_X = @IDE_X@
 LIBIDETCL = @LIBIDETCL@
 LIBIDE = @LIBIDE@
 IDE_DEPS = @IDE_DEPS@
 IDE=$(IDE_X) 
-IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
 #end-sanitize-ide
+LIBGUI = @LIBGUI@
+GUI_CFLAGS_X = @GUI_CFLAGS_X@
+IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
 #end-sanitize-gdbtk
 
 ENABLE_CFLAGS= @ENABLE_CFLAGS@
index 20a79a53c88a5e9f40c91d90310581214e9b4a8f..bf3f78deb1fd8772ba45829376a766bf97c930aa 100644 (file)
@@ -20,8 +20,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "defs.h"
 
-#include "readline.h"
-#include "history.h"
+#include <readline/readline.h>
+#include <readline/history.h>
 
 #include <Types.h>
 #include <Resources.h>
index dbbc5436b9699d3a63d27feb704a958d55082234..2f7ac51faba2fe1c959b294077c094374c00ff5e 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -36,8 +36,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #include "top.h"
 
 /* readline include files */
-#include "readline/readline.h"
-#include "history.h"
+#include <readline/readline.h>
+#include <readline/history.h>
 
 /* readline defines this.  */
 #undef savestring
index 610ee4084f6d747bf6c591cbbc01570227672f24..9f036178bd1c9e18949ef25e215ddcd31a7abe5a 100644 (file)
@@ -33,8 +33,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #include "ax-gdb.h"
 
 /* readline include files */
-#include "readline/readline.h"
-#include "history.h"
+#include <readline/readline.h>
+#include <readline/history.h>
 
 /* readline defines this.  */
 #undef savestring