Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
da1a3529
Commit
da1a3529
authored
Dec 28, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Dec 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Fix the linux/ipx.h check.
parent
cbf19c30
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
0 deletions
+15
-0
configure
configure
+5
-0
configure.ac
configure.ac
+4
-0
socket.c
dlls/ws2_32/socket.c
+3
-0
config.h.in
include/config.h.in
+3
-0
No files found.
configure
View file @
da1a3529
...
...
@@ -7444,6 +7444,7 @@ done
for
ac_header
in
\
AudioUnit/AudioUnit.h
\
Carbon/Carbon.h
\
...
...
@@ -7484,6 +7485,7 @@ for ac_header in \
linux/major.h
\
linux/param.h
\
linux/serial.h
\
linux/types.h
\
linux/ucdrom.h
\
mach/mach.h
\
mach/machine.h
\
...
...
@@ -8063,6 +8065,9 @@ cat >>conftest.$ac_ext <<_ACEOF
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
#endif
#include <
$ac_header
>
_ACEOF
...
...
configure.ac
View file @
da1a3529
...
...
@@ -282,6 +282,7 @@ AC_CHECK_HEADERS(\
linux/major.h \
linux/param.h \
linux/serial.h \
linux/types.h \
linux/ucdrom.h \
mach/mach.h \
mach/machine.h \
...
...
@@ -432,6 +433,9 @@ AC_CHECK_HEADERS([linux/ipx.h],,,
#endif
#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif
#ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
#endif])
AC_CHECK_HEADERS([resolv.h],,,
...
...
dlls/ws2_32/socket.c
View file @
da1a3529
...
...
@@ -103,6 +103,9 @@
# ifdef HAVE_ASM_TYPES_H
# include <asm/types.h>
# endif
# ifdef HAVE_LINUX_TYPES_H
# include <linux/types.h>
# endif
# include <linux/ipx.h>
# define HAVE_IPX
#endif
...
...
include/config.h.in
View file @
da1a3529
...
...
@@ -393,6 +393,9 @@
/* Define to 1 if you have the <linux/serial.h> header file. */
#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. */
#undef HAVE_LINUX_UCDROM_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment