You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
436 B

  1. --- a/ext/standard/php_crypt_r.c
  2. +++ b/ext/standard/php_crypt_r.c
  3. @@ -96,6 +96,8 @@ void _crypt_extended_init_r(void)
  4. InterlockedIncrement(&initialized);
  5. #elif defined(HAVE_SYNC_FETCH_AND_ADD)
  6. __sync_fetch_and_add(&initialized, 1);
  7. +#elif (defined(__GNUC__) && (__GNUC__ == 3))
  8. + initialized = 1;
  9. #elif defined(HAVE_ATOMIC_H) /* Solaris 10 defines atomic API within */
  10. membar_producer();
  11. atomic_add_int(&initialized, 1);