diff options
author | kwm <kwm@FreeBSD.org> | 2013-02-08 08:17:38 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-02-08 08:17:38 +0800 |
commit | 8ddc2e3d479a8ff8fa1d6b4125495ff78e24e044 (patch) | |
tree | d2a3ccf9a099d8fae7378cdf2632fd47001ad575 /multimedia | |
parent | 3193e093ed75be98e0d493a379f91c0f8640b869 (diff) | |
download | freebsd-ports-gnome-8ddc2e3d479a8ff8fa1d6b4125495ff78e24e044.tar.gz freebsd-ports-gnome-8ddc2e3d479a8ff8fa1d6b4125495ff78e24e044.tar.zst freebsd-ports-gnome-8ddc2e3d479a8ff8fa1d6b4125495ff78e24e044.zip |
Fix the build on i386 with clang 3.2.
Reported by: Armin Pirkovitsch
Patch submitted by: dim@
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h b/multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h new file mode 100644 index 000000000000..3016bfb23d3d --- /dev/null +++ b/multimedia/gstreamer-plugins-good/files/patch-gst_goom_mmx.h @@ -0,0 +1,18 @@ +--- gst/goom/mmx.h.orig 2011-12-11 19:48:11.000000000 +0100 ++++ gst/goom/mmx.h 2013-02-08 00:54:14.000000000 +0100 +@@ -715,13 +715,13 @@ void zoom_filter_xmmx (int prevX, int pr + { \ + printf("emms()\n"); \ + __asm__ __volatile__ ("emms" \ +- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \ ++ "st", "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)"); \ + } + + #else + + #define emms() __asm__ __volatile__ ("emms"::: \ +- "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)") ++ "st", "st(1)","st(2)","st(3)","st(4)","st(5)","st(6)","st(7)") + + #endif + |