Commit da1a3529 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

configure: Fix the linux/ipx.h check.

parent cbf19c30
...@@ -7444,6 +7444,7 @@ done ...@@ -7444,6 +7444,7 @@ done
for ac_header in \ for ac_header in \
AudioUnit/AudioUnit.h \ AudioUnit/AudioUnit.h \
Carbon/Carbon.h \ Carbon/Carbon.h \
...@@ -7484,6 +7485,7 @@ for ac_header in \ ...@@ -7484,6 +7485,7 @@ for ac_header in \
linux/major.h \ linux/major.h \
linux/param.h \ linux/param.h \
linux/serial.h \ linux/serial.h \
linux/types.h \
linux/ucdrom.h \ linux/ucdrom.h \
mach/mach.h \ mach/mach.h \
mach/machine.h \ mach/machine.h \
...@@ -8063,6 +8065,9 @@ cat >>conftest.$ac_ext <<_ACEOF ...@@ -8063,6 +8065,9 @@ cat >>conftest.$ac_ext <<_ACEOF
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h> # include <sys/socket.h>
#endif #endif
#ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
#endif
#include <$ac_header> #include <$ac_header>
_ACEOF _ACEOF
......
...@@ -282,6 +282,7 @@ AC_CHECK_HEADERS(\ ...@@ -282,6 +282,7 @@ AC_CHECK_HEADERS(\
linux/major.h \ linux/major.h \
linux/param.h \ linux/param.h \
linux/serial.h \ linux/serial.h \
linux/types.h \
linux/ucdrom.h \ linux/ucdrom.h \
mach/mach.h \ mach/mach.h \
mach/machine.h \ mach/machine.h \
...@@ -432,6 +433,9 @@ AC_CHECK_HEADERS([linux/ipx.h],,, ...@@ -432,6 +433,9 @@ AC_CHECK_HEADERS([linux/ipx.h],,,
#endif #endif
#ifdef HAVE_SYS_SOCKET_H #ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h> # include <sys/socket.h>
#endif
#ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
#endif]) #endif])
AC_CHECK_HEADERS([resolv.h],,, AC_CHECK_HEADERS([resolv.h],,,
......
...@@ -103,6 +103,9 @@ ...@@ -103,6 +103,9 @@
# ifdef HAVE_ASM_TYPES_H # ifdef HAVE_ASM_TYPES_H
# include <asm/types.h> # include <asm/types.h>
# endif # endif
# ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
# endif
# include <linux/ipx.h> # include <linux/ipx.h>
# define HAVE_IPX # define HAVE_IPX
#endif #endif
......
...@@ -393,6 +393,9 @@ ...@@ -393,6 +393,9 @@
/* Define to 1 if you have the <linux/serial.h> header file. */ /* Define to 1 if you have the <linux/serial.h> header file. */
#undef HAVE_LINUX_SERIAL_H #undef HAVE_LINUX_SERIAL_H
/* Define to 1 if you have the <linux/types.h> header file. */
#undef HAVE_LINUX_TYPES_H
/* Define to 1 if you have the <linux/ucdrom.h> header file. */ /* Define to 1 if you have the <linux/ucdrom.h> header file. */
#undef HAVE_LINUX_UCDROM_H #undef HAVE_LINUX_UCDROM_H
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment