From 7fd8c501a0de9e2f52a3ba6989646e3aa391649f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 12 Mar 2013 22:04:46 -0700 Subject: [PATCH] * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out. Include unconditionally, as that works elsewhere and is simpler here. Include if DARWIN_OS || __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin and FreeBSD now. --- src/ChangeLog | 8 ++++++++ src/sysdep.c | 7 +++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 8ae25e6e61..c0e6bd93fd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +2013-03-13 Paul Eggert + + * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out. + Include unconditionally, as that works elsewhere and + is simpler here. Include if DARWIN_OS || + __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin + and FreeBSD now. + 2013-03-11 Paul Eggert * insdel.c (adjust_after_replace): Use bool for boolean. diff --git a/src/sysdep.c b/src/sysdep.c index fe6371623a..b99f179210 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -38,9 +38,8 @@ along with GNU Emacs. If not, see . */ #include "sysselect.h" #include "blockinput.h" -#ifdef BSD_SYSTEM -#include -#include +#if defined DARWIN_OS || defined __FreeBSD__ +# include #endif #ifdef __FreeBSD__ @@ -69,9 +68,9 @@ along with GNU Emacs. If not, see . */ #ifdef MSDOS /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */ #include "msdos.h" -#include #endif +#include #include #include -- 2.20.1