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
28a54059
Commit
28a54059
authored
Jun 17, 2016
by
Daniel Lehman
Committed by
Alexandre Julliard
Aug 15, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add lgamma.
Signed-off-by:
Daniel Lehman
<
dlehman@esri.com
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fcd0f6b0
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
56 additions
and
12 deletions
+56
-12
configure
configure
+2
-0
configure.ac
configure.ac
+2
-0
api-ms-win-crt-math-l1-1-0.spec
...pi-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
+3
-3
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+3
-3
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+3
-3
math.c
dlls/msvcrt/math.c
+34
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+3
-3
config.h.in
include/config.h.in
+6
-0
No files found.
configure
View file @
28a54059
...
...
@@ -16935,6 +16935,8 @@ for ac_func in \
erff
\
exp2
\
exp2f
\
lgamma
\
lgammaf
\
llrint
\
llrintf
\
llround
\
...
...
configure.ac
View file @
28a54059
...
...
@@ -2527,6 +2527,8 @@ AC_CHECK_FUNCS(\
erff \
exp2 \
exp2f \
lgamma \
lgammaf \
llrint \
llrintf \
llround \
...
...
dlls/api-ms-win-crt-math-l1-1-0/api-ms-win-crt-math-l1-1-0.spec
View file @
28a54059
...
...
@@ -258,9 +258,9 @@
@ stub ilogbf
@ stub ilogbl
@ cdecl ldexp(double long) ucrtbase.ldexp
@
stub
lgamma
@
stub
lgammaf
@
stub
lgammal
@
cdecl lgamma(double) ucrtbase.
lgamma
@
cdecl lgammaf(float) ucrtbase.
lgammaf
@
cdecl lgammal(double) ucrtbase.
lgammal
@ cdecl -ret64 llrint(double) ucrtbase.llrint
@ cdecl -ret64 llrintf(float) ucrtbase.llrintf
@ cdecl -ret64 llrintl(double) ucrtbase.llrintl
...
...
dlls/msvcr120/msvcr120.spec
View file @
28a54059
...
...
@@ -2243,9 +2243,9 @@
@ cdecl labs(long) MSVCRT_labs
@ cdecl ldexp(double long) MSVCRT_ldexp
@ cdecl ldiv(long long) MSVCRT_ldiv
@
stub
lgamma
@
stub
lgammaf
@
stub
lgammal
@
cdecl lgamma(double) MSVCR120_
lgamma
@
cdecl lgammaf(float) MSVCR120_
lgammaf
@
cdecl lgammal(double) MSVCR120_
lgammal
@ cdecl -ret64 llabs(int64) MSVCRT_llabs
@ stub lldiv
@ cdecl -ret64 llrint(double) MSVCR120_llrint
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
28a54059
...
...
@@ -1906,9 +1906,9 @@
@ cdecl labs(long) msvcr120.labs
@ cdecl ldexp(double long) msvcr120.ldexp
@ cdecl ldiv(long long) msvcr120.ldiv
@
stub
lgamma
@
stub
lgammaf
@
stub
lgammal
@
cdecl lgamma(double) msvcr120.
lgamma
@
cdecl lgammaf(float) msvcr120.
lgammaf
@
cdecl lgammal(double) msvcr120.
lgammal
@ cdecl -ret64 llabs(int64) msvcr120.llabs
@ stub lldiv
@ cdecl -ret64 llrint(double) msvcr120.llrint
...
...
dlls/msvcrt/math.c
View file @
28a54059
...
...
@@ -2843,3 +2843,37 @@ LDOUBLE CDECL MSVCR120_remainderl(LDOUBLE x, LDOUBLE y)
{
return
MSVCR120_remainder
(
x
,
y
);
}
/*********************************************************************
* lgamma (MSVCR120.@)
*/
double
CDECL
MSVCR120_lgamma
(
double
x
)
{
#ifdef HAVE_LGAMMA
return
lgamma
(
x
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
.
0
;
#endif
}
/*********************************************************************
* lgammaf (MSVCR120.@)
*/
float
CDECL
MSVCR120_lgammaf
(
float
x
)
{
#ifdef HAVE_LGAMMAF
return
lgammaf
(
x
);
#else
FIXME
(
"not implemented
\n
"
);
return
0
.
0
f
;
#endif
}
/*********************************************************************
* lgammal (MSVCR120.@)
*/
LDOUBLE
CDECL
MSVCR120_lgammal
(
LDOUBLE
x
)
{
return
MSVCR120_lgamma
(
x
);
}
dlls/ucrtbase/ucrtbase.spec
View file @
28a54059
...
...
@@ -2377,9 +2377,9 @@
@ cdecl labs(long) MSVCRT_labs
@ cdecl ldexp(double long) MSVCRT_ldexp
@ cdecl ldiv(long long) MSVCRT_ldiv
@
stub
lgamma
@
stub
lgammaf
@
stub
lgammal
@
cdecl lgamma(double) MSVCR120_
lgamma
@
cdecl lgammaf(float) MSVCR120_
lgammaf
@
cdecl lgammal(double) MSVCR120_
lgammal
@ cdecl -ret64 llabs(int64) MSVCRT_llabs
@ stub lldiv
@ cdecl -ret64 llrint(double) MSVCR120_llrint
...
...
include/config.h.in
View file @
28a54059
...
...
@@ -351,6 +351,12 @@
/* Define to 1 if you have the `ldap_parse_vlv_control' function. */
#undef HAVE_LDAP_PARSE_VLV_CONTROL
/* Define to 1 if you have the `lgamma' function. */
#undef HAVE_LGAMMA
/* Define to 1 if you have the `lgammaf' function. */
#undef HAVE_LGAMMAF
/* Define to 1 if you have the `gettextpo' library (-lgettextpo). */
#undef HAVE_LIBGETTEXTPO
...
...
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