Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
57279184
Commit
57279184
authored
Mar 04, 2005
by
Steven Edwards
Committed by
Alexandre Julliard
Mar 04, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a check for poll.h.
parent
31c4aa73
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
51 additions
and
0 deletions
+51
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
sync.c
dlls/kernel/sync.c
+3
-0
sync.c
dlls/ntdll/sync.c
+3
-0
audio.c
dlls/winmm/wineoss/audio.c
+3
-0
dscapture.c
dlls/winmm/wineoss/dscapture.c
+3
-0
dsrender.c
dlls/winmm/wineoss/dsrender.c
+3
-0
midi.c
dlls/winmm/wineoss/midi.c
+3
-0
socket.c
dlls/winsock/socket.c
+3
-0
config.h.in
include/config.h.in
+3
-0
fd.c
server/fd.c
+3
-0
file.c
server/file.c
+3
-0
named_pipe.c
server/named_pipe.c
+3
-0
process.c
server/process.c
+3
-0
request.c
server/request.c
+3
-0
serial.c
server/serial.c
+3
-0
signal.c
server/signal.c
+3
-0
thread.c
server/thread.c
+3
-0
No files found.
configure
View file @
57279184
...
...
@@ -7261,6 +7261,7 @@ done
for
ac_header
in
\
arpa/inet.h
\
arpa/nameser.h
\
...
...
@@ -7296,6 +7297,7 @@ for ac_header in \
netinet/tcp.h
\
netinet/tcp_fsm.h
\
openssl/ssl.h
\
poll.h
\
process.h
\
pthread.h
\
pwd.h
\
...
...
configure.ac
View file @
57279184
...
...
@@ -199,6 +199,7 @@ AC_CHECK_HEADERS(\
netinet/tcp.h \
netinet/tcp_fsm.h \
openssl/ssl.h \
poll.h \
process.h \
pthread.h \
pwd.h \
...
...
dlls/kernel/sync.c
View file @
57279184
...
...
@@ -29,6 +29,9 @@
#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
...
...
dlls/ntdll/sync.c
View file @
57279184
...
...
@@ -29,6 +29,9 @@
#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
...
...
dlls/winmm/wineoss/audio.c
View file @
57279184
...
...
@@ -49,6 +49,9 @@
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
...
...
dlls/winmm/wineoss/dscapture.c
View file @
57279184
...
...
@@ -36,6 +36,9 @@
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
...
...
dlls/winmm/wineoss/dsrender.c
View file @
57279184
...
...
@@ -39,6 +39,9 @@
#ifdef HAVE_SYS_MMAN_H
# include <sys/mman.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
...
...
dlls/winmm/wineoss/midi.c
View file @
57279184
...
...
@@ -52,6 +52,9 @@
#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
...
...
dlls/winsock/socket.c
View file @
57279184
...
...
@@ -104,6 +104,9 @@
# define HAVE_IPX
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
# include <sys/poll.h>
#endif
...
...
include/config.h.in
View file @
57279184
...
...
@@ -419,6 +419,9 @@
/* Define to 1 if the system has the type `pid_t'. */
#undef HAVE_PID_T
/* Define to 1 if you have the <poll.h> header file. */
#undef HAVE_POLL_H
/* Define to 1 if you have the `popen' function. */
#undef HAVE_POPEN
...
...
server/fd.c
View file @
57279184
...
...
@@ -30,6 +30,9 @@
#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
...
...
server/file.c
View file @
57279184
...
...
@@ -39,6 +39,9 @@
#ifdef HAVE_UTIME_H
#include <utime.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "winerror.h"
#include "windef.h"
...
...
server/named_pipe.c
View file @
57279184
...
...
@@ -38,6 +38,9 @@
#endif
#include <time.h>
#include <unistd.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
server/process.c
View file @
57279184
...
...
@@ -33,6 +33,9 @@
# include <sys/socket.h>
#endif
#include <unistd.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
server/request.c
View file @
57279184
...
...
@@ -48,6 +48,9 @@
#include <sys/un.h>
#endif
#include <unistd.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "windef.h"
#include "winbase.h"
...
...
server/serial.c
View file @
57279184
...
...
@@ -42,6 +42,9 @@
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "winerror.h"
#include "windef.h"
...
...
server/signal.c
View file @
57279184
...
...
@@ -22,6 +22,9 @@
#include <signal.h>
#include <stdio.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#ifdef HAVE_SYS_POLL_H
#include <sys/poll.h>
#endif
...
...
server/thread.c
View file @
57279184
...
...
@@ -32,6 +32,9 @@
#include <sys/types.h>
#include <unistd.h>
#include <time.h>
#ifdef HAVE_POLL_H
#include <poll.h>
#endif
#include "windef.h"
#include "winbase.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