From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dan Nicolaescu Newsgroups: gmane.emacs.devel Subject: Re: build failure on gnu/linux (very old system though) Date: Thu, 11 Dec 2008 09:33:14 -0800 (PST) Message-ID: <200812111733.mBBHXE1A000467@mothra.ics.uci.edu> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1229017621 17603 80.91.229.12 (11 Dec 2008 17:47:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 11 Dec 2008 17:47:01 +0000 (UTC) Cc: Emacs Devel To: dhruva Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 11 18:48:05 2008 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.50) id 1LApdd-0004kw-5k for ged-emacs-devel@m.gmane.org; Thu, 11 Dec 2008 18:47:49 +0100 Original-Received: from localhost ([127.0.0.1]:55141 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LApcR-0004sD-Pf for ged-emacs-devel@m.gmane.org; Thu, 11 Dec 2008 12:46:35 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LApPs-0008Q1-Ic for emacs-devel@gnu.org; Thu, 11 Dec 2008 12:33:36 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LApPr-0008PA-3D for emacs-devel@gnu.org; Thu, 11 Dec 2008 12:33:36 -0500 Original-Received: from [199.232.76.173] (port=49693 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LApPq-0008P0-Px for emacs-devel@gnu.org; Thu, 11 Dec 2008 12:33:34 -0500 Original-Received: from sallyv2.ics.uci.edu ([128.195.1.120]:53487) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_3DES_EDE_CBC_SHA1:24) (Exim 4.60) (envelope-from ) id 1LApPq-0004Ng-6S for emacs-devel@gnu.org; Thu, 11 Dec 2008 12:33:34 -0500 Original-Received: from mothra.ics.uci.edu (mothra.ics.uci.edu [128.195.6.93]) by sallyv2.ics.uci.edu (8.13.7+Sun/8.13.7) with ESMTP id mBBHXFeD021118; Thu, 11 Dec 2008 09:33:15 -0800 (PST) Original-Received: (from dann@localhost) by mothra.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id mBBHXE1A000467; Thu, 11 Dec 2008 09:33:14 -0800 (PST) In-Reply-To: (dhruva's message of "Thu, 11 Dec 2008 10:14:04 +0530") Original-Lines: 28 X-ICS-MailScanner-Information: Please contact the ISP for more information X-ICS-MailScanner-ID: mBBHXFeD021118 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@mothra.ics.uci.edu X-detected-operating-system: by monty-python.gnu.org: Solaris 10 (beta) 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:106807 Archived-At: dhruva writes: > 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 # define CLOSE_SOCKET close > # define INITIALIZE() > > +#ifndef WCONTINUED > +#define WCONTINUED 8 > +#endif > + > #endif /* !WINDOWSNT */ I checked in your change. Thanks!