From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18500 invoked by alias); 8 Aug 2004 12:37:51 -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 18484 invoked from network); 8 Aug 2004 12:37:49 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.77.109) by sourceware.org with SMTP; 8 Aug 2004 12:37:49 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i78Cbkoa003353; Sun, 8 Aug 2004 14:37:46 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i78CbkSP015113; Sun, 8 Aug 2004 14:37:46 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i78CbkY9015110; Sun, 8 Aug 2004 14:37:46 +0200 (CEST) Date: Sun, 08 Aug 2004 12:37:00 -0000 Message-Id: <200408081237.i78CbkY9015110@elgar.kettenis.dyndns.org> From: Mark Kettenis To: brobecker@gnat.com CC: gdb-patches@sources.redhat.com In-reply-to: <20040808045534.GG24160@gnat.com> (message from Joel Brobecker on Sat, 7 Aug 2004 21:55:34 -0700) Subject: Re: [RFC/AIX] xm-aix4.h - Remove vfork redefine References: <20040808045534.GG24160@gnat.com> X-SW-Source: 2004-08/txt/msg00247.txt.bz2 Date: Sat, 7 Aug 2004 21:55:34 -0700 From: Joel Brobecker config/xm-aix4.h contains the following define: | /* There is no vfork. */ | | #define vfork fork I think we should add a (link) test in configure for that. But the other alternative is to do as we did for HP/UX (but the reason we did it that way for HP/UX is because vfork is broken on this system). Autoconf already handles that. There should be a "#define vfork fork" in your config.h. Mark