From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28068 invoked by alias); 22 Oct 2002 04:35:05 -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 28003 invoked from network); 22 Oct 2002 04:35:04 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 22 Oct 2002 04:35:04 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 1D624D2CC7; Mon, 21 Oct 2002 21:35:59 -0700 (PDT) Date: Mon, 21 Oct 2002 21:35:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA] define NEW_PROC_API on Interix (resubmission) Message-ID: <20021022043559.GO7331@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="wTWi5aaYRw9ix9vO" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2002-10/txt/msg00387.txt.bz2 --wTWi5aaYRw9ix9vO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 606 I am resubmitting a change that I first submitted in http://sources.redhat.com/ml/gdb-patches/2002-10/msg00330.html. In that message, the patch to configure was actually a hand-change to configure because autoconf was generating too many changes that were unrelated to mine. Now that I have regenerated the configure script, I could use autoconf to generate the change to configure, and hence I am resubmitting this patch here. Ok to apply? 2002-10-20 Joel Brobecker * configure.in: Define NEW_PROC_API on Interix too. * configure: Regenerate. Thanks, -- Joel --wTWi5aaYRw9ix9vO 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 22 Oct 2002 03:55:03 -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.91 diff -c -3 -r1.91 configure *** configure 22 Oct 2002 03:54:20 -0000 1.91 --- configure 22 Oct 2002 03:55:07 -0000 *************** *** 4989,4995 **** EOF ;; ! *-*-unixware* | *-*-sysv4.2* | *-*-sysv5*) cat >> confdefs.h <<\EOF #define NEW_PROC_API 1 EOF --- 4989,4995 ---- EOF ;; ! *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* ) cat >> confdefs.h <<\EOF #define NEW_PROC_API 1 EOF --wTWi5aaYRw9ix9vO--