emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Compilation error fix on GNU/Linux


From: Jan Djärv
Subject: Re: Compilation error fix on GNU/Linux
Date: Fri, 30 Apr 2010 15:51:43 +0200
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

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<http://www.gnu.org/licenses/>.  */

  #include "config.h"
+#include<limits.h>
  #include<setjmp.h>
  #include<fcntl.h>
  #include "lisp.h"

-dhruva







reply via email to

[Prev in Thread] Current Thread [Next in Thread]