diff options
| author | Eli Zaretskii | 2012-06-30 18:55:27 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2012-06-30 18:55:27 +0300 |
| commit | c9240d7a6eb3d8aaca76cd3abc8f099b6ecaff0a (patch) | |
| tree | c230c2d0e84580f38fe44803b46e149e4149b739 /src/sysselect.h | |
| parent | b3218de111201a7b19592f4176057b03749d55a0 (diff) | |
| parent | 0d23c240ea378d9a29042266216f4cf25151a04d (diff) | |
| download | emacs-c9240d7a6eb3d8aaca76cd3abc8f099b6ecaff0a.tar.gz emacs-c9240d7a6eb3d8aaca76cd3abc8f099b6ecaff0a.zip | |
Adapt the MS-DOS build to the latest changes.
msdos/mainmake.v2 (bootstrap-clean): Do a maintainer-clean in lib, not
bootstrap-clean (which doesn't exist).
msdos/inttypes.h (PRIuMAX) [__DJGPP__ < 2.04]: Define to "llu".
msdos/sedleim.inp (MKDIR_P): Edit to DOS "md" command.
msdos/sed1v2.inp: (LIB_CLOCK_GETTIME): Edit to empty.
Remove lines that invoke PAXCTL.
(clean): Fix recipe not to run Unixy shell commands.
msdos/sed2v2.inp (GETTIMEOFDAY_TIMEZONE): Edit to 'struct timezone'.
(HAVE_STRNCASECMP): Edit to 1.
msdos/sed3v2.inp (LIB_CLOCK_GETTIME): Edit to empty.
(C_SWITCH_SYSTEM): Add "-I../msdos".
msdos/sedlibmk.inp (GNULIB_GETTIMEOFDAY, GNULIB_PSELECT)
(GNULIB_SELECT, HAVE_STRUCT_TIMEVAL, HAVE_SYS_SELECT_H)
(HAVE_SYS_TIME_H, NEXT_AS_FIRST_DIRECTIVE_SYS_SELECT_H)
(NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H, NEXT_SYS_SELECT_H)
(NEXT_SYS_TIME_H, REPLACE_GETTIMEOFDAY, REPLACE_PSELECT)
(REPLACE_STRUCT_TIMEVAL): Edit to appropriate values.
(BUILT_SOURCES): Edit out sys/select.h and sys/time.h.
(mostlyclean-local, distclean-generic): Fix recipe not to run
Unixy shell commands.
src/sysselect.h [DOS_NT]: Don't include sys/select.h.
src/sysselect.h (pselect) [!HAVE_PSELECT]: Redirect to sys_select.
src/sysdep.c: Don't include dos.h and dosfns.h.
src/process.c (sys_select):
src/msdos.c (sys_select): Accept one more argument and ignore it.
src/msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
adapt data types and code to that.
src/dosfns.c:
src/msdos.c (gettime, settime): Define away the prototypes in dos.h,
which clashes with the gnulib function of the same name.
src/ w32proc.c (sys_select): Accept and ignore one more argument.
src/w32.c (emacs_gnutls_pull): Call select with one more argument.
lisp/emacs-lisp/timer.el (timer-until): Subtract results of
float-time, instead of taking float-time of the result of
time-subtract, since float-time signals an error for negative time
arguments.
Diffstat (limited to 'src/sysselect.h')
| -rw-r--r-- | src/sysselect.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sysselect.h b/src/sysselect.h index 328372d427c..2dbbede2bff 100644 --- a/src/sysselect.h +++ b/src/sysselect.h | |||
| @@ -19,7 +19,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 19 | #if defined (DARWIN_OS) | 19 | #if defined (DARWIN_OS) |
| 20 | #undef init_process | 20 | #undef init_process |
| 21 | #endif | 21 | #endif |
| 22 | #ifndef WINDOWSNT | 22 | #ifndef DOS_NT |
| 23 | #include <sys/select.h> | 23 | #include <sys/select.h> |
| 24 | #endif | 24 | #endif |
| 25 | #if defined (DARWIN_OS) | 25 | #if defined (DARWIN_OS) |
| @@ -52,3 +52,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 52 | #if !defined (HAVE_SELECT) | 52 | #if !defined (HAVE_SELECT) |
| 53 | #define select sys_select | 53 | #define select sys_select |
| 54 | #endif | 54 | #endif |
| 55 | |||
| 56 | #ifdef MSDOS | ||
| 57 | #define pselect sys_select | ||
| 58 | #endif | ||