From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?UTF-8?B?SmFuIERqw6Rydg==?= Newsgroups: gmane.emacs.devel Subject: Re: Compilation error fix on GNU/Linux Date: Fri, 30 Apr 2010 15:51:43 +0200 Message-ID: <4BDAE06F.5060208@swipnet.se> References: <950600.80471.qm@web65820.mail.ac4.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1272635571 3014 80.91.229.12 (30 Apr 2010 13:52:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 30 Apr 2010 13:52:51 +0000 (UTC) Cc: Emacs Development To: dhruva Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 30 15:52:50 2010 connect(): No such file or directory 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 1O7qeA-0007Lb-7Z for ged-emacs-devel@m.gmane.org; Fri, 30 Apr 2010 15:52:50 +0200 Original-Received: from localhost ([127.0.0.1]:34392 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O7qe9-00023E-Pi for ged-emacs-devel@m.gmane.org; Fri, 30 Apr 2010 09:52:49 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O7qdD-0001o6-Cn for emacs-devel@gnu.org; Fri, 30 Apr 2010 09:51:51 -0400 Original-Received: from [140.186.70.92] (port=43388 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O7qdC-0001nv-BD for emacs-devel@gnu.org; Fri, 30 Apr 2010 09:51:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O7qdA-0006Sb-VH for emacs-devel@gnu.org; Fri, 30 Apr 2010 09:51:50 -0400 Original-Received: from smtprelay-h22.telenor.se ([195.54.99.197]:54868) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O7qdA-0006SC-Po for emacs-devel@gnu.org; Fri, 30 Apr 2010 09:51:48 -0400 Original-Received: from ipb2.telenor.se (ipb2.telenor.se [195.54.127.165]) by smtprelay-h22.telenor.se (Postfix) with ESMTP id 1A4FFEB58E for ; Fri, 30 Apr 2010 15:51:44 +0200 (CEST) X-SENDER-IP: [85.225.45.110] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgA2ANd92ktV4S1uPGdsb2JhbACDFpoJDAEBAQE1La0NkR+BJoJ+bgQ X-IronPort-AV: E=Sophos;i="4.52,302,1270418400"; d="scan'208";a="69315103" Original-Received: from c-6e2de155.25-1-64736c10.cust.bredbandsbolaget.se (HELO coolsville.localdomain) ([85.225.45.110]) by ipb2.telenor.se with ESMTP; 30 Apr 2010 15:51:44 +0200 Original-Received: from [172.20.199.13] (zeplin [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id F1CE77FA05A; Fri, 30 Apr 2010 15:51:43 +0200 (CEST) User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; sv-SE; rv:1.9.1.9) Gecko/20100317 Thunderbird/3.0.4 In-Reply-To: <950600.80471.qm@web65820.mail.ac4.yahoo.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. 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:124359 Archived-At: Thanks, fixed now. Jan D. dhruva skrev 2010-04-29 19.33: > When building emacs using gcc 4.4.1 on GNU/Linux i686, I get an error saying LONG_MAX is not defined during compilation of src/xsetting.c. The following trivial patch fixes it. > > $ bzr diff > === modified file 'src/xsettings.c' > --- src/xsettings.c2010-04-22 17:23:18 +0000 > +++ src/xsettings.c2010-04-29 17:28:58 +0000 > @@ -18,6 +18,7 @@ > along with GNU Emacs. If not, see. */ > > #include "config.h" > +#include > #include > #include > #include "lisp.h" > > -dhruva > > >