]> git.eshelyaron.com Git - emacs.git/commitdiff
* sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 13 Mar 2013 05:04:46 +0000 (22:04 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 13 Mar 2013 05:04:46 +0000 (22:04 -0700)
Include <sys/param.h> unconditionally, as that works elsewhere and
is simpler here.  Include <sys/sysctl.h> if DARWIN_OS ||
__FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
and FreeBSD now.

src/ChangeLog
src/sysdep.c

index 8ae25e6e612067083d9891ff60ecc49cf13ac511..c0e6bd93fd04346632740f140ce38b31207489a4 100644 (file)
@@ -1,3 +1,11 @@
+2013-03-13  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
+       Include <sys/param.h> unconditionally, as that works elsewhere and
+       is simpler here.  Include <sys/sysctl.h> if DARWIN_OS ||
+       __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
+       and FreeBSD now.
+
 2013-03-11  Paul Eggert  <eggert@cs.ucla.edu>
 
        * insdel.c (adjust_after_replace): Use bool for boolean.
index fe6371623a91c563eea63f9f94731d7f7a4fe8cf..b99f179210c788b120ea1566e9f94653c1a308fe 100644 (file)
@@ -38,9 +38,8 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include "sysselect.h"
 #include "blockinput.h"
 
-#ifdef BSD_SYSTEM
-#include <sys/param.h>
-#include <sys/sysctl.h>
+#if defined DARWIN_OS || defined __FreeBSD__
+# include <sys/sysctl.h>
 #endif
 
 #ifdef __FreeBSD__
@@ -69,9 +68,9 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 #ifdef MSDOS   /* Demacs 1.1.2 91/10/20 Manabu Higashida, MW Aug 1993 */
 #include "msdos.h"
-#include <sys/param.h>
 #endif
 
+#include <sys/param.h>
 #include <sys/file.h>
 #include <fcntl.h>