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
9fdfaaf9
Commit
9fdfaaf9
authored
Mar 28, 2008
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler warning about finite() missing on Solaris.
parent
85a89690
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
3 deletions
+15
-3
Objects/complexobject.c
Objects/complexobject.c
+4
-0
Objects/floatobject.c
Objects/floatobject.c
+4
-0
configure
configure
+3
-2
configure.in
configure.in
+1
-1
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Objects/complexobject.c
View file @
9fdfaaf9
...
...
@@ -8,6 +8,10 @@
#include "Python.h"
#include "structmember.h"
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
#ifndef WITHOUT_COMPLEX
/* Precisions used by repr() and str(), respectively.
...
...
Objects/floatobject.c
View file @
9fdfaaf9
...
...
@@ -10,6 +10,10 @@
#include <ctype.h>
#include <float.h>
#ifdef HAVE_IEEEFP_H
#include <ieeefp.h>
#endif
#include "formatter_string.h"
#if !defined(__STDC__)
...
...
configure
View file @
9fdfaaf9
#! /bin/sh
# From configure.in Revision: 61
722
.
# From configure.in Revision: 61
847
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.6.
#
...
...
@@ -5419,11 +5419,12 @@ done
for
ac_header
in
asm/types.h conio.h curses.h direct.h dlfcn.h errno.h
\
fcntl.h grp.h
\
io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h
\
i
eeefp.h i
o.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h
\
shadow.h signal.h stdint.h stropts.h termios.h thread.h
\
unistd.h utime.h
\
sys/audioio.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h
\
...
...
configure.in
View file @
9fdfaaf9
...
...
@@ -1099,7 +1099,7 @@ dnl AC_MSG_RESULT($cpp_type)
AC_HEADER_STDC
AC_CHECK_HEADERS(asm/types.h conio.h curses.h direct.h dlfcn.h errno.h \
fcntl.h grp.h \
io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
i
eeefp.h i
o.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
shadow.h signal.h stdint.h stropts.h termios.h thread.h \
unistd.h utime.h \
sys/audioio.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \
...
...
pyconfig.h.in
View file @
9fdfaaf9
...
...
@@ -300,6 +300,9 @@
/* Define to 1 if you have the `hypot' function. */
#undef HAVE_HYPOT
/* Define to 1 if you have the <ieeefp.h> header file. */
#undef HAVE_IEEEFP_H
/* Define if you have the 'inet_aton' function. */
#undef HAVE_INET_ATON
...
...
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