Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f253786a
Commit
f253786a
authored
Apr 18, 2009
by
Mark Dickinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add check for C99 round function to configure, and define
a fallback function if round doesn't exist.
parent
f498113f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
3 deletions
+24
-3
Include/pymath.h
Include/pymath.h
+4
-0
Python/pymath.c
Python/pymath.c
+13
-0
configure
configure
+3
-2
configure.in
configure.in
+1
-1
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Include/pymath.h
View file @
f253786a
...
...
@@ -22,6 +22,10 @@ functions and constants
extern
double
copysign
(
double
,
double
);
#endif
#ifndef HAVE_ROUND
extern
double
round
(
double
);
#endif
#ifndef HAVE_ACOSH
extern
double
acosh
(
double
);
#endif
...
...
Python/pymath.c
View file @
f253786a
...
...
@@ -69,6 +69,19 @@ copysign(double x, double y)
}
#endif
/* HAVE_COPYSIGN */
#ifndef HAVE_ROUND
double
round
(
double
x
)
{
double
absx
,
y
;
absx
=
fabs
(
x
);
y
=
floor
(
absx
);
if
(
absx
-
y
>=
0
.
5
)
y
+=
1
.
0
;
return
copysign
(
y
,
x
);
}
#endif
/* HAVE_ROUND */
#ifndef HAVE_LOG1P
#include <float.h>
...
...
configure
View file @
f253786a
#! /bin/sh
# From configure.in Revision: 71
274
.
# From configure.in Revision: 71
663
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 3.1.
#
...
...
@@ -22310,7 +22310,8 @@ fi
for
ac_func
in
acosh asinh atanh copysign expm1 finite hypot log1p
for
ac_func
in
acosh asinh atanh copysign expm1 finite hypot log1p round
do
as_ac_var
=
`
echo
"ac_cv_func_
$ac_func
"
|
$as_tr_sh
`
{
echo
"
$as_me
:
$LINENO
: checking for
$ac_func
"
>
&5
...
...
configure.in
View file @
f253786a
...
...
@@ -3337,7 +3337,7 @@ then
[Define if tanh(-0.) is -0., or if platform doesn't have signed zeros])
fi
AC_CHECK_FUNCS([acosh asinh atanh copysign expm1 finite hypot log1p])
AC_CHECK_FUNCS([acosh asinh atanh copysign expm1 finite hypot log1p
round
])
AC_CHECK_DECLS([isinf, isnan, isfinite], [], [], [[#include <math.h>]])
LIBS=$LIBS_SAVE
...
...
pyconfig.h.in
View file @
f253786a
...
...
@@ -521,6 +521,9 @@
/* Define if you have readline 4.0 */
#undef HAVE_RL_PRE_INPUT_HOOK
/* Define to 1 if you have the `round' function. */
#undef HAVE_ROUND
/* Define to 1 if you have the `select' function. */
#undef HAVE_SELECT
...
...
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