summary refs log tree commit diff
path: root/pkgs/development/libraries/db/clang-5.3.patch
diff options
context:
space:
mode:
authorjanus <janus@xn--kn-1ia.guru>2015-11-24 10:59:39 +0000
committerjanus <janus@xn--kn-1ia.guru>2016-01-01 16:59:48 +0000
commita1ade02cdc75a11013c49ad12c7bb4feeec0d080 (patch)
treef7969d9daf6d3e1aebabdf0c085d52a0a0996ca9 /pkgs/development/libraries/db/clang-5.3.patch
parent35cf6c428f05c522a4987d144c8bd5abe6b2f468 (diff)
FreeBSD support
Diffstat (limited to 'pkgs/development/libraries/db/clang-5.3.patch')
-rw-r--r--pkgs/development/libraries/db/clang-5.3.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/db/clang-5.3.patch b/pkgs/development/libraries/db/clang-5.3.patch
new file mode 100644
index 0000000000000..438fa7eedd717
--- /dev/null
+++ b/pkgs/development/libraries/db/clang-5.3.patch
@@ -0,0 +1,20 @@
+--- a/src/dbinc/atomic.h	2013-03-12 14:07:22.000000000 -0400
++++ b/src/dbinc/atomic.h.change	2013-03-12 14:06:35.000000000 -0400
+@@ -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;