replace some win32 ifdef hacks with autoconf checks

SVN revision: 33617
This commit is contained in:
Mike Frysinger 2008-01-26 05:50:09 +00:00
parent 184812f289
commit 5a351ab3da
3 changed files with 7 additions and 5 deletions

View File

@ -33,7 +33,7 @@ AC_FUNC_ALLOCA
AC_CHECK_HEADER(zlib.h,, AC_MSG_ERROR("Cannot find zlib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file"))
AC_CHECK_HEADER(jpeglib.h,, AC_MSG_ERROR("Cannot find jpeglib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file"))
AC_CHECK_HEADERS(netinet/in.h)
AC_CHECK_HEADERS_ONCE(netinet/in.h sys/mman.h windows.h winsock2.h)
winsock_libs=""
create_shared_lib=""

View File

@ -1,7 +1,7 @@
#ifndef _EET_PRIVATE_H
#define _EET_PRIVATE_H
#include "config.h"
#include <config.h>
#include <stdio.h>
#include <unistd.h>
@ -32,7 +32,8 @@ void *alloca (size_t);
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#elif _WIN32
#endif
#ifdef HAVE_WINSOCK2_H
# include <winsock2.h>
#endif

View File

@ -2,9 +2,10 @@
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#include <config.h>
#include <sys/types.h>
#ifndef _WIN32
#include <sys/mman.h>
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#include "Eet.h"