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
411592bf
Commit
411592bf
authored
Dec 09, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Assume that sys/wait.h is available on Unix.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e5d69d9e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
4 additions
and
26 deletions
+4
-26
configure
configure
+0
-6
configure.ac
configure.ac
+0
-1
loader.c
dlls/ntdll/unix/loader.c
+1
-3
process.c
dlls/ntdll/unix/process.c
+1
-3
server.c
dlls/ntdll/unix/server.c
+0
-2
config.h.in
include/config.h.in
+0
-3
mmap.c
libs/wine/mmap.c
+0
-2
ptrace.c
server/ptrace.c
+1
-3
request.c
server/request.c
+1
-3
No files found.
configure
View file @
411592bf
...
...
@@ -8678,12 +8678,6 @@ then :
printf
"%s
\n
"
"#define HAVE_SYS_VNODE_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"sys/wait.h"
"ac_cv_header_sys_wait_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_sys_wait_h
"
=
xyes
then
:
printf
"%s
\n
"
"#define HAVE_SYS_WAIT_H 1"
>>
confdefs.h
fi
ac_fn_c_check_header_compile
"
$LINENO
"
"syscall.h"
"ac_cv_header_syscall_h"
"
$ac_includes_default
"
if
test
"x
$ac_cv_header_syscall_h
"
=
xyes
then
:
...
...
configure.ac
View file @
411592bf
...
...
@@ -505,7 +505,6 @@ AC_CHECK_HEADERS(\
sys/user.h \
sys/utsname.h \
sys/vnode.h \
sys/wait.h \
syscall.h \
utime.h \
valgrind/memcheck.h \
...
...
dlls/ntdll/unix/loader.c
View file @
411592bf
...
...
@@ -35,6 +35,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <sys/wait.h>
#include <unistd.h>
#include <dlfcn.h>
#ifdef HAVE_PWD_H
...
...
@@ -52,9 +53,6 @@
#ifdef HAVE_SYS_RESOURCE_H
# include <sys/resource.h>
#endif
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#include <limits.h>
#ifdef HAVE_SYS_SYSCTL_H
# include <sys/sysctl.h>
...
...
dlls/ntdll/unix/process.c
View file @
411592bf
...
...
@@ -39,9 +39,7 @@
# include <sys/times.h>
#endif
#include <sys/types.h>
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#include <sys/wait.h>
#ifdef HAVE_SYS_SYSCTL_H
# include <sys/sysctl.h>
#endif
...
...
dlls/ntdll/unix/server.c
View file @
411592bf
...
...
@@ -45,9 +45,7 @@
#include <sys/types.h>
#include <sys/mman.h>
#include <sys/socket.h>
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif
...
...
include/config.h.in
View file @
411592bf
...
...
@@ -733,9 +733,6 @@
/* Define to 1 if you have the <sys/vnode.h> header file. */
#undef HAVE_SYS_VNODE_H
/* Define to 1 if you have the <sys/wait.h> header file. */
#undef HAVE_SYS_WAIT_H
/* Define to 1 if you have the `tcdrain' function. */
#undef HAVE_TCDRAIN
...
...
libs/wine/mmap.c
View file @
411592bf
...
...
@@ -28,9 +28,7 @@
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_SYS_WAIT_H
#include <sys/wait.h>
#endif
#include <sys/mman.h>
#include <unistd.h>
#ifdef HAVE_STDINT_H
...
...
server/ptrace.c
View file @
411592bf
...
...
@@ -27,15 +27,13 @@
#include <signal.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/wait.h>
#ifdef HAVE_SYS_PTRACE_H
# include <sys/ptrace.h>
#endif
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#ifdef HAVE_SYS_SYSCALL_H
# include <sys/syscall.h>
#endif
...
...
server/request.c
View file @
411592bf
...
...
@@ -35,9 +35,7 @@
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#ifdef HAVE_SYS_WAIT_H
# include <sys/wait.h>
#endif
#include <sys/wait.h>
#ifdef HAVE_SYS_UIO_H
#include <sys/uio.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