mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[dos] Do not use poll under DOS
This commit is contained in:
parent
036d68dde6
commit
5fefca2cb3
@ -23,7 +23,7 @@
|
|||||||
#include <inttypes.h> /* OMG */
|
#include <inttypes.h> /* OMG */
|
||||||
#endif
|
#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
|
#define USE_POLL
|
||||||
#include <poll.h>
|
#include <poll.h>
|
||||||
#endif
|
#endif
|
||||||
@ -63,6 +63,7 @@ do { \
|
|||||||
#include "main/main.h"
|
#include "main/main.h"
|
||||||
#include "main/select.h"
|
#include "main/select.h"
|
||||||
#include "main/timer.h"
|
#include "main/timer.h"
|
||||||
|
#include "osdep/osdep.h"
|
||||||
#include "osdep/signals.h"
|
#include "osdep/signals.h"
|
||||||
#include "terminal/terminal.h"
|
#include "terminal/terminal.h"
|
||||||
#include "util/error.h"
|
#include "util/error.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user