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
be514b90
Commit
be514b90
authored
Jan 14, 2003
by
Steven Edwards
Committed by
Alexandre Julliard
Jan 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for vsnprintf and _vsnprintf, and define vsnprintf with
_vsnprintf if needed.
parent
b803bbd5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
0 deletions
+16
-0
configure
configure
+4
-0
configure.ac
configure.ac
+2
-0
config.h.in
include/config.h.in
+6
-0
port.h
include/wine/port.h
+4
-0
No files found.
configure
View file @
be514b90
...
...
@@ -13148,6 +13148,8 @@ fi
for
ac_func
in
\
_lwp_create
\
_pclose
\
...
...
@@ -13155,6 +13157,7 @@ for ac_func in \
_snprintf
\
_stricmp
\
_strnicmp
\
_vsnprintf
\
chsize
\
clone
\
ecvt
\
...
...
@@ -13202,6 +13205,7 @@ for ac_func in \
timegm
\
usleep
\
vfscanf
\
vsnprintf
\
wait4
\
waitpid
\
...
...
configure.ac
View file @
be514b90
...
...
@@ -936,6 +936,7 @@ AC_CHECK_FUNCS(\
_snprintf \
_stricmp \
_strnicmp \
_vsnprintf \
chsize \
clone \
ecvt \
...
...
@@ -983,6 +984,7 @@ AC_CHECK_FUNCS(\
timegm \
usleep \
vfscanf \
vsnprintf \
wait4 \
waitpid \
)
...
...
include/config.h.in
View file @
be514b90
...
...
@@ -638,6 +638,9 @@
/* Define to 1 if you have the `vfscanf' function. */
#undef HAVE_VFSCANF
/* Define to 1 if you have the `vsnprintf' function. */
#undef HAVE_VSNPRINTF
/* Define to 1 if you have the `wait4' function. */
#undef HAVE_WAIT4
...
...
@@ -695,6 +698,9 @@
/* Define to 1 if you have the `_strnicmp' function. */
#undef HAVE__STRNICMP
/* Define to 1 if you have the `_vsnprintf' function. */
#undef HAVE__VSNPRINTF
/* Define if we have __va_copy */
#undef HAVE___VA_COPY
...
...
include/wine/port.h
View file @
be514b90
...
...
@@ -103,6 +103,10 @@ struct statfs;
#define snprintf _snprintf
#endif
#if !defined(HAVE_VSNPRINTF) && defined(HAVE__VSNPRINTF)
#define vsnprintf _vsnprintf
#endif
#ifndef S_ISLNK
# define S_ISLNK(mod) (0)
#endif
/* S_ISLNK */
...
...
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