felipe                                   Sat, 06 Mar 2010 14:45:49 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=295891

Log:
- Fixed bug #50358 (Compile failure compiling ext/phar/util.lo)

Bug: http://pecl.php.net/bugs/50358 (unknown) 
      
Changed paths:
    U   pecl/phar/trunk/tar.h
    U   php/php-src/branches/PHP_5_3/NEWS
    U   php/php-src/branches/PHP_5_3/ext/phar/tar.h
    U   php/php-src/trunk/ext/phar/tar.h

Modified: pecl/phar/trunk/tar.h
===================================================================
--- pecl/phar/trunk/tar.h       2010-03-06 13:31:15 UTC (rev 295890)
+++ pecl/phar/trunk/tar.h       2010-03-06 14:45:49 UTC (rev 295891)
@@ -24,8 +24,10 @@
 # define PHAR_TAR_PACK
 #elif defined(__sgi)
 # define PHAR_TAR_PACK
+#elif defined(__GNUC__)
+# define PHAR_TAR_PACK __attribute__((__packed__))
 #else
-# define PHAR_TAR_PACK __attribute__((__packed__))
+# define PHAR_TAR_PACK
 #endif

 #if defined(__sgi)

Modified: php/php-src/branches/PHP_5_3/NEWS
===================================================================
--- php/php-src/branches/PHP_5_3/NEWS   2010-03-06 13:31:15 UTC (rev 295890)
+++ php/php-src/branches/PHP_5_3/NEWS   2010-03-06 14:45:49 UTC (rev 295891)
@@ -17,6 +17,7 @@
 - Fixed bug #50999 (unaligned memory access in dba_fetch()). (Felipe)
 - Fixed bug #50731 (Inconsistent namespaces sent to functions registered with
   spl_autoload_register). (Felipe)
+- Fixed bug #50358 (Compile failure compiling ext/phar/util.lo). (Felipe)

 ?? ??? 20??, PHP 5.3.2
 - Upgraded bundled sqlite to version 3.6.22. (Ilia)

Modified: php/php-src/branches/PHP_5_3/ext/phar/tar.h
===================================================================
--- php/php-src/branches/PHP_5_3/ext/phar/tar.h 2010-03-06 13:31:15 UTC (rev 
295890)
+++ php/php-src/branches/PHP_5_3/ext/phar/tar.h 2010-03-06 14:45:49 UTC (rev 
295891)
@@ -24,8 +24,10 @@
 # define PHAR_TAR_PACK
 #elif defined(__sgi)
 # define PHAR_TAR_PACK
+#elif defined(__GNUC__)
+# define PHAR_TAR_PACK __attribute__((__packed__))
 #else
-# define PHAR_TAR_PACK __attribute__((__packed__))
+# define PHAR_TAR_PACK
 #endif

 #if defined(__sgi)

Modified: php/php-src/trunk/ext/phar/tar.h
===================================================================
--- php/php-src/trunk/ext/phar/tar.h    2010-03-06 13:31:15 UTC (rev 295890)
+++ php/php-src/trunk/ext/phar/tar.h    2010-03-06 14:45:49 UTC (rev 295891)
@@ -24,8 +24,10 @@
 # define PHAR_TAR_PACK
 #elif defined(__sgi)
 # define PHAR_TAR_PACK
+#elif defined(__GNUC__)
+# define PHAR_TAR_PACK __attribute__((__packed__))
 #else
-# define PHAR_TAR_PACK __attribute__((__packed__))
+# define PHAR_TAR_PACK
 #endif

 #if defined(__sgi)

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to