summaryrefslogtreecommitdiff
path: root/ext/POSIX
Commit message (Collapse)AuthorAgeFilesLines
* If no lchown, not using the args.Jarkko Hietaniemi2014-12-061-0/+3
|
* POSIX math potentially unused vars.Jarkko Hietaniemi2014-12-051-6/+20
|
* POSIX nan: declaring s always potentially unused.Jarkko Hietaniemi2014-12-051-1/+1
|
* Unused hv_store() result.Jarkko Hietaniemi2014-12-051-2/+2
|
* Enable POSIX::strtold() on Windows (GCC) USE_LONG_DOUBLE buildsSteve Hay2014-11-271-0/+2
|
* If no cuserid(), s is unused.Jarkko Hietaniemi2014-11-261-0/+1
|
* Revert "Remove -std=c89/-ansi if freebsd has "inline static" in <fenv.h>"Jarkko Hietaniemi2014-11-261-32/+0
| | | | | | This reverts commit f5fdb0259d5e9470e8291544a8b209e202d36334. (the theory is that 7ff69a2d made this unnecessary)
* Change core to use is_invariant_string()Karl Williamson2014-11-261-3/+3
| | | | | is_ascii_string's name has misled me in the past; the new name is clearer.
* Bump ext/POSIX version to 1.48Karl Williamson2014-11-261-1/+1
|
* Remove -std=c89/-ansi if freebsd has "inline static" in <fenv.h>Jarkko Hietaniemi2014-11-241-0/+32
| | | | | | Since -std=c89 (eq -ansi) simply isn't compatible with "inline static". Based on a fix by TonyC.
* Increase $POSIX::VERSION to 1.47Father Chrysostomos2014-11-201-1/+1
|
* tgamma infinity limit for IEEE quad prec.Jarkko Hietaniemi2014-11-201-1/+7
|
* While the nan() todo remains, at least warn not.Jarkko Hietaniemi2014-11-181-0/+1
|
* Comment reformatting.Jarkko Hietaniemi2014-11-181-2/+4
|
* Use my_tgamma/my_lgamma only ifndef HAS_TGAMMA/HAS_LGAMMA.Jarkko Hietaniemi2014-11-181-2/+2
|
* Platform may have only one of lgamma/tgamma.Jarkko Hietaniemi2014-11-171-12/+11
|
* fma() emulation.Jarkko Hietaniemi2014-11-171-3/+8
|
* No C++ comments, please, we are C89ish.Jarkko Hietaniemi2014-11-171-6/+6
|
* Helper function for 'close enough with epsilon'.Jarkko Hietaniemi2014-11-151-19/+25
|
* The skip count was all wrong.Jarkko Hietaniemi2014-11-151-3/+8
| | | | Though that shows that acosh must be quite widely supported.
* The 0d71ffa7 was quite sloppy with the sub-skips.Jarkko Hietaniemi2014-11-151-28/+17
|
* C99 math: lgamma and tgamma emulations.Jarkko Hietaniemi2014-11-142-18/+154
|
* fdim NaN guard.Jarkko Hietaniemi2014-11-141-1/+1
|
* These are all emulated, so can be tested.Jarkko Hietaniemi2014-11-141-9/+1
|
* Emulate signbit() if necessary.Jarkko Hietaniemi2014-11-142-3/+2
|
* fpclassify is emulated if necessary.Jarkko Hietaniemi2014-11-141-3/+0
|
* We no more need to guard these with HAS_ACOSH.Jarkko Hietaniemi2014-11-141-162/+150
|
* Remove Cygwin cases. Case.Jarkko Hietaniemi2014-11-141-4/+0
|
* Remove unneeded Win32 cases.Jarkko Hietaniemi2014-11-141-35/+0
|
* undef c99_foo ifndef HAS_FOOJarkko Hietaniemi2014-11-141-0/+108
|
* cosh and log10 are already C89.Jarkko Hietaniemi2014-11-141-1/+5
|
* Remove now empty case.Jarkko Hietaniemi2014-11-141-12/+0
|
* Remove unneeded Tru64 cases.Jarkko Hietaniemi2014-11-141-19/+0
|
* VMS should now be handled.Jarkko Hietaniemi2014-11-141-17/+0
|
* We now have symbols for llrint and llround.Jarkko Hietaniemi2014-11-141-2/+2
|
* Android should be doing the Configure scans.Jarkko Hietaniemi2014-11-141-23/+0
|
* Remove trivial unneeded cases of not having C99 math.Jarkko Hietaniemi2014-11-141-53/+0
|
* Only #ifndef gcc cases remain.Jarkko Hietaniemi2014-11-141-10/+1
|
* Remove unneeded HP-UX cases.Jarkko Hietaniemi2014-11-141-5/+0
|
* quadmath has tgammaq, not tgammal.Jarkko Hietaniemi2014-11-141-1/+1
|
* Make the C99 *l test a little bit more accepting.Jarkko Hietaniemi2014-11-141-3/+3
|
* The NO_C99_LONG_DOUBLE_MATH is no more used.Jarkko Hietaniemi2014-11-141-1/+0
|
* AIX: Configure now detect this, leave the comment.Jarkko Hietaniemi2014-11-141-6/+1
| | | | (Some AIX do not have long double math interfaces.)
* Add Configure symbols to all the missing C99 math APIs.Jarkko Hietaniemi2014-11-141-2/+2
| | | | | | | Almost all - e.g. isless() will stand in for the other isfoo() order comparison macros. Also not going for all the *l() versions of each interface.
* NetBSD 5.1 doesn't support some of the new symbols POSIX wantsTony Cook2014-11-101-0/+15
|
* Define my_rint() only when necessary.Jarkko Hietaniemi2014-11-021-0/+2
|
* Bump POSIX version following a7ea4c68ecf.Craig A. Berry2014-10-311-1/+1
|
* POSIX/t/posix.t: Fix skip count for localeless systemsBrian Fraser2014-10-311-1/+1
|
* POSIX: C99 support exceptions on AndroidBrian Fraser2014-10-311-0/+23
|
* deprecate POSIX::tmpnamTony Cook2014-10-143-2/+24
| | | | | This patch avoids repeating the deprecation warning if the same tmpnam() call is executed multiple times.