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
7add08a3
Commit
7add08a3
authored
Sep 24, 2003
by
Pavel Roskin
Committed by
Alexandre Julliard
Sep 24, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added configure check for spawnvp().
parent
14b215a4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
0 deletions
+10
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
config.h.in
include/config.h.in
+3
-0
port.h
include/wine/port.h
+2
-0
spawn.c
libs/port/spawn.c
+2
-0
No files found.
configure
View file @
7add08a3
...
...
@@ -13616,6 +13616,7 @@ fi
for
ac_func
in
\
_lwp_create
\
_lwp_self
\
...
...
@@ -13656,6 +13657,7 @@ for ac_func in \
settimeofday
\
sigaltstack
\
snprintf
\
spawnvp
\
statfs
\
strcasecmp
\
strerror
\
...
...
configure.ac
View file @
7add08a3
...
...
@@ -971,6 +971,7 @@ AC_CHECK_FUNCS(\
settimeofday \
sigaltstack \
snprintf \
spawnvp \
statfs \
strcasecmp \
strerror \
...
...
include/config.h.in
View file @
7add08a3
...
...
@@ -458,6 +458,9 @@
/* Define to 1 if you have the <soundcard.h> header file. */
#undef HAVE_SOUNDCARD_H
/* Define to 1 if you have the `spawnvp' function. */
#undef HAVE_SPAWNVP
/* Define to 1 if the system has the type `ssize_t'. */
#undef HAVE_SSIZE_T
...
...
include/wine/port.h
View file @
7add08a3
...
...
@@ -276,7 +276,9 @@ extern int mkstemps(char *template, int suffix_len);
# define _P_NOWAITO 3
# define _P_DETACH 4
#endif
#ifndef HAVE_SPAWNVP
extern
int
spawnvp
(
int
mode
,
const
char
*
cmdname
,
char
*
const
argv
[]);
#endif
/* Interlocked functions */
...
...
libs/port/spawn.c
View file @
7add08a3
...
...
@@ -31,6 +31,7 @@
# include <unistd.h>
#endif
#ifndef HAVE_SPAWNVP
int
spawnvp
(
int
mode
,
const
char
*
cmdname
,
char
*
const
argv
[])
{
#ifndef HAVE__SPAWNVP
...
...
@@ -72,3 +73,4 @@ int spawnvp(int mode, const char *cmdname, char *const argv[])
return
_spawnvp
(
mode
,
cmdname
,
argv
);
#endif
/* HAVE__SPAWNVP */
}
#endif
/* HAVE_SPAWNVP */
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