php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #50537 llabs() not defined but is defined..
Submitted: 2009-12-20 15:23 UTC Modified: 2009-12-29 01:00 UTC
From: dax at enst dot fr Assigned: jani (profile)
Status: No Feedback Package: Compile Failure
PHP Version: 5.3.1 OS: Solaris9
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: dax at enst dot fr
New email:
PHP Version: OS:

 

 [2009-12-20 15:23 UTC] dax at enst dot fr
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


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-12-21 02:46 UTC] aharvey@php.net
FTR, I believe the OP is actually referring to the fix for bug #50266, which was revision 291371.
 [2009-12-21 10:14 UTC] jani@php.net
1. Fix the summary. No idea what your problem really is.
2. Yes, I'm quite sure we should not define llabs() if it's already defined. WHAT exactly is the error you get?
 [2009-12-29 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue May 14 17:01:33 2024 UTC