diff --git a/srcpkgs/db/patches/gcc-atomic_compare_exchange.patch b/srcpkgs/db/patches/gcc-atomic_compare_exchange.patch new file mode 100644 index 00000000000..d80837fc60e --- /dev/null +++ b/srcpkgs/db/patches/gcc-atomic_compare_exchange.patch @@ -0,0 +1,20 @@ +--- src/dbinc/atomic.h 2013-06-03 21:04:07.000000000 +0200 ++++ src/dbinc/atomic.h 2013-06-03 21:10:53.000000000 +0200 +@@ -144,7 +144,7 @@ + #define atomic_inc(env, p) __atomic_inc(p) + #define atomic_dec(env, p) __atomic_dec(p) + #define atomic_compare_exchange(env, p, o, n) \ +- __atomic_compare_exchange((p), (o), (n)) ++ __atomic_compare_exchange_db((p), (o), (n)) + static inline int __atomic_inc(db_atomic_t *p) + { + int temp; +@@ -176,7 +176,7 @@ + * http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Atomic-Builtins.html + * which configure could be changed to use. + */ +-static inline int __atomic_compare_exchange( ++static inline int __atomic_compare_exchange_db( + db_atomic_t *p, atomic_value_t oldval, atomic_value_t newval) + { + atomic_value_t was; diff --git a/srcpkgs/db/template b/srcpkgs/db/template index 827356a0260..f55f537b83d 100644 --- a/srcpkgs/db/template +++ b/srcpkgs/db/template @@ -1,7 +1,7 @@ # Template file for 'db' pkgname=db version=5.3.28 -revision=6 +revision=7 wrksrc="db-${version}" build_wrksrc="build_unix" build_style=gnu-configure