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
5ac2a538
Commit
5ac2a538
authored
22 years ago
by
Brad Campbell
Committed by
Alexandre Julliard
22 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added additional test for gcvt as uClibc appears to have this and not
ecvt.
parent
bbb7dc0f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
configure
+4
-0
4 additions, 0 deletions
configure
configure.ac
+2
-0
2 additions, 0 deletions
configure.ac
include/config.h.in
+6
-0
6 additions, 0 deletions
include/config.h.in
library/port.c
+5
-6
5 additions, 6 deletions
library/port.c
with
17 additions
and
6 deletions
configure
+
4
−
0
View file @
5ac2a538
...
...
@@ -11644,6 +11644,8 @@ fi
...
...
@@ -11657,10 +11659,12 @@ for ac_func in \
chsize
\
clone
\
ecvt
\
fcvt
\
finite
\
fpclass
\
ftruncate
\
ftruncate64
\
gcvt
\
getnetbyaddr
\
getnetbyname
\
getopt_long
\
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
0
View file @
5ac2a538
...
...
@@ -916,10 +916,12 @@ AC_CHECK_FUNCS(\
chsize \
clone \
ecvt \
fcvt \
finite \
fpclass \
ftruncate \
ftruncate64 \
gcvt \
getnetbyaddr \
getnetbyname \
getopt_long \
...
...
This diff is collapsed.
Click to expand it.
include/config.h.in
+
6
−
0
View file @
5ac2a538
...
...
@@ -77,6 +77,9 @@
/* Define to 1 if you have the <elf.h> header file. */
#undef HAVE_ELF_H
/* Define to 1 if you have the `fcvt' function. */
#undef HAVE_FCVT
/* Define to 1 if you have the `finite' function. */
#undef HAVE_FINITE
...
...
@@ -122,6 +125,9 @@
/* Define to 1 if you have the `ftruncate64' function. */
#undef HAVE_FTRUNCATE64
/* Define to 1 if you have the `gcvt' function. */
#undef HAVE_GCVT
/* Define to 1 if you have the `getbkgd' function. */
#undef HAVE_GETBKGD
...
...
This diff is collapsed.
Click to expand it.
library/port.c
+
5
−
6
View file @
5ac2a538
...
...
@@ -620,11 +620,6 @@ unsigned short* wine_rewrite_s4tos2(const wchar_t* str4 )
}
#ifndef HAVE_ECVT
/*
* NetBSD 1.5 doesn't have ecvt, fcvt, gcvt. We just check for ecvt, though.
* Fix/verify these implementations !
*/
/***********************************************************************
* ecvt
*/
...
...
@@ -638,7 +633,9 @@ char *ecvt (double number, int ndigits, int *decpt, int *sign)
*
decpt
=
(
dec
)
?
(
int
)
dec
-
(
int
)
buf
:
-
1
;
return
buf
;
}
#endif
/* HAVE_ECVT */
#ifndef HAVE_FCVT
/***********************************************************************
* fcvt
*/
...
...
@@ -652,7 +649,9 @@ char *fcvt (double number, int ndigits, int *decpt, int *sign)
*
decpt
=
(
dec
)
?
(
int
)
dec
-
(
int
)
buf
:
-
1
;
return
buf
;
}
#endif
/* HAVE_FCVT */
#ifndef HAVE_GCVT
/***********************************************************************
* gcvt
*
...
...
@@ -663,7 +662,7 @@ char *gcvt (double number, size_t ndigit, char *buff)
sprintf
(
buff
,
"%.*E"
,
(
int
)
ndigit
,
number
);
return
buff
;
}
#endif
/* HAVE_
E
CVT */
#endif
/* HAVE_
G
CVT */
#ifndef wine_memcpy_unaligned
...
...
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