Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
7add08a3
Commit
7add08a3
authored
21 years ago
by
Pavel Roskin
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added configure check for spawnvp().
parent
14b215a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
configure
+2
-0
2 additions, 0 deletions
configure
configure.ac
+1
-0
1 addition, 0 deletions
configure.ac
include/config.h.in
+3
-0
3 additions, 0 deletions
include/config.h.in
include/wine/port.h
+2
-0
2 additions, 0 deletions
include/wine/port.h
libs/port/spawn.c
+2
-0
2 additions, 0 deletions
libs/port/spawn.c
with
10 additions
and
0 deletions
configure
+
2
−
0
View file @
7add08a3
...
...
@@ -13614,6 +13614,7 @@ fi
for ac_func in \
...
...
@@ -13656,6 +13657,7 @@ for ac_func in \
settimeofday \
sigaltstack \
snprintf \
spawnvp \
statfs \
strcasecmp \
strerror \
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
0
View file @
7add08a3
...
...
@@ -971,6 +971,7 @@ AC_CHECK_FUNCS(\
settimeofday \
sigaltstack \
snprintf \
spawnvp \
statfs \
strcasecmp \
strerror \
...
...
This diff is collapsed.
Click to expand it.
include/config.h.in
+
3
−
0
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
...
...
This diff is collapsed.
Click to expand it.
include/wine/port.h
+
2
−
0
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 */
...
...
This diff is collapsed.
Click to expand it.
libs/port/spawn.c
+
2
−
0
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 */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment