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
6fdae197
Commit
6fdae197
authored
Oct 04, 2021
by
Huw Davies
Committed by
Alexandre Julliard
Oct 31, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Stop checking for poll.h and sys/poll.h - always use poll.h.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c0cf1537
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
6 additions
and
73 deletions
+6
-73
configure
configure
+0
-2
configure.ac
configure.ac
+0
-2
serial.c
dlls/ntdll/unix/serial.c
+0
-3
sync.c
dlls/ntdll/unix/sync.c
+0
-5
bus_udev.c
dlls/winebus.sys/bus_udev.c
+1
-6
midi.c
dlls/wineoss.drv/midi.c
+0
-5
event.c
dlls/winex11.drv/event.c
+0
-5
unixlib.c
dlls/ws2_32/unixlib.c
+0
-5
config.h.in
include/config.h.in
+0
-6
change.c
server/change.c
+1
-3
fd.c
server/fd.c
+0
-5
file.c
server/file.c
+0
-2
object.h
server/object.h
+1
-4
process.c
server/process.c
+0
-2
queue.c
server/queue.c
+1
-3
request.c
server/request.c
+0
-2
serial.c
server/serial.c
+1
-3
signal.c
server/signal.c
+0
-5
sock.c
server/sock.c
+1
-3
thread.c
server/thread.c
+0
-2
No files found.
configure
View file @
6fdae197
...
...
@@ -7473,7 +7473,6 @@ for ac_header in \
netinet/tcp.h
\
netinet/tcp_fsm.h
\
pcap/pcap.h
\
poll.h
\
port.h
\
pthread.h
\
pwd.h
\
...
...
@@ -7496,7 +7495,6 @@ for ac_header in \
sys/modem.h
\
sys/mtio.h
\
sys/param.h
\
sys/poll.h
\
sys/prctl.h
\
sys/protosw.h
\
sys/ptrace.h
\
...
...
configure.ac
View file @
6fdae197
...
...
@@ -465,7 +465,6 @@ AC_CHECK_HEADERS(\
netinet/tcp.h \
netinet/tcp_fsm.h \
pcap/pcap.h \
poll.h \
port.h \
pthread.h \
pwd.h \
...
...
@@ -488,7 +487,6 @@ AC_CHECK_HEADERS(\
sys/modem.h \
sys/mtio.h \
sys/param.h \
sys/poll.h \
sys/prctl.h \
sys/protosw.h \
sys/ptrace.h \
...
...
dlls/ntdll/unix/serial.c
View file @
6fdae197
...
...
@@ -44,9 +44,6 @@
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#ifdef HAVE_SYS_MODEM_H
# include <sys/modem.h>
#endif
...
...
dlls/ntdll/unix/sync.c
View file @
6fdae197
...
...
@@ -39,12 +39,7 @@
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#include <unistd.h>
#ifdef HAVE_SCHED_H
# include <sched.h>
...
...
dlls/winebus.sys/bus_udev.c
View file @
6fdae197
...
...
@@ -34,12 +34,7 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#include <poll.h>
#ifdef HAVE_LIBUDEV_H
# include <libudev.h>
#endif
...
...
dlls/wineoss.drv/midi.c
View file @
6fdae197
...
...
@@ -54,12 +54,7 @@
#ifdef HAVE_SYS_IOCTL_H
# include <sys/ioctl.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#include <sys/soundcard.h>
#include "windef.h"
...
...
dlls/winex11.drv/event.c
View file @
6fdae197
...
...
@@ -21,12 +21,7 @@
#include "config.h"
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#include <X11/Xatom.h>
#include <X11/keysym.h>
#include <X11/Xlib.h>
...
...
dlls/ws2_32/unixlib.c
View file @
6fdae197
...
...
@@ -63,12 +63,7 @@
#ifdef HAVE_IFADDRS_H
# include <ifaddrs.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
#ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
#endif
...
...
include/config.h.in
View file @
6fdae197
...
...
@@ -389,9 +389,6 @@
/* Define to 1 if you have the `pipe2' function. */
#undef HAVE_PIPE2
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H
/* Define to 1 if you have the `port_create' function. */
#undef HAVE_PORT_CREATE
...
...
@@ -658,9 +655,6 @@
/* Define to 1 if you have the <sys/param.h> header file. */
#undef HAVE_SYS_PARAM_H
/* Define to 1 if you have the <sys/poll.h> header file. */
#undef HAVE_SYS_POLL_H
/* Define to 1 if you have the <sys/prctl.h> header file. */
#undef HAVE_SYS_PRCTL_H
...
...
server/change.c
View file @
6fdae197
...
...
@@ -32,9 +32,7 @@
#include <dirent.h>
#include <errno.h>
#include <unistd.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include <poll.h>
#ifdef HAVE_SYS_INOTIFY_H
#include <sys/inotify.h>
#endif
...
...
server/fd.c
View file @
6fdae197
...
...
@@ -31,12 +31,7 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#ifdef HAVE_LINUX_MAJOR_H
#include <linux/major.h>
#endif
...
...
server/file.c
View file @
6fdae197
...
...
@@ -35,9 +35,7 @@
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
server/object.h
View file @
6fdae197
...
...
@@ -21,10 +21,7 @@
#ifndef __WINE_SERVER_OBJECT_H
#define __WINE_SERVER_OBJECT_H
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#include <poll.h>
#include <sys/time.h>
#include "wine/server_protocol.h"
#include "wine/list.h"
...
...
server/process.c
View file @
6fdae197
...
...
@@ -35,9 +35,7 @@
# include <sys/socket.h>
#endif
#include <unistd.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
server/queue.c
View file @
6fdae197
...
...
@@ -25,9 +25,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include <poll.h>
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
server/request.c
View file @
6fdae197
...
...
@@ -47,9 +47,7 @@
#include <sys/un.h>
#endif
#include <unistd.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef __APPLE__
# include <mach/mach_time.h>
#endif
...
...
server/serial.c
View file @
6fdae197
...
...
@@ -32,6 +32,7 @@
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#include <poll.h>
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
...
...
@@ -41,9 +42,6 @@
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "ntstatus.h"
#define WIN32_NO_STATUS
...
...
server/signal.c
View file @
6fdae197
...
...
@@ -23,12 +23,7 @@
#include <signal.h>
#include <stdio.h>
#include <sys/time.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
...
...
server/sock.c
View file @
6fdae197
...
...
@@ -39,9 +39,7 @@
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
#endif
#ifdef HAVE_POLL_H
# include <poll.h>
#endif
#include <poll.h>
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
...
...
server/thread.c
View file @
6fdae197
...
...
@@ -31,9 +31,7 @@
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SCHED_H
#include <sched.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