From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5638 invoked by alias); 18 Jun 2006 03:24:03 -0000 Received: (qmail 5628 invoked by uid 22791); 18 Jun 2006 03:24:03 -0000 X-Spam-Check-By: sourceware.org Received: from nitzan.inter.net.il (HELO nitzan.inter.net.il) (192.114.186.20) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 18 Jun 2006 03:24:01 +0000 Received: from HOME-C4E4A596F7 (IGLD-80-230-155-219.inter.net.il [80.230.155.219]) by nitzan.inter.net.il (MOS 3.7.3-GA) with ESMTP id DTB28257 (AUTH halo1); Sun, 18 Jun 2006 06:23:57 +0300 (IDT) Date: Sun, 18 Jun 2006 03:24:00 -0000 Message-Id: From: Eli Zaretskii To: "Michael Fischer" CC: gdb-patches@sourceware.org In-reply-to: Subject: Re: AW: [PATCH] source.s: Fix problem handling windows like path with MinGW Reply-to: Eli Zaretskii References: X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-06/txt/msg00252.txt.bz2 [Please don't take this discussion off the mailing list.] > From: "Michael Fischer" > Date: Sat, 17 Jun 2006 23:32:25 +0200 > > Why ":" and not ";" ? > > If I compile the GDB under MinGW, DIRNAME_SEPARATOR was set to ":". > If you take a look in gdb\defs.h, ";" is only defined in case of > __MSDOS__. I think MinGW will not set this define?! What happens if you modify defs.h to define DIRNAME_SEPARATOR as `;'? Does the problem go away? > I think in this case, we should change the add_path function too. I think if DIRNAME_SEPARATOR is `;', add_path will do what you need. Could you please check that?