Browse Source

Fixed bug #27020 (Compile failure; sys/select.h: No such file or directory)

PEAR_1_4DEV
foobar 22 years ago
parent
commit
2a05750281
  1. 4
      ext/standard/file.c

4
ext/standard/file.c

@ -52,8 +52,12 @@
#include <sys/socket.h>
#include "netware/param.h"
#else
#if HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#if HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#if defined(NETWARE) && defined(USE_WINSOCK)
#include <novsock2.h>
#else

Loading…
Cancel
Save