mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 04:30:43 +00:00
need to explicitly include sys/uio.h on older libc
This commit is contained in:
parent
347cdc5e33
commit
9fa9f6af52
2 changed files with 5 additions and 2 deletions
|
@ -150,8 +150,8 @@ AC_CHECK_HEADERS(
|
|||
setjmp.h signal.h stdarg.h stdio.h stdlib.h string.h strings.h \
|
||||
sys/asoundlib.h sys/audioio.h sys/filio.h sys/ioctl.h sys/io.h sys/ipc.h \
|
||||
sys/mman.h sys/param.h sys/poll.h sys/shm.h sys/signal.h sys/socket.h \
|
||||
sys/soundcard.h sys/stat.h sys/time.h sys/types.h termios.h time.h \
|
||||
unistd.h vgakeyboard.h vgamouse.h windows.h winsock.h
|
||||
sys/soundcard.h sys/stat.h sys/time.h sys/types.h sys/uio.h termios.h \
|
||||
time.h unistd.h vgakeyboard.h vgamouse.h windows.h winsock.h
|
||||
)
|
||||
if test "x$mingw" = xyes; then
|
||||
AC_MSG_CHECKING(for fnmatch.h)
|
||||
|
|
|
@ -52,6 +52,9 @@ static const char rcsid[] =
|
|||
#ifdef HAVE_NETDB_H
|
||||
# include <netdb.h>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_UIO_H
|
||||
# include <sys/uio.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <time.h>
|
||||
|
|
Loading…
Reference in a new issue