From 85c3c5745f64f48d5f847cea57b4cc182d9aed78 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 3 Feb 2011 01:36:26 +0000 Subject: [PATCH] [packages] php5: add upstream fix for "php_crypt_r.c:(.text+0x5a8): undefined reference to `membar_producer'" SVN-Revision: 25335 --- lang/php5/patches/001-upstream-r306305.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lang/php5/patches/001-upstream-r306305.patch diff --git a/lang/php5/patches/001-upstream-r306305.patch b/lang/php5/patches/001-upstream-r306305.patch new file mode 100644 index 0000000000..f55a6d2ba5 --- /dev/null +++ b/lang/php5/patches/001-upstream-r306305.patch @@ -0,0 +1,11 @@ +--- 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(); -- 2.30.2