From 38b667a0aa7849a3708f8508f4175b7887f7068a Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 1 May 2003 01:11:52 +0000 Subject: [PATCH] Disable MIPS, 'cuz it's broken. Original commit message from CVS: Disable MIPS, 'cuz it's broken. --- gst/gstatomic_impl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/gstatomic_impl.h b/gst/gstatomic_impl.h index 4d0459b6f0..279a75e80e 100644 --- a/gst/gstatomic_impl.h +++ b/gst/gstatomic_impl.h @@ -290,7 +290,9 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint) } /***** MIPS *****/ -#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__) +/* This is disabled because the asm code is broken on most MIPS + * processors and doesn't generally compile. */ +#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__) && 0 GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; } GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }