From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18406 invoked by alias); 5 Jan 2002 04:54:21 -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 18339 invoked from network); 5 Jan 2002 04:54:17 -0000 Received: from unknown (HELO localhost.cygnus.com) (24.114.42.213) by sources.redhat.com with SMTP; 5 Jan 2002 04:54:17 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.cygnus.com (Postfix) with ESMTP id 5DC4A3C9E for ; Fri, 4 Jan 2002 23:54:11 -0500 (EST) Message-ID: <3C3686F3.10209@cygnus.com> Date: Fri, 04 Jan 2002 20:54:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.7) Gecko/20020103 X-Accept-Language: en-us MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [patch/rfc] Don't include Content-Type: multipart/mixed; boundary="------------020708070207060306090809" X-SW-Source: 2002-01/txt/msg00064.txt.bz2 This is a multi-part message in MIME format. --------------020708070207060306090809 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 315 Hello, The attatched removes the now technically redundant #include from "defs.h" (and a similar include from tm-vaxbsd.h). I won't check it in just yet though, I'd like to do a few more builds on random linux hosts. Non linux hosts build just fine since they don't have . enjoy, Andrew --------------020708070207060306090809 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 2549 2002-01-04 Andrew Cagney * configure.in (AC_CHECK_HEADERS): Do not check for . * configure, config.in: Re-generate. * config/vax/xm-vaxbsd.h: Do not include . * defs.h: Do not include . Index: configure.in =================================================================== RCS file: /cvs/src/src/gdb/configure.in,v retrieving revision 1.76 diff -p -r1.76 configure.in *** configure.in 2001/12/21 22:32:37 1.76 --- configure.in 2002/01/05 04:44:14 *************** case $host_os in solaris2.7 | solaris2.8 *** 118,124 **** AC_DEFINE(_MSE_INT_H) esac; esac ! AC_CHECK_HEADERS(ctype.h endian.h nlist.h link.h thread_db.h proc_service.h \ memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \ string.h sys/procfs.h sys/ptrace.h sys/reg.h stdint.h \ term.h termio.h termios.h unistd.h wait.h sys/wait.h \ --- 118,124 ---- AC_DEFINE(_MSE_INT_H) esac; esac ! AC_CHECK_HEADERS(ctype.h nlist.h link.h thread_db.h proc_service.h \ memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \ string.h sys/procfs.h sys/ptrace.h sys/reg.h stdint.h \ term.h termio.h termios.h unistd.h wait.h sys/wait.h \ Index: defs.h =================================================================== RCS file: /cvs/src/src/gdb/defs.h,v retrieving revision 1.70 diff -p -r1.70 defs.h *** defs.h 2002/01/05 04:30:17 1.70 --- defs.h 2002/01/05 04:44:16 *************** extern void *alloca (); *** 1225,1237 **** #endif /* Not GNU C */ #endif /* alloca not defined */ - /* Get a definition of BFD_ENDIAN_BIG and BFD_ENDIAN_LITTLE. */ - /* FIXME: cagney/2001-10-31: GDB should just use BFD's definitions. */ - - #ifdef HAVE_ENDIAN_H - #include - #endif - /* Dynamic target-system-dependent parameters for GDB. */ #include "gdbarch.h" #if (GDB_MULTI_ARCH == 0) --- 1225,1230 ---- Index: config/vax/xm-vaxbsd.h =================================================================== RCS file: /cvs/src/src/gdb/config/vax/xm-vaxbsd.h,v retrieving revision 1.1.1.1 diff -p -r1.1.1.1 xm-vaxbsd.h *** xm-vaxbsd.h 1999/04/16 01:34:26 1.1.1.1 --- xm-vaxbsd.h 2002/01/05 04:44:17 *************** *** 1,8 **** /* Definitions to make GDB run on a vax under BSD, 4.3 or 4.4. */ - /* We have to include these files now, so that GDB will not make - competing definitions in defs.h. */ - #include /* This should exist on either 4.3 or 4.4. 4.3 doesn't have limits.h or machine/limits.h. */ #include --- 1,5 ---- --------------020708070207060306090809--