Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b9965ca6
Commit
b9965ca6
authored
Mar 25, 2009
by
Alexey Kopytov
Browse files
Options
Browse Files
Download
Plain Diff
Automerge
parents
a6975c5f
c4eba1ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
3 deletions
+34
-3
configure.in
configure.in
+21
-0
include/my_global.h
include/my_global.h
+13
-3
No files found.
configure.in
View file @
b9965ca6
...
...
@@ -2085,6 +2085,27 @@ esac
AC_MSG_CHECKING
(
for
isinf
in
<math.h>
)
AC_TRY_LINK
([
#include <math.h>], [float f = 0.0; int r = isinf(f); return r],
AC_MSG_RESULT
(
yes
)
AC_MSG_CHECKING
(
whether isinf
()
is safe to use
in
C code
)
AC_TRY_RUN
([
#include <math.h>
int main
()
{
double
a
=
10.0
;
double
b
=
1e308
;
return
!
isinf
(
a
*
b
)
;
}
]
,
[
AC_MSG_RESULT
(
yes
)]
,
[
AC_MSG_RESULT
(
no
)
AC_DEFINE
([
HAVE_BROKEN_ISINF],
[
1],
[
Define to 1
if
isinf
()
uses 80-bit register
for
intermediate values]
)
]
,
[
# Let's be optimistic when cross-compiling, since the only compiler known
# to be affected by this isinf() bug is GCC 4.3 on 32-bit x86.
AC_MSG_RESULT
([[
cross-compiling, assuming
'yes'
]])
])
AC_MSG_CHECKING
(
whether isinf
()
can be used
in
C++ code
)
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
...
...
include/my_global.h
View file @
b9965ca6
...
...
@@ -905,10 +905,20 @@ typedef SOCKET_SIZE_TYPE size_socket;
#endif
#ifdef HAVE_ISINF
/* isinf() can be used in both C and C++ code */
#define my_isinf(X) isinf(X)
/* Check if C compiler is affected by GCC bug #39228 */
#if !defined(__cplusplus) && defined(HAVE_BROKEN_ISINF)
/* Force store/reload of the argument to/from a 64-bit double */
static
inline
double
my_isinf
(
double
x
)
{
volatile
double
t
=
x
;
return
isinf
(
t
);
}
#else
#define my_isinf(X) (!isfinite(X) && !isnan(X))
/* System-provided isinf() is available and safe to use */
#define my_isinf(X) isinf(X)
#endif
#else
/* !HAVE_ISINF */
#define my_isinf(X) (!finite(X) && !isnan(X))
#endif
/* Define missing math constants. */
...
...
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