aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/berkeley-db.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/berkeley-db.rb')
-rw-r--r--Library/Formula/berkeley-db.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/Library/Formula/berkeley-db.rb b/Library/Formula/berkeley-db.rb
index 8c1396d57..f5eb323ef 100644
--- a/Library/Formula/berkeley-db.rb
+++ b/Library/Formula/berkeley-db.rb
@@ -7,6 +7,9 @@ class BerkeleyDb < Formula
option 'with-java', 'Compile with Java support.'
+ # Fix build under Xcode 4.6
+ def patches; DATA; end
+
def install
# BerkeleyDB dislikes parallel builds
ENV.deparallelize
@@ -28,3 +31,27 @@ class BerkeleyDb < Formula
end
end
end
+
+__END__
+diff --git a/src/dbinc/atomic.h b/src/dbinc/atomic.h
+index 096176a..561037a 100644
+--- a/src/dbinc/atomic.h
++++ b/src/dbinc/atomic.h
+@@ -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_t *p)
+ * 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;