From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22956 invoked by alias); 20 Apr 2004 15:00:24 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 22942 invoked from network); 20 Apr 2004 15:00:22 -0000 Received: from unknown (HELO jurand.ds.pg.gda.pl) (153.19.208.2) by sources.redhat.com with SMTP; 20 Apr 2004 15:00:22 -0000 Received: by jurand.ds.pg.gda.pl (Postfix, from userid 1011) id D941F4AD53; Tue, 20 Apr 2004 17:00:21 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by jurand.ds.pg.gda.pl (Postfix) with ESMTP id C01FC4AC7D for ; Tue, 20 Apr 2004 17:00:21 +0200 (CEST) Date: Tue, 20 Apr 2004 15:00:00 -0000 From: "Maciej W. Rozycki" To: gdb-patches@sources.redhat.com Subject: 6.1: Use cconfig.h instead of config.h in sim/common [resend] Message-ID: Organization: Technical University of Gdansk MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2004-04/txt/msg00462.txt.bz2 Hello, Despite: http://sources.redhat.com/ml/gdb-patches/2003-12/msg00057.html the following patch hasn't been applied. What's wrong with it? 2004-04-20 Maciej W. Rozycki * callback.c: Include cconfig.h instead of config.h. * run.c: Likewise. * sim-basics.h: Likewise. * sim-load.c: Likewise. * syscall.c: Likewise. Maciej -- + Maciej W. Rozycki, Technical University of Gdansk, Poland + +--------------------------------------------------------------+ + e-mail: macro@ds2.pg.gda.pl, PGP key available + gdb-6.0-sim-cconfig.patch diff -up --recursive --new-file gdb-6.0.macro/sim/common/callback.c gdb-6.0/sim/common/callback.c --- gdb-6.0.macro/sim/common/callback.c 2002-06-09 15:45:45.000000000 +0000 +++ gdb-6.0/sim/common/callback.c 2003-11-09 01:07:33.000000000 +0000 @@ -22,7 +22,7 @@ level. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include "cconfig.h" #endif #include "ansidecl.h" #ifdef ANSI_PROTOTYPES diff -up --recursive --new-file gdb-6.0.macro/sim/common/run.c gdb-6.0/sim/common/run.c --- gdb-6.0.macro/sim/common/run.c 2003-06-05 02:17:29.000000000 +0000 +++ gdb-6.0/sim/common/run.c 2003-11-16 19:09:07.000000000 +0000 @@ -18,8 +18,10 @@ with this program; if not, write to the /* Steve Chamberlain sac@cygnus.com, and others at Cygnus. */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include "cconfig.h" #include "tconfig.h" +#endif #include #include diff -up --recursive --new-file gdb-6.0.macro/sim/common/sim-basics.h gdb-6.0/sim/common/sim-basics.h --- gdb-6.0.macro/sim/common/sim-basics.h 2002-11-23 01:12:05.000000000 +0000 +++ gdb-6.0/sim/common/sim-basics.h 2003-11-09 01:06:45.000000000 +0000 @@ -29,7 +29,7 @@ /* Basic configuration */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include "cconfig.h" #endif /* Basic host dependant mess - hopefully + will diff -up --recursive --new-file gdb-6.0.macro/sim/common/sim-load.c gdb-6.0/sim/common/sim-load.c --- gdb-6.0.macro/sim/common/sim-load.c 2002-06-09 15:45:45.000000000 +0000 +++ gdb-6.0/sim/common/sim-load.c 2003-11-09 01:09:52.000000000 +0000 @@ -19,7 +19,9 @@ along with this program; if not, write t as it is used by simulators that don't use it [though that doesn't mean to suggest that they shouldn't :-)]. */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include "cconfig.h" +#endif #include "ansidecl.h" #include /* for NULL */ #ifdef ANSI_PROTOTYPES diff -up --recursive --new-file gdb-6.0.macro/sim/common/syscall.c gdb-6.0/sim/common/syscall.c --- gdb-6.0.macro/sim/common/syscall.c 2002-06-09 15:45:45.000000000 +0000 +++ gdb-6.0/sim/common/syscall.c 2003-11-09 01:10:04.000000000 +0000 @@ -25,7 +25,7 @@ supported. */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include "cconfig.h" #endif #include "ansidecl.h" #include "libiberty.h"