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
bed3842c
Commit
bed3842c
authored
Oct 14, 2004
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added check for fork() to fix the MinGW build.
parent
a89ac894
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
0 deletions
+8
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
printdrv.c
dlls/gdi/printdrv.c
+2
-0
config.h.in
include/config.h.in
+3
-0
No files found.
configure
View file @
bed3842c
...
@@ -16151,6 +16151,7 @@ fi
...
@@ -16151,6 +16151,7 @@ fi
for
ac_func
in
\
for
ac_func
in
\
_lwp_create
\
_lwp_create
\
_lwp_self
\
_lwp_self
\
...
@@ -16165,6 +16166,7 @@ for ac_func in \
...
@@ -16165,6 +16166,7 @@ for ac_func in \
clone
\
clone
\
epoll_create
\
epoll_create
\
finite
\
finite
\
fork
\
fpclass
\
fpclass
\
fstatfs
\
fstatfs
\
fstatvfs
\
fstatvfs
\
...
...
configure.ac
View file @
bed3842c
...
@@ -1074,6 +1074,7 @@ AC_CHECK_FUNCS(\
...
@@ -1074,6 +1074,7 @@ AC_CHECK_FUNCS(\
clone \
clone \
epoll_create \
epoll_create \
finite \
finite \
fork \
fpclass \
fpclass \
fstatfs \
fstatfs \
fstatvfs \
fstatvfs \
...
...
dlls/gdi/printdrv.c
View file @
bed3842c
...
@@ -481,6 +481,7 @@ static int CreateSpoolFile(LPCSTR pszOutput)
...
@@ -481,6 +481,7 @@ static int CreateSpoolFile(LPCSTR pszOutput)
return
-
1
;
return
-
1
;
}
}
TRACE
(
"command: '%s'
\n
"
,
psCmdP
);
TRACE
(
"command: '%s'
\n
"
,
psCmdP
);
#ifdef HAVE_FORK
if
(
*
psCmdP
==
'|'
)
if
(
*
psCmdP
==
'|'
)
{
{
int
fds
[
2
];
int
fds
[
2
];
...
@@ -510,6 +511,7 @@ static int CreateSpoolFile(LPCSTR pszOutput)
...
@@ -510,6 +511,7 @@ static int CreateSpoolFile(LPCSTR pszOutput)
TRACE
(
"Need to execute a cmnd and pipe the output to it
\n
"
);
TRACE
(
"Need to execute a cmnd and pipe the output to it
\n
"
);
}
}
else
else
#endif
{
{
char
*
buffer
;
char
*
buffer
;
WCHAR
psCmdPW
[
MAX_PATH
];
WCHAR
psCmdPW
[
MAX_PATH
];
...
...
include/config.h.in
View file @
bed3842c
...
@@ -92,6 +92,9 @@
...
@@ -92,6 +92,9 @@
/* Define to 1 if you have the <fontconfig/fontconfig.h> header file. */
/* Define to 1 if you have the <fontconfig/fontconfig.h> header file. */
#undef HAVE_FONTCONFIG_FONTCONFIG_H
#undef HAVE_FONTCONFIG_FONTCONFIG_H
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
/* Define to 1 if you have the `fpclass' function. */
/* Define to 1 if you have the `fpclass' function. */
#undef HAVE_FPCLASS
#undef HAVE_FPCLASS
...
...
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