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
53e16571
Commit
53e16571
authored
Dec 09, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Add a wrapper macro for mkdir on Windows.
parent
fba5c4f3
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
0 deletions
+11
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
xdg.c
dlls/shell32/xdg.c
+1
-0
config.h.in
include/config.h.in
+3
-0
port.h
include/wine/port.h
+4
-0
No files found.
configure
View file @
53e16571
...
...
@@ -17912,7 +17912,9 @@ esac
for
ac_func
in
\
_mkdir
\
_pclose
\
_popen
\
_snprintf
\
...
...
configure.ac
View file @
53e16571
...
...
@@ -1370,6 +1370,7 @@ esac
dnl **** Check for functions ****
AC_CHECK_FUNCS(\
_mkdir \
_pclose \
_popen \
_snprintf \
...
...
dlls/shell32/xdg.c
View file @
53e16571
...
...
@@ -46,6 +46,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <stdarg.h>
...
...
include/config.h.in
View file @
53e16571
...
...
@@ -999,6 +999,9 @@
/* Define if Xrender has the XRenderSetPictureTransform function */
#undef HAVE_XRENDERSETPICTURETRANSFORM
/* Define to 1 if you have the `_mkdir' function. */
#undef HAVE__MKDIR
/* Define to 1 if you have the `_pclose' function. */
#undef HAVE__PCLOSE
...
...
include/wine/port.h
View file @
53e16571
...
...
@@ -114,6 +114,10 @@ struct statvfs
#define RTLD_GLOBAL 0x100
#endif
#ifdef HAVE__MKDIR
#define mkdir(path,mode) _mkdir(path)
#endif
#if !defined(HAVE_FTRUNCATE) && defined(HAVE_CHSIZE)
#define ftruncate chsize
#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