diff options
| author | Kenichi Handa | 2012-08-16 21:25:17 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2012-08-16 21:25:17 +0900 |
| commit | d75ffb4ed0b2e72a9361a07d16a5c884a9459728 (patch) | |
| tree | 8ac5a6a8ae033fef7fbc7fb7b09a703ef4b0ed5b /src/s | |
| parent | 69c41c4070c86baac11a627e9c3d366420aeb7cc (diff) | |
| parent | 250c8ab9b8f6322959fa3122db83944c30c3894b (diff) | |
| download | emacs-d75ffb4ed0b2e72a9361a07d16a5c884a9459728.tar.gz emacs-d75ffb4ed0b2e72a9361a07d16a5c884a9459728.zip | |
merge trunk
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/README | 8 | ||||
| -rw-r--r-- | src/s/aix4-2.h | 21 | ||||
| -rw-r--r-- | src/s/darwin.h | 34 | ||||
| -rw-r--r-- | src/s/freebsd.h | 22 | ||||
| -rw-r--r-- | src/s/gnu-linux.h | 22 | ||||
| -rw-r--r-- | src/s/hpux10-20.h | 27 | ||||
| -rw-r--r-- | src/s/irix6-5.h | 32 | ||||
| -rw-r--r-- | src/s/ms-w32.h | 436 | ||||
| -rw-r--r-- | src/s/msdos.h | 118 | ||||
| -rw-r--r-- | src/s/netbsd.h | 24 | ||||
| -rw-r--r-- | src/s/sol2-6.h | 21 | ||||
| -rw-r--r-- | src/s/template.h | 53 | ||||
| -rw-r--r-- | src/s/unixware.h | 20 | ||||
| -rw-r--r-- | src/s/usg5-4-common.h | 54 |
14 files changed, 0 insertions, 892 deletions
diff --git a/src/s/README b/src/s/README deleted file mode 100644 index c02097e257d..00000000000 --- a/src/s/README +++ /dev/null | |||
| @@ -1,8 +0,0 @@ | |||
| 1 | This directory contains C header files containing | ||
| 2 | operating-system-specific definitions. Each file describes a | ||
| 3 | particular operating system. The emacs configuration script edits | ||
| 4 | ../config.h to include the appropriate one of these files, and then | ||
| 5 | each emacs source file includes config.h. | ||
| 6 | |||
| 7 | template.h is a generic template for system descriptions; it describes | ||
| 8 | the parameters a system file can specify. | ||
diff --git a/src/s/aix4-2.h b/src/s/aix4-2.h deleted file mode 100644 index 6c881a7fb8c..00000000000 --- a/src/s/aix4-2.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright (C) 1999, 2001-2012 Free Software Foundation, Inc. | ||
| 3 | |||
| 4 | This file is part of GNU Emacs. | ||
| 5 | |||
| 6 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation, either version 3 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 18 | |||
| 19 | /* Perry Smith <pedz@ddivt1.austin.ibm.com> says these are correct. */ | ||
| 20 | #undef sigmask | ||
| 21 | |||
diff --git a/src/s/darwin.h b/src/s/darwin.h deleted file mode 100644 index 20d576e4986..00000000000 --- a/src/s/darwin.h +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | /* System description header file for Darwin (Mac OS X). | ||
| 2 | |||
| 3 | Copyright (C) 2001-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | /* Definitions for how to compile & link. */ | ||
| 21 | #ifdef emacs | ||
| 22 | #define malloc unexec_malloc | ||
| 23 | #define realloc unexec_realloc | ||
| 24 | #define free unexec_free | ||
| 25 | /* Don't use posix_memalign because it is not compatible with unexmacosx.c. */ | ||
| 26 | #undef HAVE_POSIX_MEMALIGN | ||
| 27 | #endif | ||
| 28 | |||
| 29 | /* The following solves the problem that Emacs hangs when evaluating | ||
| 30 | (make-comint "test0" "/nodir/nofile" nil "") when /nodir/nofile | ||
| 31 | does not exist. Also, setsid is not allowed in the vfork child's | ||
| 32 | context as of Darwin 9/Mac OS X 10.5. */ | ||
| 33 | #undef HAVE_WORKING_VFORK | ||
| 34 | #define vfork fork | ||
diff --git a/src/s/freebsd.h b/src/s/freebsd.h deleted file mode 100644 index 9177403f426..00000000000 --- a/src/s/freebsd.h +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | /* System description header for FreeBSD systems. | ||
| 2 | |||
| 3 | Copyright (C) 1994-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | Author: Shawn M. Carey | ||
| 6 | (according to authors.el) | ||
| 7 | |||
| 8 | This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | it under the terms of the GNU General Public License as published by | ||
| 12 | the Free Software Foundation, either version 3 of the License, or | ||
| 13 | (at your option) any later version. | ||
| 14 | |||
| 15 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | GNU General Public License for more details. | ||
| 19 | |||
| 20 | You should have received a copy of the GNU General Public License | ||
| 21 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 22 | |||
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h deleted file mode 100644 index 2847fd6d19c..00000000000 --- a/src/s/gnu-linux.h +++ /dev/null | |||
| @@ -1,22 +0,0 @@ | |||
| 1 | /* This file is the configuration file for Linux-based GNU systems | ||
| 2 | |||
| 3 | Copyright (C) 1985-1986, 1992, 1994, 1996, 1999, 2001-2012 | ||
| 4 | Free Software Foundation, Inc. | ||
| 5 | |||
| 6 | This file was put together by Michael K. Johnson and Rik Faith. | ||
| 7 | |||
| 8 | This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | it under the terms of the GNU General Public License as published by | ||
| 12 | the Free Software Foundation, either version 3 of the License, or | ||
| 13 | (at your option) any later version. | ||
| 14 | |||
| 15 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | GNU General Public License for more details. | ||
| 19 | |||
| 20 | You should have received a copy of the GNU General Public License | ||
| 21 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 22 | |||
diff --git a/src/s/hpux10-20.h b/src/s/hpux10-20.h deleted file mode 100644 index 94b46a715ea..00000000000 --- a/src/s/hpux10-20.h +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | /* System description file for hpux version 10.20. | ||
| 2 | |||
| 3 | Copyright (C) 1999, 2001-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | /* We have to go this route, rather than hpux9's approach of renaming the | ||
| 21 | functions via macros. The system's stdlib.h has fully prototyped | ||
| 22 | declarations, which yields a conflicting definition of srand48; it | ||
| 23 | tries to redeclare what was once srandom to be srand48. So we go | ||
| 24 | with HAVE_LRAND48 being defined. | ||
| 25 | Note we also undef HAVE_RANDOM via configure. */ | ||
| 26 | #undef srandom | ||
| 27 | #undef random | ||
diff --git a/src/s/irix6-5.h b/src/s/irix6-5.h deleted file mode 100644 index 9b215845461..00000000000 --- a/src/s/irix6-5.h +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | /* Definitions file for GNU Emacs running on Silicon Graphics Irix system 6.5. | ||
| 2 | |||
| 3 | Copyright (C) 1999-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | #include "usg5-4-common.h" | ||
| 21 | |||
| 22 | #undef _longjmp /* use system versions, not conservative aliases */ | ||
| 23 | #undef _setjmp | ||
| 24 | |||
| 25 | #ifdef emacs | ||
| 26 | char *_getpty(); | ||
| 27 | #endif | ||
| 28 | |||
| 29 | #undef SA_RESTART /* not the same as defining BROKEN_SA_RESTART */ | ||
| 30 | |||
| 31 | #undef TIOCSIGSEND /* defined in usg5-4-common.h */ | ||
| 32 | |||
diff --git a/src/s/ms-w32.h b/src/s/ms-w32.h deleted file mode 100644 index 7128d8a069d..00000000000 --- a/src/s/ms-w32.h +++ /dev/null | |||
| @@ -1,436 +0,0 @@ | |||
| 1 | /* System description file for Windows NT. | ||
| 2 | |||
| 3 | Copyright (C) 1993-1995, 2001-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | /* Define symbols to identify the version of Unix this is. | ||
| 21 | Define all the symbols that apply correctly. */ | ||
| 22 | |||
| 23 | #ifndef WINDOWSNT | ||
| 24 | #define WINDOWSNT | ||
| 25 | #endif | ||
| 26 | #ifndef DOS_NT | ||
| 27 | #define DOS_NT /* MSDOS or WINDOWSNT */ | ||
| 28 | #endif | ||
| 29 | |||
| 30 | /* #undef const */ | ||
| 31 | |||
| 32 | /* If you are compiling with a non-C calling convention but need to | ||
| 33 | declare vararg routines differently, put it here. */ | ||
| 34 | #define _VARARGS_ __cdecl | ||
| 35 | |||
| 36 | /* If you are providing a function to something that will call the | ||
| 37 | function back (like a signal handler and signal, or main) its calling | ||
| 38 | convention must be whatever standard the libraries expect. */ | ||
| 39 | #define _CALLBACK_ __cdecl | ||
| 40 | |||
| 41 | /* Define HAVE_TIMEVAL if the system supports the BSD style clock values. | ||
| 42 | Look in <sys/time.h> for a timeval structure. */ | ||
| 43 | #define HAVE_TIMEVAL 1 | ||
| 44 | |||
| 45 | /* But our select implementation doesn't allow us to make non-blocking | ||
| 46 | connects. So until that is fixed, this is necessary: */ | ||
| 47 | #define BROKEN_NON_BLOCKING_CONNECT 1 | ||
| 48 | |||
| 49 | /* And the select implementation does 1-byte read-ahead waiting | ||
| 50 | for received packets, so datagrams are broken too. */ | ||
| 51 | #define BROKEN_DATAGRAM_SOCKETS 1 | ||
| 52 | |||
| 53 | #define MAIL_USE_SYSTEM_LOCK 1 | ||
| 54 | |||
| 55 | /* If the character used to separate elements of the executable path | ||
| 56 | is not ':', #define this to be the appropriate character constant. */ | ||
| 57 | #define SEPCHAR ';' | ||
| 58 | |||
| 59 | /* Define to 1 if GCC-style __attribute__ ((__aligned__ (expr))) works. */ | ||
| 60 | #ifdef __GNUC__ | ||
| 61 | #define HAVE_ATTRIBUTE_ALIGNED 1 | ||
| 62 | #endif | ||
| 63 | |||
| 64 | /* Define to 1 if strtold conforms to C99. */ | ||
| 65 | #ifdef __GNUC__ | ||
| 66 | #define HAVE_C99_STRTOLD 1 | ||
| 67 | #endif | ||
| 68 | |||
| 69 | #if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 8)) | ||
| 70 | #define HAVE___BUILTIN_UNWIND_INIT 1 | ||
| 71 | #endif | ||
| 72 | |||
| 73 | /* ============================================================ */ | ||
| 74 | |||
| 75 | /* Here, add any special hacks needed to make Emacs work on this | ||
| 76 | system. For example, you might define certain system call names | ||
| 77 | that don't exist on your system, or that do different things on | ||
| 78 | your system and must be used only through an encapsulation (which | ||
| 79 | you should place, by convention, in sysdep.c). */ | ||
| 80 | |||
| 81 | /* Define this to be the separator between devices and paths. */ | ||
| 82 | #define DEVICE_SEP ':' | ||
| 83 | |||
| 84 | /* We'll support either convention on NT. */ | ||
| 85 | #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\') | ||
| 86 | #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_)) | ||
| 87 | |||
| 88 | #ifdef __GNUC__ | ||
| 89 | #ifndef __cplusplus | ||
| 90 | #undef inline | ||
| 91 | #endif | ||
| 92 | #else /* MSVC */ | ||
| 93 | #define inline __inline | ||
| 94 | #endif | ||
| 95 | |||
| 96 | #ifdef __GNUC__ | ||
| 97 | # define restrict __restrict__ | ||
| 98 | #else | ||
| 99 | # define restrict | ||
| 100 | #endif | ||
| 101 | |||
| 102 | /* `mode_t' is not defined for MSVC. Define. */ | ||
| 103 | #ifdef _MSC_VER | ||
| 104 | typedef unsigned short mode_t; | ||
| 105 | #endif | ||
| 106 | |||
| 107 | /* A va_copy replacement for MSVC. */ | ||
| 108 | #ifdef _MSC_VER | ||
| 109 | # ifdef _WIN64 | ||
| 110 | # ifndef va_copy /* Need to be checked (?) */ | ||
| 111 | # define va_copy(d,s) ((d) = (s)) | ||
| 112 | # endif | ||
| 113 | # else /* not _WIN64 */ | ||
| 114 | # define va_copy(d,s) ((d) = (s)) | ||
| 115 | # endif /* not _WIN64 */ | ||
| 116 | #endif /* _MSC_VER */ | ||
| 117 | |||
| 118 | #ifndef WINDOWSNT | ||
| 119 | /* Some of the files of Emacs which are intended for use with other | ||
| 120 | programs assume that if you have a config.h file, you must declare | ||
| 121 | the type of getenv. */ | ||
| 122 | extern char *getenv (); | ||
| 123 | #endif | ||
| 124 | |||
| 125 | #ifdef HAVE_STRINGS_H | ||
| 126 | #include "strings.h" | ||
| 127 | #endif | ||
| 128 | #include <sys/types.h> | ||
| 129 | |||
| 130 | #ifdef _MSC_VER | ||
| 131 | typedef unsigned long sigset_t; | ||
| 132 | typedef int ssize_t; | ||
| 133 | #endif | ||
| 134 | |||
| 135 | struct sigaction { | ||
| 136 | int sa_flags; | ||
| 137 | void (*sa_handler)(int); | ||
| 138 | sigset_t sa_mask; | ||
| 139 | }; | ||
| 140 | #define SIG_BLOCK 1 | ||
| 141 | #define SIG_SETMASK 2 | ||
| 142 | #define SIG_UNBLOCK 3 | ||
| 143 | |||
| 144 | /* The null device on Windows NT. */ | ||
| 145 | #define NULL_DEVICE "NUL:" | ||
| 146 | |||
| 147 | #ifndef MAXPATHLEN | ||
| 148 | #define MAXPATHLEN _MAX_PATH | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #ifdef HAVE_NTGUI | ||
| 152 | #define HAVE_WINDOW_SYSTEM 1 | ||
| 153 | #define HAVE_MENUS 1 | ||
| 154 | #endif | ||
| 155 | |||
| 156 | /* Get some redefinitions in place. */ | ||
| 157 | |||
| 158 | #ifdef emacs | ||
| 159 | |||
| 160 | #ifdef _MSC_VER | ||
| 161 | #include <sys/timeb.h> | ||
| 162 | #include <sys/stat.h> | ||
| 163 | #include <signal.h> | ||
| 164 | |||
| 165 | /* MSVC gets link-time errors without these redirections. */ | ||
| 166 | #define fstat(a, b) sys_fstat(a, b) | ||
| 167 | #define stat(a, b) sys_stat(a, b) | ||
| 168 | #define utime sys_utime | ||
| 169 | #endif | ||
| 170 | |||
| 171 | /* Calls that are emulated or shadowed. */ | ||
| 172 | #undef access | ||
| 173 | #define access sys_access | ||
| 174 | #undef chdir | ||
| 175 | #define chdir sys_chdir | ||
| 176 | #undef chmod | ||
| 177 | #define chmod sys_chmod | ||
| 178 | #define chown sys_chown | ||
| 179 | #undef close | ||
| 180 | #define close sys_close | ||
| 181 | #undef creat | ||
| 182 | #define creat sys_creat | ||
| 183 | #define ctime sys_ctime | ||
| 184 | #undef dup | ||
| 185 | #define dup sys_dup | ||
| 186 | #undef dup2 | ||
| 187 | #define dup2 sys_dup2 | ||
| 188 | #define fopen sys_fopen | ||
| 189 | #define link sys_link | ||
| 190 | #define localtime sys_localtime | ||
| 191 | #define mkdir sys_mkdir | ||
| 192 | #undef mktemp | ||
| 193 | #define mktemp sys_mktemp | ||
| 194 | #undef open | ||
| 195 | #define open sys_open | ||
| 196 | #define pipe sys_pipe | ||
| 197 | #undef read | ||
| 198 | #define read sys_read | ||
| 199 | #define rename sys_rename | ||
| 200 | #define rmdir sys_rmdir | ||
| 201 | #define select sys_select | ||
| 202 | #define pselect sys_select | ||
| 203 | #define sleep sys_sleep | ||
| 204 | #define strerror sys_strerror | ||
| 205 | #undef unlink | ||
| 206 | #define unlink sys_unlink | ||
| 207 | #undef write | ||
| 208 | #define write sys_write | ||
| 209 | |||
| 210 | /* Subprocess calls that are emulated. */ | ||
| 211 | #define spawnve sys_spawnve | ||
| 212 | #define wait sys_wait | ||
| 213 | #define kill sys_kill | ||
| 214 | #define signal sys_signal | ||
| 215 | |||
| 216 | /* termcap.c calls that are emulated. */ | ||
| 217 | #define tputs sys_tputs | ||
| 218 | #define tgetstr sys_tgetstr | ||
| 219 | |||
| 220 | /* cm.c calls that are emulated. */ | ||
| 221 | #define chcheckmagic sys_chcheckmagic | ||
| 222 | #define cmcostinit sys_cmcostinit | ||
| 223 | #define cmgoto sys_cmgoto | ||
| 224 | #define cmputc sys_cmputc | ||
| 225 | #define Wcm_clear sys_Wcm_clear | ||
| 226 | |||
| 227 | #endif /* emacs */ | ||
| 228 | |||
| 229 | /* Map to MSVC names. */ | ||
| 230 | #define execlp _execlp | ||
| 231 | #define execvp _execvp | ||
| 232 | #define fdopen _fdopen | ||
| 233 | #ifndef fileno | ||
| 234 | #define fileno _fileno | ||
| 235 | #endif | ||
| 236 | #define fsync _commit | ||
| 237 | #define ftruncate _chsize | ||
| 238 | #define getpid _getpid | ||
| 239 | #ifdef _MSC_VER | ||
| 240 | typedef int pid_t; | ||
| 241 | #define snprintf _snprintf | ||
| 242 | #define strtoll _strtoi64 | ||
| 243 | #endif | ||
| 244 | #define isatty _isatty | ||
| 245 | #define logb _logb | ||
| 246 | #define _longjmp longjmp | ||
| 247 | #define lseek _lseek | ||
| 248 | #define popen _popen | ||
| 249 | #define pclose _pclose | ||
| 250 | #define umask _umask | ||
| 251 | #ifndef _MSC_VER | ||
| 252 | #define utimbuf _utimbuf | ||
| 253 | #endif | ||
| 254 | #define strdup _strdup | ||
| 255 | #define strupr _strupr | ||
| 256 | #define strnicmp _strnicmp | ||
| 257 | #define stricmp _stricmp | ||
| 258 | #define tzset _tzset | ||
| 259 | |||
| 260 | /* Include time.h before redirecting tzname, since MSVC's time.h | ||
| 261 | defines _tzname to call a function, but also declares tzname a | ||
| 262 | 2-element array. Having the redirection before including the | ||
| 263 | header thus has the effect of declaring a function that returns an | ||
| 264 | array, and triggers an error message. */ | ||
| 265 | #include <time.h> | ||
| 266 | #define tzname _tzname | ||
| 267 | #if !defined (_MSC_VER) || (_MSC_VER < 1400) | ||
| 268 | #undef utime | ||
| 269 | #define utime _utime | ||
| 270 | #endif | ||
| 271 | |||
| 272 | /* 'struct timespec' is used by time-related functions in lib/ and | ||
| 273 | elsewhere, but we don't use lib/time.h where the structure is | ||
| 274 | defined. */ | ||
| 275 | struct timespec | ||
| 276 | { | ||
| 277 | time_t tv_sec; /* seconds */ | ||
| 278 | long int tv_nsec; /* nanoseconds */ | ||
| 279 | }; | ||
| 280 | |||
| 281 | /* This is hacky, but is necessary to avoid warnings about macro | ||
| 282 | redefinitions using the SDK compilers. */ | ||
| 283 | #ifndef __STDC__ | ||
| 284 | #define __STDC__ 1 | ||
| 285 | #define MUST_UNDEF__STDC__ | ||
| 286 | #endif | ||
| 287 | #include <direct.h> | ||
| 288 | #include <io.h> | ||
| 289 | #include <stdio.h> | ||
| 290 | #ifdef MUST_UNDEF__STDC__ | ||
| 291 | #undef __STDC__ | ||
| 292 | #undef MUST_UNDEF__STDC__ | ||
| 293 | #endif | ||
| 294 | |||
| 295 | /* Defines that we need that aren't in the standard signal.h. */ | ||
| 296 | #define SIGHUP 1 /* Hang up */ | ||
| 297 | #define SIGQUIT 3 /* Quit process */ | ||
| 298 | #define SIGTRAP 5 /* Trace trap */ | ||
| 299 | #define SIGKILL 9 /* Die, die die */ | ||
| 300 | #define SIGPIPE 13 /* Write on pipe with no readers */ | ||
| 301 | #define SIGALRM 14 /* Alarm */ | ||
| 302 | #define SIGCHLD 18 /* Death of child */ | ||
| 303 | |||
| 304 | #ifndef NSIG | ||
| 305 | #define NSIG 23 | ||
| 306 | #endif | ||
| 307 | |||
| 308 | /* For integration with MSDOS support. */ | ||
| 309 | #define getdisk() (_getdrive () - 1) | ||
| 310 | #ifdef emacs | ||
| 311 | #define getdefdir(_drv, _buf) ((_buf[0] = (_drv + 'A' - 1), _buf[1] = ':', _buf[2] = '/', _buf[3] = 0), 1) | ||
| 312 | #else | ||
| 313 | #define getdefdir(_drv, _buf) _getdcwd (_drv, _buf, MAXPATHLEN) | ||
| 314 | #endif | ||
| 315 | |||
| 316 | extern char *get_emacs_configuration (void); | ||
| 317 | extern char *get_emacs_configuration_options (void); | ||
| 318 | #define EMACS_CONFIGURATION get_emacs_configuration () | ||
| 319 | #define EMACS_CONFIG_OPTIONS get_emacs_configuration_options () | ||
| 320 | |||
| 321 | /* Define this so that winsock.h definitions don't get included with | ||
| 322 | windows.h. For this to have proper effect, config.h must always be | ||
| 323 | included before windows.h. */ | ||
| 324 | #define _WINSOCKAPI_ 1 | ||
| 325 | #define _WINSOCK_H | ||
| 326 | |||
| 327 | /* Prevent accidental use of features unavailable in | ||
| 328 | older Windows versions we still support. */ | ||
| 329 | #define _WIN32_WINNT 0x0400 | ||
| 330 | |||
| 331 | /* Make a leaner executable. */ | ||
| 332 | #define WIN32_LEAN_AND_MEAN 1 | ||
| 333 | |||
| 334 | /* Defines size_t and alloca (). */ | ||
| 335 | #ifdef emacs | ||
| 336 | #define malloc e_malloc | ||
| 337 | #define free e_free | ||
| 338 | #define realloc e_realloc | ||
| 339 | #define calloc e_calloc | ||
| 340 | #endif | ||
| 341 | #ifdef _MSC_VER | ||
| 342 | #define alloca _alloca | ||
| 343 | #else | ||
| 344 | #include <malloc.h> | ||
| 345 | #endif | ||
| 346 | |||
| 347 | /* stdlib.h must be included after redefining malloc & friends, but | ||
| 348 | before redefining abort. Isn't library redefinition funny? */ | ||
| 349 | #include <stdlib.h> | ||
| 350 | |||
| 351 | /* Redefine abort. */ | ||
| 352 | #ifdef HAVE_NTGUI | ||
| 353 | #define abort w32_abort | ||
| 354 | extern _Noreturn void w32_abort (void); | ||
| 355 | #endif | ||
| 356 | |||
| 357 | #include <sys/stat.h> | ||
| 358 | |||
| 359 | /* Define for those source files that do not include enough NT system files. */ | ||
| 360 | #ifndef NULL | ||
| 361 | #ifdef __cplusplus | ||
| 362 | #define NULL 0 | ||
| 363 | #else | ||
| 364 | #define NULL ((void *)0) | ||
| 365 | #endif | ||
| 366 | #endif | ||
| 367 | |||
| 368 | /* For proper declaration of environ. */ | ||
| 369 | #ifndef sys_nerr | ||
| 370 | #define sys_nerr _sys_nerr | ||
| 371 | #endif | ||
| 372 | |||
| 373 | extern int getloadavg (double *, int); | ||
| 374 | |||
| 375 | #if defined (__MINGW32__) || _MSC_VER >= 1400 | ||
| 376 | |||
| 377 | /* Define to 1 if the system has the type `long long int'. */ | ||
| 378 | # define HAVE_LONG_LONG_INT 1 | ||
| 379 | |||
| 380 | /* Define to 1 if the system has the type `unsigned long long int'. */ | ||
| 381 | # define HAVE_UNSIGNED_LONG_LONG_INT 1 | ||
| 382 | |||
| 383 | #elif _MSC_VER >= 1200 | ||
| 384 | |||
| 385 | /* Temporarily disable wider-than-pointer integers until they're tested more. | ||
| 386 | Build with CFLAGS='-DWIDE_EMACS_INT' to try them out. */ | ||
| 387 | |||
| 388 | # ifdef WIDE_EMACS_INT | ||
| 389 | |||
| 390 | /* Use pre-C99-style 64-bit integers. */ | ||
| 391 | # define EMACS_INT __int64 | ||
| 392 | # define EMACS_INT_MAX _I64_MAX | ||
| 393 | # define pI "I64" | ||
| 394 | |||
| 395 | # endif | ||
| 396 | |||
| 397 | #endif | ||
| 398 | |||
| 399 | /* We need a little extra space, see ../../lisp/loadup.el. */ | ||
| 400 | #define SYSTEM_PURESIZE_EXTRA 50000 | ||
| 401 | |||
| 402 | #define DATA_START get_data_start () | ||
| 403 | |||
| 404 | /* For unexec to work on Alpha systems, we need to put Emacs' | ||
| 405 | initialized data into a separate section from the CRT initialized | ||
| 406 | data (because the Alpha linker freely reorders data variables, even | ||
| 407 | across libraries, so our data and the CRT data get intermingled). | ||
| 408 | |||
| 409 | Starting with MSVC 5.0, we must also place the uninitialized data | ||
| 410 | into its own section. VC5 intermingles uninitialized data from the CRT | ||
| 411 | between Emacs' static uninitialized data and its public uninitialized | ||
| 412 | data. A separate .bss section for Emacs groups both static and | ||
| 413 | public uninitialized together. | ||
| 414 | |||
| 415 | Note that unexw32.c relies on this fact, and must be modified | ||
| 416 | accordingly if this section name is changed, or if this pragma is | ||
| 417 | removed. Also, obviously, all files that define initialized data | ||
| 418 | must include config.h to pick up this pragma. */ | ||
| 419 | |||
| 420 | /* Names must be < 8 bytes. */ | ||
| 421 | #ifdef _MSC_VER | ||
| 422 | #pragma data_seg("EMDATA") | ||
| 423 | #pragma bss_seg("EMBSS") | ||
| 424 | #endif | ||
| 425 | |||
| 426 | /* #define FULL_DEBUG */ | ||
| 427 | /* #define EMACSDEBUG */ | ||
| 428 | |||
| 429 | #ifdef EMACSDEBUG | ||
| 430 | extern void _DebPrint (const char *fmt, ...); | ||
| 431 | #define DebPrint(stuff) _DebPrint stuff | ||
| 432 | #else | ||
| 433 | #define DebPrint(stuff) | ||
| 434 | #endif | ||
| 435 | |||
| 436 | /* ============================================================ */ | ||
diff --git a/src/s/msdos.h b/src/s/msdos.h deleted file mode 100644 index e1d97d5cc85..00000000000 --- a/src/s/msdos.h +++ /dev/null | |||
| @@ -1,118 +0,0 @@ | |||
| 1 | /* System description file for MS-DOS | ||
| 2 | |||
| 3 | Copyright (C) 1993, 1996-1997, 2001-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | /* Note: lots of stuff here was taken from s-msdos.h in demacs. */ | ||
| 21 | |||
| 22 | |||
| 23 | /* Define symbols to identify the version of Unix this is. | ||
| 24 | Define all the symbols that apply correctly. */ | ||
| 25 | #ifndef MSDOS | ||
| 26 | #define MSDOS | ||
| 27 | #endif | ||
| 28 | |||
| 29 | #ifndef __DJGPP__ | ||
| 30 | You lose; /* Emacs for DOS must be compiled with DJGPP */ | ||
| 31 | #endif | ||
| 32 | |||
| 33 | #define DOS_NT /* MSDOS or WINDOWSNT */ | ||
| 34 | |||
| 35 | /* subprocesses should be defined if you want to have code for | ||
| 36 | asynchronous subprocesses (as used in M-x compile and M-x shell). | ||
| 37 | This is the only system that needs this. */ | ||
| 38 | #undef subprocesses | ||
| 39 | |||
| 40 | /* Here, on a separate page, add any special hacks needed to make | ||
| 41 | Emacs work on this system. For example, you might define certain | ||
| 42 | system call names that don't exist on your system, or that do | ||
| 43 | different things on your system and must be used only through an | ||
| 44 | encapsulation (which you should place, by convention, in sysdep.c). */ | ||
| 45 | |||
| 46 | /* This overrides the default value on editfns.c, since DJGPP | ||
| 47 | does not have pw->pw_gecos. */ | ||
| 48 | #define USER_FULL_NAME (getenv ("NAME")) | ||
| 49 | |||
| 50 | /* setjmp and longjmp can safely replace _setjmp and _longjmp, | ||
| 51 | but they will run slower. */ | ||
| 52 | #define _setjmp setjmp | ||
| 53 | #define _longjmp longjmp | ||
| 54 | |||
| 55 | #define _NAIVE_DOS_REGS | ||
| 56 | |||
| 57 | /* Used by emacs.c:decode_env_path. */ | ||
| 58 | #define SEPCHAR ';' | ||
| 59 | |||
| 60 | /* Used by callproc.c (and process.c, but in the part not compiled on | ||
| 61 | MSDOS). The default is defined on process.h. */ | ||
| 62 | #define NULL_DEVICE "nul" | ||
| 63 | |||
| 64 | /* Used by floatfns.c. */ | ||
| 65 | #define HAVE_INVERSE_HYPERBOLIC | ||
| 66 | #define FLOAT_CHECK_DOMAIN | ||
| 67 | |||
| 68 | /* Start of gnulib-related stuff */ | ||
| 69 | |||
| 70 | /* lib/ftoastr.c wants strtold, but DJGPP only has _strtold. DJGPP > | ||
| 71 | 2.03 has it, but it also has _strtold as a stub that jumps to | ||
| 72 | strtold, so use _strtold in all versions. */ | ||
| 73 | #define strtold _strtold | ||
| 74 | |||
| 75 | #if __DJGPP__ > 2 || __DJGPP_MINOR__ > 3 | ||
| 76 | # define HAVE_LSTAT 1 | ||
| 77 | #else | ||
| 78 | # define lstat stat | ||
| 79 | #endif | ||
| 80 | |||
| 81 | /* End of gnulib-related stuff. */ | ||
| 82 | |||
| 83 | /* When $TERM is "internal" then this is substituted: */ | ||
| 84 | #define INTERNAL_TERMINAL "pc|bios|IBM PC with color display:\ | ||
| 85 | :co#80:li#25:Co#16:pa#256:km:ms:cm=<CM>:cl=<CL>:ce=<CE>:\ | ||
| 86 | :se=</SO>:so=<SO>:us=<UL>:ue=</UL>:md=<BD>:mh=<DIM>:mb=<BL>:mr=<RV>:me=<NV>:\ | ||
| 87 | :AB=<BG %d>:AF=<FG %d>:op=<DefC>:" | ||
| 88 | |||
| 89 | /* Define this to a function (Fdowncase, Fupcase) if your file system | ||
| 90 | likes that. */ | ||
| 91 | #define FILE_SYSTEM_CASE Fmsdos_downcase_filename | ||
| 92 | |||
| 93 | /* Define this to be the separator between devices and paths. Used by | ||
| 94 | lisp.h to define IS_DEVICE_SEP. */ | ||
| 95 | #define DEVICE_SEP ':' | ||
| 96 | |||
| 97 | /* We'll support either convention of slashes on MSDOS. */ | ||
| 98 | #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\') | ||
| 99 | #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_)) | ||
| 100 | |||
| 101 | /* Define one of these for easier conditionals. */ | ||
| 102 | #ifdef HAVE_X_WINDOWS | ||
| 103 | /* We need a little extra space, see ../../lisp/loadup.el and the | ||
| 104 | commentary below, in the non-X branch. The 140KB number was | ||
| 105 | measured on GNU/Linux and on MS-Windows. */ | ||
| 106 | #define SYSTEM_PURESIZE_EXTRA (-170000+140000) | ||
| 107 | #else | ||
| 108 | /* We need a little extra space, see ../../lisp/loadup.el. | ||
| 109 | As of 20091024, DOS-specific files use up 62KB of pure space. But | ||
| 110 | overall, we end up wasting 130KB of pure space, because | ||
| 111 | BASE_PURESIZE starts at 1.47MB, while we need only 1.3MB (including | ||
| 112 | non-DOS specific files and load history; the latter is about 55K, | ||
| 113 | but depends on the depth of the top-level Emacs directory in the | ||
| 114 | directory tree). Given the unknown policy of different DPMI | ||
| 115 | hosts regarding loading of untouched pages, I'm not going to risk | ||
| 116 | enlarging Emacs footprint by another 100+ KBytes. */ | ||
| 117 | #define SYSTEM_PURESIZE_EXTRA (-170000+65000) | ||
| 118 | #endif | ||
diff --git a/src/s/netbsd.h b/src/s/netbsd.h deleted file mode 100644 index 7a571ee8116..00000000000 --- a/src/s/netbsd.h +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | /* s/ file for netbsd system. | ||
| 2 | |||
| 3 | Copyright (C) 2001-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | /* Greg A. Woods <woods@weird.com> says we must include signal.h | ||
| 21 | before syssignal.h is included, to work around interface conflicts | ||
| 22 | that are handled with CPP __RENAME() macro in signal.h. */ | ||
| 23 | #include <signal.h> | ||
| 24 | |||
diff --git a/src/s/sol2-6.h b/src/s/sol2-6.h deleted file mode 100644 index 3bed55598b7..00000000000 --- a/src/s/sol2-6.h +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | /* Definitions file for GNU Emacs running on Solaris 2.6. | ||
| 2 | |||
| 3 | Copyright (C) 1999-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | #include "usg5-4-common.h" | ||
| 21 | |||
diff --git a/src/s/template.h b/src/s/template.h deleted file mode 100644 index e6f43896aac..00000000000 --- a/src/s/template.h +++ /dev/null | |||
| @@ -1,53 +0,0 @@ | |||
| 1 | /* Template for system description header files. | ||
| 2 | This file describes the parameters that system description files | ||
| 3 | should define or not. | ||
| 4 | |||
| 5 | Copyright (C) 1985-1986, 1992, 1999, 2001-2012 Free Software Foundation, Inc. | ||
| 6 | |||
| 7 | This file is part of GNU Emacs. | ||
| 8 | |||
| 9 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 10 | it under the terms of the GNU General Public License as published by | ||
| 11 | the Free Software Foundation, either version 3 of the License, or | ||
| 12 | (at your option) any later version. | ||
| 13 | |||
| 14 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | GNU General Public License for more details. | ||
| 18 | |||
| 19 | You should have received a copy of the GNU General Public License | ||
| 20 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 21 | |||
| 22 | /* subprocesses should be undefined if you do NOT want to | ||
| 23 | have code for asynchronous subprocesses | ||
| 24 | (as used in M-x compile and M-x shell). | ||
| 25 | Currently only MSDOS does not support this. */ | ||
| 26 | |||
| 27 | /* #undef subprocesses */ | ||
| 28 | |||
| 29 | /* If the character used to separate elements of the executable path | ||
| 30 | is not ':', #define this to be the appropriate character constant. */ | ||
| 31 | /* #define SEPCHAR ':' */ | ||
| 32 | |||
| 33 | /* ============================================================ */ | ||
| 34 | |||
| 35 | /* Here, add any special hacks needed to make Emacs work on this | ||
| 36 | system. For example, you might define certain system call names | ||
| 37 | that don't exist on your system, or that do different things on | ||
| 38 | your system and must be used only through an encapsulation (which | ||
| 39 | you should place, by convention, in sysdep.c). */ | ||
| 40 | |||
| 41 | /* ============================================================ */ | ||
| 42 | |||
| 43 | /* After adding support for a new system, modify the large case | ||
| 44 | statement in configure.ac to recognize reasonable | ||
| 45 | configuration names, and add a description of the system to | ||
| 46 | `etc/MACHINES'. | ||
| 47 | |||
| 48 | Check for any tests of $opsys in configure.ac, and add an entry | ||
| 49 | for the new system if needed. | ||
| 50 | |||
| 51 | If you've just fixed a problem in an existing configuration file, | ||
| 52 | you should also check `etc/MACHINES' to make sure its descriptions | ||
| 53 | of known problems in that configuration should be updated. */ | ||
diff --git a/src/s/unixware.h b/src/s/unixware.h deleted file mode 100644 index 59c74a56f4e..00000000000 --- a/src/s/unixware.h +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | /* s/ file for Unixware. | ||
| 2 | |||
| 3 | Copyright (C) 1999-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 19 | |||
| 20 | #include "usg5-4-common.h" | ||
diff --git a/src/s/usg5-4-common.h b/src/s/usg5-4-common.h deleted file mode 100644 index 6ead01d3712..00000000000 --- a/src/s/usg5-4-common.h +++ /dev/null | |||
| @@ -1,54 +0,0 @@ | |||
| 1 | /* Definitions file for GNU Emacs running on AT&T's System V Release 4 | ||
| 2 | |||
| 3 | Copyright (C) 1987, 1990, 1999-2012 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | Written by James Van Artsdalen of Dell Computer Corp. james@bigtex.cactus.org. | ||
| 6 | Subsequently improved for Dell 2.2 by Eric S. Raymond <esr@snark.thyrsus.com>. | ||
| 7 | |||
| 8 | This file is part of GNU Emacs. | ||
| 9 | |||
| 10 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 11 | it under the terms of the GNU General Public License as published by | ||
| 12 | the Free Software Foundation, either version 3 of the License, or | ||
| 13 | (at your option) any later version. | ||
| 14 | |||
| 15 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 18 | GNU General Public License for more details. | ||
| 19 | |||
| 20 | You should have received a copy of the GNU General Public License | ||
| 21 | along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | ||
| 22 | |||
| 23 | /* setjmp and longjmp can safely replace _setjmp and _longjmp, | ||
| 24 | but they will run slower. */ | ||
| 25 | #define _setjmp setjmp | ||
| 26 | #define _longjmp longjmp | ||
| 27 | |||
| 28 | /* Get FIONREAD from <sys/filio.h>. Get <sys/ttold.h> to get struct tchars. | ||
| 29 | But get <termio.h> first to make sure ttold.h doesn't interfere. */ | ||
| 30 | #include <sys/wait.h> | ||
| 31 | |||
| 32 | #ifdef emacs | ||
| 33 | #include <sys/filio.h> | ||
| 34 | #include <termio.h> | ||
| 35 | #include <sys/ttold.h> | ||
| 36 | #include <signal.h> | ||
| 37 | #include <sys/stream.h> | ||
| 38 | #include <sys/stropts.h> | ||
| 39 | #include <sys/termios.h> | ||
| 40 | #endif | ||
| 41 | |||
| 42 | /* It is possible to receive SIGCHLD when there are no children | ||
| 43 | waiting, because a previous waitsys(2) cleaned up the carcass of child | ||
| 44 | without clearing the SIGCHLD pending info. So, use a non-blocking | ||
| 45 | wait3 instead, which maps to waitpid(2) in SysVr4. */ | ||
| 46 | #define wait3(status, options, rusage) \ | ||
| 47 | waitpid ((pid_t) -1, (status), (options)) | ||
| 48 | #define WRETCODE(w) (w >> 8) | ||
| 49 | |||
| 50 | /* TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY | ||
| 51 | subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and | ||
| 52 | this is all we need. */ | ||
| 53 | #define TIOCSIGSEND TIOCSIGNAL | ||
| 54 | |||