From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Fran Newsgroups: gmane.emacs.devel Subject: Patch to get clean compile on SLES11 Linux Date: Thu, 15 Jul 2010 19:26:20 +0000 (UTC) Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1279222016 926 80.91.229.12 (15 Jul 2010 19:26:56 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 15 Jul 2010 19:26:56 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 15 21:26:53 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OZU56-0002VT-7H for ged-emacs-devel@m.gmane.org; Thu, 15 Jul 2010 21:26:52 +0200 Original-Received: from localhost ([127.0.0.1]:49239 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OZU54-0004Zw-HD for ged-emacs-devel@m.gmane.org; Thu, 15 Jul 2010 15:26:50 -0400 Original-Received: from [140.186.70.92] (port=44548 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OZU4l-0004RG-98 for emacs-devel@gnu.org; Thu, 15 Jul 2010 15:26:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OZU4k-0005wY-55 for emacs-devel@gnu.org; Thu, 15 Jul 2010 15:26:31 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]:53199) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OZU4j-0005wL-Rg for emacs-devel@gnu.org; Thu, 15 Jul 2010 15:26:30 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OZU4i-0002Kr-6E for emacs-devel@gnu.org; Thu, 15 Jul 2010 21:26:28 +0200 Original-Received: from 128-221-197-57.emc.com ([128.221.197.57]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Jul 2010 21:26:28 +0200 Original-Received: from flitterio by 128-221-197-57.emc.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Jul 2010 21:26:28 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 21 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 128.221.197.57 (Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:127388 Archived-At: I had to make this small change to the latest development sources to get a clean compile on SLES11 Linux: --- xmenu.c~ 2010-07-15 14:31:37.000000000 -0400 +++ xmenu.c 2010-07-15 15:20:46.000020000 -0400 @@ -2275,7 +2275,7 @@ Lisp_Object -xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps, Lisp_Object title, char **error, unsigned int timestamp) +xmenu_show (FRAME_PTR f, int x, int y, int for_click, int keymaps, Lisp_Object title, char **error, EMACS_UINT timestamp) { Window root; XMenu *menu; I don't know if this affects other UNIX/Linux systems. -- Fran