all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: dhruva <dhruvakm@gmail.com>
To: "Emacs Devel" <emacs-devel@gnu.org>
Subject: build failure on gnu/linux (very old system though)
Date: Thu, 11 Dec 2008 10:14:04 +0530	[thread overview]
Message-ID: <e3f230850812102044x1fed4c8cxa0bd012a879aba0c@mail.gmail.com> (raw)

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	other threads:[~2008-12-11  4:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-11  4:44 dhruva [this message]
2008-12-11 17:33 ` build failure on gnu/linux (very old system though) Dan Nicolaescu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e3f230850812102044x1fed4c8cxa0bd012a879aba0c@mail.gmail.com \
    --to=dhruvakm@gmail.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.