felipe                                   Sat, 17 Sep 2011 00:01:45 +0000

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

Log:
- Fixed bug #55231 (Unsatisfied symbols __sync_fetch_and_add_4)

Bug: https://bugs.php.net/55231 (Closed) Unsatisfied symbols 
__sync_fetch_and_add_4
      
Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/standard/php_crypt_r.c
    U   php/php-src/branches/PHP_5_4/ext/standard/php_crypt_r.c
    U   php/php-src/trunk/ext/standard/php_crypt_r.c

Modified: php/php-src/branches/PHP_5_3/ext/standard/php_crypt_r.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/standard/php_crypt_r.c     2011-09-16 
23:34:20 UTC (rev 316884)
+++ php/php-src/branches/PHP_5_3/ext/standard/php_crypt_r.c     2011-09-17 
00:01:45 UTC (rev 316885)
@@ -94,7 +94,7 @@
        if (!initialized) {
 #ifdef PHP_WIN32
                InterlockedIncrement(&initialized);
-#elif (defined(__GNUC__) && !defined(__hpux) && (__GNUC__ > 4 || \
+#elif (defined(__GNUC__) && !defined(__hpux) && !defined(__hppa__) && 
(__GNUC__ > 4 || \
     (__GNUC__ == 4 && (__GNUC_MINOR__ > 1 || (__GNUC_MINOR__ == 1 && 
__GNUC_PATCHLEVEL__ > 1)))))
                __sync_fetch_and_add(&initialized, 1);
 #elif defined(HAVE_ATOMIC_H) /* Solaris 10 defines atomic API within */

Modified: php/php-src/branches/PHP_5_4/ext/standard/php_crypt_r.c
===================================================================
--- php/php-src/branches/PHP_5_4/ext/standard/php_crypt_r.c     2011-09-16 
23:34:20 UTC (rev 316884)
+++ php/php-src/branches/PHP_5_4/ext/standard/php_crypt_r.c     2011-09-17 
00:01:45 UTC (rev 316885)
@@ -94,7 +94,7 @@
        if (!initialized) {
 #ifdef PHP_WIN32
                InterlockedIncrement(&initialized);
-#elif (defined(__GNUC__) && !defined(__hpux) && (__GNUC__ > 4 || \
+#elif (defined(__GNUC__) && !defined(__hpux) && !defined(__hppa__) && 
(__GNUC__ > 4 || \
     (__GNUC__ == 4 && (__GNUC_MINOR__ > 1 || (__GNUC_MINOR__ == 1 && 
__GNUC_PATCHLEVEL__ > 1)))))
                __sync_fetch_and_add(&initialized, 1);
 #elif defined(HAVE_ATOMIC_H) /* Solaris 10 defines atomic API within */

Modified: php/php-src/trunk/ext/standard/php_crypt_r.c
===================================================================
--- php/php-src/trunk/ext/standard/php_crypt_r.c        2011-09-16 23:34:20 UTC 
(rev 316884)
+++ php/php-src/trunk/ext/standard/php_crypt_r.c        2011-09-17 00:01:45 UTC 
(rev 316885)
@@ -94,7 +94,7 @@
        if (!initialized) {
 #ifdef PHP_WIN32
                InterlockedIncrement(&initialized);
-#elif (defined(__GNUC__) && !defined(__hpux) && (__GNUC__ > 4 || \
+#elif (defined(__GNUC__) && !defined(__hpux) && !defined(__hppa__) && 
(__GNUC__ > 4 || \
     (__GNUC__ == 4 && (__GNUC_MINOR__ > 1 || (__GNUC_MINOR__ == 1 && 
__GNUC_PATCHLEVEL__ > 1)))))
                __sync_fetch_and_add(&initialized, 1);
 #elif defined(HAVE_ATOMIC_H) /* Solaris 10 defines atomic API within */

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

Reply via email to