ID:               31232
 Comment by:       Marcus dot Reimann at reimann-systemberatung dot de
 Reported By:      aaron dot bailey at hp dot com
 Status:           No Feedback
 Bug Type:         Compile Failure
 Operating System: hp-ux 11.11
 PHP Version:      5.0.3
 New Comment:

Aaron's solution works fine under HP-UX 11.0.


Previous Comments:
------------------------------------------------------------------------

[2004-12-29 01:00:22] 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".

------------------------------------------------------------------------

[2004-12-21 19:47:44] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.0-win32-latest.zip

------------------------------------------------------------------------

[2004-12-21 18:25:49] aaron dot bailey at hp dot com

Description:
------------
zend_strtod.c fails compile due to:

#define ULong  u_int32_t

sys/types.h on hp-ux defines as uint32_t

Easy Fix (Line 130):

#if defined(__sparc__) || defined (__ppc__) || defined (__hppa__)
#define u_int32_t uint32_t
#endif 

Expected result:
----------------
#if defined(__sparc__) || defined (__ppc__) || defined (__hppa__)
#define u_int32_t uint32_t
#endif 



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=31232&edit=1

Reply via email to