|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-12-21 02:46 UTC] aharvey@php.net
[2009-12-21 10:14 UTC] jani@php.net
[2009-12-29 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 13:00:01 2025 UTC |
Description: ------------ IMHO, it seems to me that the fix of the Bug-id 50226 by Jani in php_date.c is wrong. Really, are you sure at line 38 it is #ifndef HAVE_LLABS and not #ifdef HAVE_LLABS ? With #ifdef the compilation runs finely until the end. Please can you check ? Philippe Reproduce code: --------------- #ifdef PHP_WIN32 # include "win32/php_stdint.h" #endif #ifdef HAVE_LLABS # if defined(__GNUC__) && __GNUC__ < 3 static __inline __int64_t llabs( __int64_t i ) { return i >= 0 ? i : -i; } # elif defined(NETWARE) && defined(__MWERKS__) static __inline long long llabs( long long i ) { return i >= 0 ? i : -i; } # endif #endif