Mercurial > hg > xemacs-beta
view src/s/mach-bsd4-3.h @ 531:0493e9f3c27f
[xemacs-hg @ 2001-05-12 11:16:12 by ben]
event-msw.c: eliminate cygwin warnings.
dired.c, syswindows.h, win32.c: find the Net* functions the hard way to avoid errors on win 9x.
find-paths.el: fix error with null EXCLUDE-REGEXP.
font-lock.el: fix problem reported by hrvoje with buffers starting with a space.
lib-complete.el: add a variable to control where `find-library' looks, analogous to `find-function-source-path'.
etags.c: new version from Francesco.
Makefile.in.in: i'm getting real tired of incomplete commits. is this getting worse or something?
author | ben |
---|---|
date | Sat, 12 May 2001 11:16:25 +0000 |
parents | 3ecd8885ac67 |
children | c90385e49231 |
line wrap: on
line source
/* Synched up with: FSF 19.31. */ /* I don't care if this doesn't do more than including bsd4-3.h; Mach is not bsd4-3 and the moment you forget it chances are that you're in deep shit. */ #include "bsd4-3.h" /* The rest of this stuff is XEmacs additions. */ /* SYSTEM_TYPE should indicate the kind of system you are using. It sets the Lisp variable system-type. */ #undef SYSTEM_TYPE #define SYSTEM_TYPE "mach" /* Don't send signals to subprocesses by "typing" special chars at them. */ #undef SIGNALS_VIA_CHARACTERS /* XEmacs change */ /* unistd.h defines _POSIX_VERSION, which leads some things to believe that _POSIX_PATH_MAX should be defined. Unfortunately, it isn't. */ #ifndef NOT_C_CODE #include <sys/param.h> #define _POSIX_PATH_MAX MAXPATHLEN #endif #ifndef NOT_C_CODE typedef int pid_t; /* XEmacs change */ typedef unsigned short mode_t; #endif /* NOT_C_CODE */ #if (defined(i386) || defined(ibmrt)) /* use drem() instead of fmod() -- this is a BUG in the compiler runtime. */ # define USE_DREM #endif