diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-21 16:43:36 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-21 16:44:47 +0000 |
| commit | 8c2b61d9e63496c082e0bfcb8acdb83802a2ce51 (patch) | |
| tree | 1cab3579a0b0ead40619ba6c9c9b379bdce7c464 /main/db/atomic.patch | |
| parent | fd4991082f052f1b135722bb21e32fc1fdb61f36 (diff) | |
| download | aports-8c2b61d9e63496c082e0bfcb8acdb83802a2ce51.tar.bz2 aports-8c2b61d9e63496c082e0bfcb8acdb83802a2ce51.tar.xz | |
main/db: build fix for gcc8
Diffstat (limited to 'main/db/atomic.patch')
| -rw-r--r-- | main/db/atomic.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/main/db/atomic.patch b/main/db/atomic.patch new file mode 100644 index 0000000000..438fa7eedd --- /dev/null +++ b/main/db/atomic.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; |
