diff options
author | mandree <mandree@FreeBSD.org> | 2012-06-15 14:27:10 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2012-06-15 14:27:10 +0800 |
commit | 2b36fe0f63ae245e152491f3c9f0b5362f83cdcb (patch) | |
tree | 388a706bff15992696ad735df8d6a16eecdd7e0a | |
parent | a1f7a7b4126b688009ebfece767158ceac4d390b (diff) | |
download | freebsd-ports-gnome-2b36fe0f63ae245e152491f3c9f0b5362f83cdcb.tar.gz freebsd-ports-gnome-2b36fe0f63ae245e152491f3c9f0b5362f83cdcb.tar.zst freebsd-ports-gnome-2b36fe0f63ae245e152491f3c9f0b5362f83cdcb.zip |
Backport Dimitry's clang compilation fix from databases/db5.
Reported by: Dima Panov
-rw-r--r-- | databases/db48/files/patch-dbinc_atomic.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/databases/db48/files/patch-dbinc_atomic.h b/databases/db48/files/patch-dbinc_atomic.h new file mode 100644 index 000000000000..1faca97d705b --- /dev/null +++ b/databases/db48/files/patch-dbinc_atomic.h @@ -0,0 +1,20 @@ +--- ../dbinc/atomic.h.orig 2012-02-29 19:48:38.000000000 +0100 ++++ ../dbinc/atomic.h 2012-05-04 22:39:32.000000000 +0200 +@@ -144,7 +144,7 @@ typedef LONG volatile *interlocked_val; + #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 @@ static inline int __atomic_dec(db_atomic + * 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; |