Commit 67a9bb59a373d646eb8cbed468d4c14805ca5d6a
- Diff rendering mode:
- inline
- side by side
etc/ChangeLog-5.1
(6 / 0)
|   | |||
| 1 | 2008-01-11 Petr Ovtchenkov <complement@users.sourceforge.net> | ||
| 2 | |||
| 3 | * src/num_put_float.cpp, stlport/stl/_cstdlib.h, stlport/stl/config/_hpux.h: | ||
| 4 | On HPUX IA64 gcc have <wchar.h> and <cwchar> files, but they are conflict | ||
| 5 | with <stl/_mbstate_t.h>; suggested by KBac, patch #1868233. | ||
| 6 | |||
| 1 | 7 | 2008-01-02 Francois Dumont <dums@users.sourceforge.net> | |
| 2 | 8 | ||
| 3 | 9 | * src/_stdio_file.h: Apply Windows CE fix already present in trunk to |
src/num_put_float.cpp
(7 / 7)
|   | |||
| 150 | 150 | extern double copysign(double, double); | |
| 151 | 151 | extern const float _SINFINITY; | |
| 152 | 152 | extern const float _SQNAN; | |
| 153 | # if defined (_PA_RISC) | ||
| 153 | //# if defined (_PA_RISC) | ||
| 154 | 154 | # define _ISNAN(x) (_IS32(x)?_Isnanf(x):(isnan)(x)) | |
| 155 | 155 | # define _ISINF(x) (_IS32(x)?_Isinff(x):_Isinf(x)) | |
| 156 | 156 | # define _SIGNBIT(x) (_IS32(x)?_Signbitf(x):_Signbit(x)) | |
| … | … | ||
| 171 | 171 | extern int _Isunorderedf(float, float); | |
| 172 | 172 | extern int _Fpclassify(double); | |
| 173 | 173 | extern int _Fpclassifyf(float); | |
| 174 | # else | ||
| 175 | # include "math_ia64_internal.h" | ||
| 176 | # define _FPCLASSIFY(x) (_IS32(x)?_Fpclassf(x):_Fpclass(x)) | ||
| 177 | extern int _Fpclass(double); | ||
| 178 | extern int _Fpclassf(float); | ||
| 179 | # endif | ||
| 174 | //# else | ||
| 175 | //# include "math_ia64_internal.h" | ||
| 176 | //# define _FPCLASSIFY(x) (_IS32(x)?_Fpclassf(x):_Fpclass(x)) | ||
| 177 | // extern int _Fpclass(double); | ||
| 178 | // extern int _Fpclassf(float); | ||
| 179 | //# endif | ||
| 180 | 180 | } | |
| 181 | 181 | ||
| 182 | 182 | # if !defined (_INCLUDE_XOPEN_SOURCE_EXTENDED) |
stlport/stl/_cstdlib.h
(8 / 0)
|   | |||
| 58 | 58 | // these functions just don't exist on Windows CE | |
| 59 | 59 | using _STLP_VENDOR_CSTD::abort; | |
| 60 | 60 | using _STLP_VENDOR_CSTD::getenv; | |
| 61 | |||
| 62 | #ifndef __hpux | ||
| 61 | 63 | using _STLP_VENDOR_CSTD::mblen; | |
| 62 | 64 | using _STLP_VENDOR_CSTD::mbtowc; | |
| 65 | #endif | ||
| 66 | |||
| 63 | 67 | using _STLP_VENDOR_CSTD::system; | |
| 64 | 68 | using _STLP_VENDOR_CSTD::bsearch; | |
| 65 | 69 | # endif | |
| … | … | ||
| 76 | 76 | using _STLP_VENDOR_CSTD::atof; | |
| 77 | 77 | using _STLP_VENDOR_CSTD::atoi; | |
| 78 | 78 | using _STLP_VENDOR_CSTD::atol; | |
| 79 | |||
| 80 | #ifndef __hpux | ||
| 79 | 81 | using _STLP_VENDOR_CSTD::mbstowcs; | |
| 82 | #endif | ||
| 83 | |||
| 80 | 84 | using _STLP_VENDOR_CSTD::strtod; | |
| 81 | 85 | using _STLP_VENDOR_CSTD::strtol; | |
| 82 | 86 | using _STLP_VENDOR_CSTD::strtoul; |
stlport/stl/config/_hpux.h
(1 / 0)
|   | |||
| 5 | 5 | ||
| 6 | 6 | #ifdef __GNUC__ | |
| 7 | 7 | # define _STLP_NO_WCHAR_T | |
| 8 | # define _STLP_NO_CWCHAR | ||
| 8 | 9 | # define _STLP_NO_LONG_DOUBLE | |
| 9 | 10 | #endif | |
| 10 | 11 |

