From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 45123 invoked by alias); 13 May 2016 20:58:06 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 44657 invoked by uid 89); 13 May 2016 20:58:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=OS, UD:twitter.com, 7.11, twitter.com X-HELO: gtw.aybabtu.com Received: from archive.ubuntubsd.org (HELO gtw.aybabtu.com) (78.46.208.135) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 13 May 2016 20:57:54 +0000 Received: from jon by gtw.aybabtu.com with local (Exim 4.82) (envelope-from ) id 1b1K9e-00065P-9j for gdb-patches@sourceware.org; Fri, 13 May 2016 22:57:50 +0200 Date: Fri, 13 May 2016 20:58:00 -0000 From: Jon Boden To: gdb-patches@sourceware.org Subject: Patch for GNU/kFreeBSD Message-ID: <20160513205750.GA23358@ubuntubsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2016-05/txt/msg00235.txt.bz2 --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 249 Hi GDB 7.11 needs a tiny fix to build on GNU/kFreeBSD systems. Please can you apply this? Thanks! -- Jon Boden ubuntuBSD -- The power of FreeBSD kernel with familiarity of Ubuntu OS! http://www.ubuntubsd.org/ -- https://twitter.com/ubuntuBSD --3MwIy2ne0vdjdPXF Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="bsd.diff" Content-length: 414 --- gdb-7.11.orig/gdb/configure.ac +++ gdb-7.11/gdb/configure.ac @@ -535,7 +535,7 @@ AC_SEARCH_LIBS(socketpair, socket) AM_ZLIB # On FreeBSD we may need libutil for kinfo_getvmmap (used by fbsd-nat.c). -AC_SEARCH_LIBS(kinfo_getvmmap, util, +AC_SEARCH_LIBS(kinfo_getvmmap, util util-freebsd, [AC_DEFINE(HAVE_KINFO_GETVMMAP, 1, [Define to 1 if your system has the kinfo_getvmmap function. ])]) --3MwIy2ne0vdjdPXF--