From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DMARC_NONE,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=4.0.0 Received: from member.michigannet.com (member.michigannet.com [207.158.188.18]) by chiba.3jane.net (Postfix) with ESMTP id E6E392019D78; Sun, 7 Apr 2002 01:28:21 -0600 (CST) Received: from squish.home.loc (annex-0-4-port-16.dialup.coast.net [207.158.181.16]) by member.michigannet.com (8.11.6/8.11.0) with ESMTP id g37CW8X03675; Sun, 7 Apr 2002 08:32:08 -0400 Received: by squish.home.loc (Postfix, from userid 666) id 4736327AFF; Sun, 7 Apr 2002 03:31:01 -0400 (EDT) Date: Sun, 7 Apr 2002 03:31:01 -0400 From: Paul To: gentoo-user@gentoo.org Cc: gentoo-dev@gentoo.org, bug-binutils@gnu.org Message-ID: <20020407033101.I3603@squish.home.loc> References: <20020406123702.12cda6c9.colonists@mrmarr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from davel@canuck.com on Sat, Apr 06, 2002 at 04:08:34PM -0700 Subject: [gentoo-dev] Re: Ebuild error for gdb Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: 05a902cb-08bc-4d2c-acc8-b72fa5df3ca6 X-Archives-Hash: 7d56d964c57b772287bbebcec3dde773 Dave Lee , on Sat Apr 06, 2002 [04:08:34 PM] said: > > gdb fails with the same error for me. Here is what make spits out > > gcc -c -march=i686 -O3 -pipe -I. -I. -I./config -DHAVE_CONFIG_H -I./../include/opcode -I./../readline/.. -I../bfd -I./../bfd -I./../include -I../intl -I./../intl -DMI_OUT=1 -DUI_OUT=1 -Wimplicit -Wreturn-type -Wcomment -Wtrigraphs -Wformat -Wparentheses -Wpointer-arith -Wuninitialized utils.c > In file included from /usr/include/curses.h:111, > from utils.c:30: > /usr/lib/gcc-lib/i686-pc-linux-gnu/2.95.3/include/stdbool.h:9: conflicting > types for `false' > ../bfd/bfd.h:102: previous declaration of `false' > /usr/lib/gcc-lib/i686-pc-linux-gnu/2.95.3/include/stdbool.h:11: conflicting > types for `true' > ../bfd/bfd.h:102: previous declaration of `true' Hi; In /usr/include/curses.h, we see this mess: #if (!defined(__cplusplus) || !1) && (!0) #if 1 <----change me #include #endif #undef bool #if 1 #define bool NCURSES_BOOL #else typedef unsigned char bool; #endif #endif /* !__cplusplus, etc. */ Change the '#if 1' at line 110 to '#if 0', and you can merge gdb. I dont know what the right fix is; in gdb, bfd/bfd.h has an enum that conflicts with the enum in stdbool.h (defining 'true' and 'false') Either curses.h needs to be smarter, or bfd-in.h needs tuning.... ???? Paul set@pobox.com ps. if you change this to get gdb to merge, change it back, as I have no idea how it would affect other things that want to use curses...