Patch fix-predefined-constant-__GNUC_MINOR__ for Compile Failure Bug #53832
Patch version 2011-01-24 22:38 UTC
Return to Bug #53832 |
Download this patch
Patch Revisions:
Developer: shd@earthling.net
diff -ur php-5.3.5.orig/ext/standard/php_crypt_r.c php-5.3.5/ext/standard/php_crypt_r.c
--- php-5.3.5.orig/ext/standard/php_crypt_r.c 2010-06-17 12:22:03.000000000 +0200
+++ php-5.3.5/ext/standard/php_crypt_r.c 2011-01-24 23:28:15.000000000 +0100
@@ -94,7 +94,7 @@
if (!initialized) {
#ifdef PHP_WIN32
InterlockedIncrement(&initialized);
-#elif (defined(__GNUC__) && (__GNUC__ >= 4 && __GNUC_MINOR >= 2))
+#elif (defined(__GNUC__) && (__GNUC__ >= 4 && __GNUC_MINOR__ >= 2))
__sync_fetch_and_add(&initialized, 1);
#elif defined(HAVE_ATOMIC_H) /* Solaris 10 defines atomic API within */
membar_producer();
|