From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19708 invoked by alias); 19 Mar 2002 18:17:59 -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 19496 invoked from network); 19 Mar 2002 18:17:42 -0000 Received: from unknown (HELO dragon.nuxi.com) (66.92.13.169) by sources.redhat.com with SMTP; 19 Mar 2002 18:17:42 -0000 Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2JIHhlv074834 for ; Tue, 19 Mar 2002 10:17:43 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2JIGRZP074811 for gdb-patches@sources.redhat.com; Tue, 19 Mar 2002 10:16:27 -0800 (PST) Date: Tue, 19 Mar 2002 10:17:00 -0000 From: "David O'Brien" To: gdb-patches@sources.redhat.com Subject: (FWD) [PATCH] include sys/param.h for sparc Message-ID: <20020319101627.A74777@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 X-SW-Source: 2002-03/txt/msg00353.txt.bz2 ____ _ _ | _ \ (_) _ __ __ _ | | | |_) | | | | '_ \ / _` | | | | __/ | | | | | | | (_| | |_| |_| |_| |_| |_| \__, | (_) |___/ ----- Forwarded message from David O'Brien ----- Subject: [PATCH] include sys/param.h for sparc Date: Tue, 12 Mar 2002 19:23:46 -0800 To: gdb-patches@sources.redhat.org OK to apply? Needed in the sparc64-*-freebsd* build. 2002-03-12 David O'Brien * sparc-nat.c: Include sys/param.h where possible. Index: sparc-nat.c =================================================================== RCS file: /cvs/src/src/gdb/sparc-nat.c,v retrieving revision 1.11 diff -u -r1.11 sparc-nat.c --- sparc-nat.c 2001/11/26 16:42:11 1.11 +++ sparc-nat.c 2002/03/13 03:22:24 @@ -25,6 +25,9 @@ #include "gdbcore.h" #include "regcache.h" +#ifdef HAVE_SYS_PARAM_H +#include +#endif #include #include #include ----- End forwarded message -----