packages/lang/php5/patches/001-upstream-r306305.patch
jow 21acab845d [packages] php5: add upstream fix for "php_crypt_r.c:(.text+0x5a8): undefined reference to `membar_producer'"
git-svn-id: svn://svn.openwrt.org/openwrt/packages@25335 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-02-03 01:36:26 +00:00

12 lines
470 B
Diff

--- a/ext/standard/php_crypt_r.c
+++ b/ext/standard/php_crypt_r.c
@@ -94,7 +94,7 @@ void _crypt_extended_init_r(void)
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();