1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

[dos] Do not use poll under DOS

This commit is contained in:
Witold Filipczyk 2022-06-11 22:03:10 +02:00
parent 036d68dde6
commit 5fefca2cb3

View File

@ -23,7 +23,7 @@
#include <inttypes.h> /* OMG */
#endif
#if defined(HAVE_POLL_H) && defined(HAVE_POLL) && !defined(INTERIX) && !defined(__HOS_AIX__)
#if defined(HAVE_POLL_H) && defined(HAVE_POLL) && !defined(INTERIX) && !defined(__HOS_AIX__) && !defined(CONFIG_OS_DOS)
#define USE_POLL
#include <poll.h>
#endif
@ -63,6 +63,7 @@ do { \
#include "main/main.h"
#include "main/select.h"
#include "main/timer.h"
#include "osdep/osdep.h"
#include "osdep/signals.h"
#include "terminal/terminal.h"
#include "util/error.h"