Improved <sys/typed.h> / <unistd.h> handling as suggested by the
autoconf docs. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@549 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
11192577c4
commit
45a783693d
@ -74,18 +74,21 @@
|
|||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#if TARGET_HOST_UNIX_X11
|
#if HAVE_SYS_TYPES_H
|
||||||
#include <unistd.h>
|
# include <sys/types.h>
|
||||||
# if TIME_WITH_SYS_TIME
|
#endif
|
||||||
|
#if HAVE_UNISTD_H
|
||||||
|
# include <unistd.h>
|
||||||
|
#endif
|
||||||
|
#if TIME_WITH_SYS_TIME
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
# include <time.h>
|
# include <time.h>
|
||||||
# else
|
#else
|
||||||
# if HAVE_SYS_TIME_H
|
# if HAVE_SYS_TIME_H
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
# else
|
# else
|
||||||
# include <time.h>
|
# include <time.h>
|
||||||
# endif
|
# endif
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The system-dependant include files should go here: */
|
/* The system-dependant include files should go here: */
|
||||||
|
@ -89,7 +89,6 @@
|
|||||||
# define JS_RETURN (sizeof(struct JS_DATA_TYPE))
|
# define JS_RETURN (sizeof(struct JS_DATA_TYPE))
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# include <unistd.h>
|
|
||||||
# include <fcntl.h>
|
# include <fcntl.h>
|
||||||
# include <errno.h>
|
# include <errno.h>
|
||||||
|
|
||||||
|
@ -30,8 +30,6 @@
|
|||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#if TARGET_HOST_UNIX_X11
|
#if TARGET_HOST_UNIX_X11
|
||||||
#include <sys/types.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#elif TARGET_HOST_WIN32
|
#elif TARGET_HOST_WIN32
|
||||||
|
Reference in New Issue
Block a user