all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: Maya <maya.negeta@gmail.com>, emacs-devel@gnu.org
Subject: Re: Fwd: pid_t causes compile error in FreeBSD 	system
Date: Mon, 24 Apr 2006 03:36:40 -0400	[thread overview]
Message-ID: <87odyrv320.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <E1FX2oA-0004qm-4M@fencepost.gnu.org> (Richard Stallman's message of "Fri, 21 Apr 2006 17:04:54 -0400")

> He seems to be using the latest sources, so I hope someone can fix this.

Let's see.

> http://cvs.savannah.gnu.org/viewcvs/emacs/src/process.h?root=emacs#rev1.33
> This change causes compile error in FreeBSD system.
> Compiler cannot find pid_t.

Does the patch below fix the problem?


        Stefan


--- process.h	08 avr 2006 10:23:15 -0400	1.33
+++ process.h	24 avr 2006 03:35:20 -0400	
@@ -19,6 +19,12 @@
 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 Boston, MA 02110-1301, USA.  */
 
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 /* This structure records information about a subprocess
    or network connection.

  reply	other threads:[~2006-04-24  7:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-04-21 21:04 [maya.negeta@gmail.com: pid_t causes compile error in FreeBSD system] Richard Stallman
2006-04-24  7:36 ` Stefan Monnier [this message]
     [not found]   ` <4b50d1850604240553oe3ab50aqb263c94281aeff0f@mail.gmail.com>
2006-04-24 13:10     ` Fwd: pid_t causes compile error in FreeBSD system Stefan Monnier

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=87odyrv320.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=emacs-devel@gnu.org \
    --cc=maya.negeta@gmail.com \
    /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.