* build failure on gnu/linux (very old system though)
@ 2008-12-11 4:44 dhruva
2008-12-11 17:33 ` Dan Nicolaescu
0 siblings, 1 reply; 2+ messages in thread
From: dhruva @ 2008-12-11 4:44 UTC (permalink / raw)
To: Emacs Devel
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!
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: build failure on gnu/linux (very old system though)
2008-12-11 4:44 build failure on gnu/linux (very old system though) dhruva
@ 2008-12-11 17:33 ` Dan Nicolaescu
0 siblings, 0 replies; 2+ messages in thread
From: Dan Nicolaescu @ 2008-12-11 17:33 UTC (permalink / raw)
To: dhruva; +Cc: Emacs Devel
dhruva <dhruvakm@gmail.com> 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 <http://www.gnu.org/licens
> # define CLOSE_SOCKET close
> # define INITIALIZE()
>
> +#ifndef WCONTINUED
> +#define WCONTINUED 8
> +#endif
> +
> #endif /* !WINDOWSNT */
I checked in your change. Thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-12-11 17:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-11 4:44 build failure on gnu/linux (very old system though) dhruva
2008-12-11 17:33 ` Dan Nicolaescu
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).