emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/etc/PROBLEMS,v


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/etc/PROBLEMS,v
Date: Thu, 24 May 2007 06:25:54 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Miles Bader <miles>     07/05/24 06:25:51

Index: etc/PROBLEMS
===================================================================
RCS file: /cvsroot/emacs/emacs/etc/PROBLEMS,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -b -r1.229 -r1.230
--- etc/PROBLEMS        22 May 2007 05:55:07 -0000      1.229
+++ etc/PROBLEMS        24 May 2007 06:25:49 -0000      1.230
@@ -158,7 +158,6 @@
 
 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=239344
 
-
 * Crash bugs
 
 ** Emacs crashes in x-popup-dialog.
@@ -2453,6 +2452,27 @@
 the problem, install the current version of GNU Sed, then rerun
 Emacs's configure script.
 
+*** Compiling on GNU/Linux fails due to a missing left operand in gnu-linux.h.
+
+The error messages have the form:
+
+  ../src/s/gnu-linux.h:49:24: error: operator '>' has no left operand
+
+This error occurs because your system defines LINUX_VERSION_CODE in
+the standard header file linux/version.h but does not give it a value.
+As a workaround, you can edit the file src/s/gnu-linux.h to add the
+needed definition.  On the line after "#include <linux/version.h>",
+add a line as shown below:
+
+#include <linux/version.h>
+#define LINUX_VERSION_CODE 132626
+
+The number to use depends on your kernel version (the example shown is
+for kernel 2.6.18).  The number can be obtained by running the
+following command in the shell:
+
+uname -r | sed -e 's/\./ /g' -e 's/-.*//' | awk '{print $1*(2^16) + $2*(2^8) + 
$3}'
+
 *** Building a 32-bit executable on a 64-bit GNU/Linux architecture.
 
 First ensure that the necessary 32-bit system libraries and include
@@ -2810,6 +2830,14 @@
 Using directory paths with spaces is not supported at this time: you
 must re-configure without using spaces.
 
+*** Installing to a directory with non-ASCII characters in the name fails.
+
+Installation may fail, or the Emacs executable may not start
+correctly, if a directory name containing non-ASCII characters is used
+as a `configure' argument (e.g. `--prefix').  The problem can also
+occur if a non-ASCII directory is specified in the EMACSLOADPATH
+envvar.
+
 *** On Solaris, use GNU Make when installing an out-of-tree build
 
 The Emacs configuration process allows you to configure the




reply via email to

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