ID: 31232 Updated by: [EMAIL PROTECTED] Reported By: aaron dot bailey at hp dot com -Status: No Feedback +Status: Closed Bug Type: Compile Failure Operating System: hp-ux 11.11 PHP Version: 5.0.3 New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [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