From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Doug Turner Newsgroups: gmane.emacs.bugs Subject: trunk macos build bustage Date: Wed, 19 Sep 2007 09:48:26 -0700 Message-ID: <4B360316-C326-45FA-99D1-27597D8865DF@meer.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1190234102 10516 80.91.229.12 (19 Sep 2007 20:35:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 19 Sep 2007 20:35:02 +0000 (UTC) To: bug-gnu-emacs@gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Wed Sep 19 22:35:00 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IY6GB-0006Yk-Il for geb-bug-gnu-emacs@m.gmane.org; Wed, 19 Sep 2007 22:34:59 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IY6G9-0004kn-QD for geb-bug-gnu-emacs@m.gmane.org; Wed, 19 Sep 2007 16:34:57 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IY2j3-0000KT-Ly for bug-gnu-emacs@gnu.org; Wed, 19 Sep 2007 12:48:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IY2j2-0000IW-6S for bug-gnu-emacs@gnu.org; Wed, 19 Sep 2007 12:48:32 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IY2j2-0000IB-03 for bug-gnu-emacs@gnu.org; Wed, 19 Sep 2007 12:48:32 -0400 Original-Received: from outbound0.mx.meer.net ([209.157.153.23] helo=outbound0.sv.meer.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IY2j1-0000vE-HK for bug-gnu-emacs@gnu.org; Wed, 19 Sep 2007 12:48:31 -0400 Original-Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by outbound0.sv.meer.net (8.12.10/8.12.6) with ESMTP id l8JGmTih084314 for ; Wed, 19 Sep 2007 09:48:29 -0700 (PDT) (envelope-from dougt@meer.net) Original-Received: from [10.250.3.179] (guest-226.mountainview.mozilla.com [63.245.220.226]) by mail.meer.net (8.13.3/8.13.3/meer) with ESMTP id l8JGmSTJ062752 for ; Wed, 19 Sep 2007 09:48:29 -0700 (PDT) (envelope-from dougt@meer.net) X-Mailer: Apple Mail (2.752.3) X-Detected-Kernel: FreeBSD 4.6-4.9 X-Mailman-Approved-At: Wed, 19 Sep 2007 16:34:56 -0400 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16576 Archived-At: I am not sure if this is the right place to report a bug on the mac os port. if it isn't please ignore or push me in the right direction. I am building w/ the following: ./configure --with-carbon --without-x make bootstrap A current trunk pull of the source fails to compile due to the wrong signature in /emacs/src/dispextern.h. This patch is needed: Index: src/dispextern.h =================================================================== RCS file: /sources/emacs/emacs/src/dispextern.h,v retrieving revision 1.229 diff -u -r1.229 dispextern.h --- src/dispextern.h 29 Aug 2007 05:27:52 -0000 1.229 +++ src/dispextern.h 19 Sep 2007 16:45:24 -0000 @@ -2766,7 +2766,7 @@ void w32_reset_fringes P_ ((void)); #endif #ifdef MAC_OS -void mac_init_fringe P_ ((void)); +void mac_init_fringe P_ ((struct redisplay_interface *rif)); #endif /* Defined in image.c */ Regards, Doug Turner