emacs-devel
[Top][All Lists]
Advanced

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

build failure on gnu/linux (very old system though)


From: dhruva
Subject: build failure on gnu/linux (very old system though)
Date: Thu, 11 Dec 2008 10:14:04 +0530

Hi,
 I build on a rather old gnu/linux box:
Linux siml12.eng.btc.netapp.in 2.4.20-20.8smp #1 SMP Mon Aug 18
14:39:22 EDT 2003 i686 i686 i386 GNU/Linux

The sys/wait.h which includes bits/waitflags.h does not have
definition for WCONTINUED. To get the build going, I made the
following changes. Before someone pounces on me and suggest that I use
a newer system, this is at work place and we have a farm that is not
updated (not in my control) and I have to live with it.

diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 7fbedbc..7774dd0 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -54,6 +54,10 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licens
 # define CLOSE_SOCKET close
 # define INITIALIZE()

+#ifndef WCONTINUED
+#define WCONTINUED 8
+#endif
+
 #endif /* !WINDOWSNT */

 #undef signal


-dhruva

-- 
Contents reflect my personal views only!




reply via email to

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