summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-04-04 12:31:12 +0000
committerMarcus Boerger <helly@php.net>2004-04-04 12:31:12 +0000
commit8fd505f4b4fc899bc2bd439eb624b1691e056989 (patch)
tree31b96ee5655856a463f4733379b88afd5820e6c7
parent1ca4aca8fb97120c5175b9b2bf6e47abedd168e4 (diff)
downloadphp-git-8fd505f4b4fc899bc2bd439eb624b1691e056989.tar.gz
Add a comment why it is in
-rw-r--r--ext/standard/config.m41
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/config.m4 b/ext/standard/config.m4
index b762e47691..82b5b0b2bb 100644
--- a/ext/standard/config.m4
+++ b/ext/standard/config.m4
@@ -416,6 +416,7 @@ AC_CACHE_CHECK(whether HUGE_VAL + -HUGEVAL == NAN, ac_cv_huge_val_nan,[
int main(int argc, char** argv)
{
#if defined(__sparc__) && !(__GNUC__ >= 3)
+ /* prevent bug #27830 */
return 1;
#else
return zend_isinf(HUGE_VAL) && zend_isnan(HUGE_VAL + -HUGE_VAL) ? 0 : 1;