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
e5d69d9e
Commit
e5d69d9e
authored
Dec 09, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Assume that sys/ioctl.h is available on Unix.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b3ca48f3
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
11 additions
and
57 deletions
+11
-57
configure
configure
+0
-6
configure.ac
configure.ac
+0
-1
v4l.c
dlls/avicap32/v4l.c
+2
-6
diskarb.c
dlls/mountmgr.sys/diskarb.c
+1
-3
ndis.c
dlls/nsiproxy.sys/ndis.c
+1
-4
cdrom.c
dlls/ntdll/unix/cdrom.c
+0
-3
file.c
dlls/ntdll/unix/file.c
+1
-3
serial.c
dlls/ntdll/unix/serial.c
+1
-3
socket.c
dlls/ntdll/unix/socket.c
+1
-3
tape.c
dlls/ntdll/unix/tape.c
+0
-2
v4l.c
dlls/qcap/v4l.c
+0
-2
bus_udev.c
dlls/winebus.sys/bus_udev.c
+1
-3
joystick_linux.c
dlls/winejoystick.drv/joystick_linux.c
+0
-2
midi.c
dlls/wineoss.drv/midi.c
+1
-3
mmaux.c
dlls/wineoss.drv/mmaux.c
+1
-3
config.h.in
include/config.h.in
+0
-3
mailslot.c
server/mailslot.c
+0
-2
serial.c
server/serial.c
+1
-3
sock.c
server/sock.c
+0
-2
No files found.
configure
View file @
e5d69d9e
...
...
@@ -8522,12 +8522,6 @@ then :
printf
"%s
\n
"
"#define HAVE_SYS_FILIO_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"sys/ioctl.h"
"ac_cv_header_sys_ioctl_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_sys_ioctl_h
"
=
xyes
then
:
printf
"%s
\n
"
"#define HAVE_SYS_IOCTL_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"sys/ipc.h"
"ac_cv_header_sys_ipc_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_sys_ipc_h
"
=
xyes
then
:
...
...
configure.ac
View file @
e5d69d9e
...
...
@@ -479,7 +479,6 @@ AC_CHECK_HEADERS(\
sys/epoll.h \
sys/event.h \
sys/filio.h \
sys/ioctl.h \
sys/ipc.h \
sys/link.h \
sys/modem.h \
...
...
dlls/avicap32/v4l.c
View file @
e5d69d9e
...
...
@@ -28,12 +28,8 @@
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#include <sys/stat.h>
#include <sys/ioctl.h>
#ifdef HAVE_LINUX_VIDEODEV2_H
# include <linux/videodev2.h>
#endif
...
...
dlls/mountmgr.sys/diskarb.c
View file @
e5d69d9e
...
...
@@ -30,9 +30,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#include <sys/ioctl.h>
#ifdef HAVE_DISKARBITRATION_DISKARBITRATION_H
#include <DiskArbitration/DiskArbitration.h>
#endif
...
...
dlls/nsiproxy.sys/ndis.c
View file @
e5d69d9e
...
...
@@ -27,6 +27,7 @@
#include <stdarg.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <unistd.h>
#ifdef HAVE_NET_IF_H
...
...
@@ -49,10 +50,6 @@
#include <net/route.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_SYSCTL_H
#include <sys/sysctl.h>
#endif
...
...
dlls/ntdll/unix/cdrom.c
View file @
e5d69d9e
...
...
@@ -41,10 +41,7 @@
# include <sys/sysmacros.h>
#endif
#include <sys/types.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SCSI_SG_H
# include <scsi/sg.h>
#endif
...
...
dlls/ntdll/unix/file.c
View file @
e5d69d9e
...
...
@@ -50,6 +50,7 @@
#endif
#include <sys/socket.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#ifdef HAVE_SYS_ATTR_H
#include <sys/attr.h>
#endif
...
...
@@ -79,9 +80,6 @@
#undef list_move_tail
#undef list_remove
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_LINUX_IOCTL_H
#include <linux/ioctl.h>
#endif
...
...
dlls/ntdll/unix/serial.c
View file @
e5d69d9e
...
...
@@ -36,12 +36,10 @@
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#ifdef HAVE_SYS_FILIO_H
# include <sys/filio.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_MODEM_H
# include <sys/modem.h>
#endif
...
...
dlls/ntdll/unix/socket.c
View file @
e5d69d9e
...
...
@@ -26,6 +26,7 @@
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <unistd.h>
#ifdef HAVE_IFADDRS_H
# include <ifaddrs.h>
...
...
@@ -33,9 +34,6 @@
#ifdef HAVE_NET_IF_H
# include <net/if.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#ifdef HAVE_NETINET_IN_H
# define __APPLE_USE_RFC_3542
# include <netinet/in.h>
...
...
dlls/ntdll/unix/tape.c
View file @
e5d69d9e
...
...
@@ -31,9 +31,7 @@
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_MTIO_H
#include <sys/mtio.h>
#endif
...
...
dlls/qcap/v4l.c
View file @
e5d69d9e
...
...
@@ -32,9 +32,7 @@
#include <stdlib.h>
#include <fcntl.h>
#include <dlfcn.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include <sys/mman.h>
#include <errno.h>
#include <sys/time.h>
...
...
dlls/winebus.sys/bus_udev.c
View file @
e5d69d9e
...
...
@@ -33,15 +33,13 @@
#include <dirent.h>
#include <unistd.h>
#include <poll.h>
#include <sys/ioctl.h>
#ifdef HAVE_LIBUDEV_H
# include <libudev.h>
#endif
#ifdef HAVE_LINUX_HIDRAW_H
# include <linux/hidraw.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_INOTIFY_H
# include <sys/inotify.h>
#endif
...
...
dlls/winejoystick.drv/joystick_linux.c
View file @
e5d69d9e
...
...
@@ -44,9 +44,7 @@
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_LINUX_IOCTL_H
#include <linux/ioctl.h>
#endif
...
...
dlls/wineoss.drv/midi.c
View file @
e5d69d9e
...
...
@@ -49,9 +49,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#include <sys/ioctl.h>
#include <poll.h>
#include <sys/soundcard.h>
...
...
dlls/wineoss.drv/mmaux.c
View file @
e5d69d9e
...
...
@@ -26,9 +26,7 @@
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#include <sys/ioctl.h>
#include <sys/soundcard.h>
#include "windef.h"
...
...
include/config.h.in
View file @
e5d69d9e
...
...
@@ -628,9 +628,6 @@
/* Define to 1 if you have the <sys/inotify.h> header file. */
#undef HAVE_SYS_INOTIFY_H
/* Define to 1 if you have the <sys/ioctl.h> header file. */
#undef HAVE_SYS_IOCTL_H
/* Define to 1 if you have the <sys/ipc.h> header file. */
#undef HAVE_SYS_IPC_H
...
...
server/mailslot.c
View file @
e5d69d9e
...
...
@@ -31,9 +31,7 @@
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include <sys/socket.h>
#ifdef HAVE_SYS_FILIO_H
#include <sys/filio.h>
...
...
server/serial.c
View file @
e5d69d9e
...
...
@@ -30,6 +30,7 @@
#include <stdlib.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <time.h>
#include <termios.h>
#include <unistd.h>
...
...
@@ -37,9 +38,6 @@
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
server/sock.c
View file @
e5d69d9e
...
...
@@ -43,9 +43,7 @@
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_FILIO_H
# include <sys/filio.h>
#endif
...
...
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