From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7267 invoked by alias); 21 Oct 2002 06:32:14 -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 7260 invoked from network); 21 Oct 2002 06:32:12 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 21 Oct 2002 06:32:12 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id AEAE4D2CC7; Sun, 20 Oct 2002 23:33:00 -0700 (PDT) Date: Sun, 20 Oct 2002 23:32:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA] define NEW_PROC_API on Interix Message-ID: <20021021063300.GZ7331@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="KFztAG8eRSV9hGtP" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2002-10/txt/msg00330.txt.bz2 --KFztAG8eRSV9hGtP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 714 On Interix, NEW_PROC_API should be defined. So the following change has been made to configure.in. I also regenerated configure using the autoconf located in the binutils directory of ftp://sources.redhat.com, but got zillions of meaning-less differences. I wonder if this is because I did something wrong, or if the current configure was generated with an "incorrect" version of autoconf. For now, I just extracted the one hunk that my change should cause. Tested on Linux by: % make distclean % ./configure % make Ok to apply? 2002-10-20 Joel Brobecker * configure.in: Define NEW_PROC_API on Interix too. * configure: Regenerate. Thanks, -- Joel --KFztAG8eRSV9hGtP Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="configure.diff" Content-length: 1293 Index: configure.in =================================================================== RCS file: /cvs/src/src/gdb/configure.in,v retrieving revision 1.91 diff -c -3 -r1.91 configure.in *** configure.in 20 Sep 2002 00:24:01 -0000 1.91 --- configure.in 21 Oct 2002 06:18:32 -0000 *************** *** 279,285 **** ia64-*-aix*) AC_DEFINE(NEW_PROC_API) ;; ! *-*-unixware* | *-*-sysv4.2* | *-*-sysv5*) AC_DEFINE(NEW_PROC_API) ;; *-*-solaris2.[[678]]) --- 279,285 ---- ia64-*-aix*) AC_DEFINE(NEW_PROC_API) ;; ! *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* ) AC_DEFINE(NEW_PROC_API) ;; *-*-solaris2.[[678]]) Index: configure =================================================================== RCS file: /cvs/src/src/gdb/configure,v retrieving revision 1.90 diff -c -3 -r1.90 configure *** configure 20 Sep 2002 00:24:01 -0000 1.90 --- configure 21 Oct 2002 06:18:37 -0000 *************** *** 4991,4997 **** EOF ;; ! *-*-unixware* | *-*-sysv4.2* | *-*-sysv5*) cat >> confdefs.h <<\EOF #define NEW_PROC_API 1 EOF --- 4991,4997 ---- EOF ;; ! *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* ) cat >> confdefs.h <<\EOF #define NEW_PROC_API 1 EOF --KFztAG8eRSV9hGtP--