aboutsummaryrefslogtreecommitdiff
path: root/x11-fonts/fontconfig
diff options
context:
space:
mode:
authorSean Bruno <sbruno@FreeBSD.org>2014-12-08 20:58:36 +0000
committerSean Bruno <sbruno@FreeBSD.org>2014-12-08 20:58:36 +0000
commit411ee01b7f145a4f6f4b340c507bbaf99eb5e639 (patch)
tree9be952ff0004b1608d58b061726c640553cc4046 /x11-fonts/fontconfig
parentca38bca4f7c83e4208a78c4a8854f3c6cf72e547 (diff)
downloadports-411ee01b7f145a4f6f4b340c507bbaf99eb5e639.tar.gz
ports-411ee01b7f145a4f6f4b340c507bbaf99eb5e639.zip
#define fc_atomic_ptr_cmpexch() for mips/mips64 to supported functions. Fixes
build on these arch's PR: 195794 Submitted by: sson Reviewed by: kwm Approved by: mentor (implicit)
Notes
Notes: svn path=/head/; revision=374320
Diffstat (limited to 'x11-fonts/fontconfig')
-rw-r--r--x11-fonts/fontconfig/files/patch-src_fcatomic.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-fonts/fontconfig/files/patch-src_fcatomic.h b/x11-fonts/fontconfig/files/patch-src_fcatomic.h
new file mode 100644
index 000000000000..6eb2bc42fde1
--- /dev/null
+++ b/x11-fonts/fontconfig/files/patch-src_fcatomic.h
@@ -0,0 +1,20 @@
+--- ./src/fcatomic.h.orig 2013-10-11 03:10:18.000000000 +0000
++++ ./src/fcatomic.h 2014-12-06 21:48:12.136252912 +0000
+@@ -96,7 +96,17 @@
+ #define fc_atomic_int_add(AI, V) __sync_fetch_and_add (&(AI), (V))
+
+ #define fc_atomic_ptr_get(P) (void *) (__sync_synchronize (), *(P))
++#if defined(__FreeBSD__) && defined(__mips_n64)
++#include <sys/types.h>
++#include <machine/atomic.h>
++#define fc_atomic_ptr_cmpexch(P,O,N) atomic_cmpset_rel_64 ((uint64_t *)(P), (uint64_t)(O), (uint64_t)(N))
++#elif defined(__FreeBSD__) && defined(__mips)
++#include <sys/types.h>
++#include <machine/atomic.h>
++#define fc_atomic_ptr_cmpexch(P,O,N) atomic_cmpset_rel_32 ((uint32_t *)(P), (uint32_t)(O), (uint32_t)(N))
++#else
+ #define fc_atomic_ptr_cmpexch(P,O,N) __sync_bool_compare_and_swap ((P), (O), (N))
++#endif /* defined(__FreeBSD__) && defined(__mips__) */
+
+
+ #elif !defined(FC_NO_MT) && defined(HAVE_SOLARIS_ATOMIC_OPS)