emacs-devel
[Top][All Lists]
Advanced

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

Re: emacs-24.2.93 build problems


From: Glenn Morris
Subject: Re: emacs-24.2.93 build problems
Date: Mon, 04 Mar 2013 18:51:13 -0500
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

I tested this on a virtual OpenBSD 4.9, and it fixes the problem for me.
Please install (otherwise I will in a few hours).

list-system-processes still returns nil, so it does't do anything
useful, but it doesn't crash or do anything obviously bad.

Paul Eggert wrote:

> === modified file 'src/sysdep.c'
> --- src/sysdep.c      2013-01-11 07:47:57 +0000
> +++ src/sysdep.c      2013-03-03 00:04:08 +0000
> @@ -2649,6 +2649,13 @@ list_system_processes (void)
>  
>  #elif defined BSD_SYSTEM
>  
> +/* OpenBSD 4.9 and earlier do not have KERN_PROC.  Approximate it with
> +   KERN_PROC2.  */
> +# ifndef KERN_PROC
> +#  define KERN_PROC KERN_PROC2
> +#  define kinfo_proc kinfo_proc2
> +# endif
> +
>  Lisp_Object
>  list_system_processes (void)
>  {



reply via email to

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