diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2016-11-06 13:27:16 +0000 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2016-11-06 13:27:16 +0000 |
commit | 7d12c1c7d398d7ba943d21552480ff21a4fbf8c8 (patch) | |
tree | e0f631d7ad628b5af43bd401cdbce92ed6039e8a /graphics/goom/files/patch-src_mmx.h | |
parent | Remove expat dependency. (diff) |
Add LICENSE (LGPL20)
Convert knobs to options
Convert to USES=localbase
Specifically disable SDL or it will not build when SDL is installed
Simplify BROKEN
Add missing file to pkg-plist
Regenerate/rename patches
Bump PORTREVISION
Notes
Notes:
svn path=/head/; revision=425490
Diffstat (limited to 'graphics/goom/files/patch-src_mmx.h')
-rw-r--r-- | graphics/goom/files/patch-src_mmx.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/graphics/goom/files/patch-src_mmx.h b/graphics/goom/files/patch-src_mmx.h new file mode 100644 index 000000000000..16a8568e98b1 --- /dev/null +++ b/graphics/goom/files/patch-src_mmx.h @@ -0,0 +1,18 @@ +--- src/mmx.h.orig 2005-02-07 13:46:41 UTC ++++ src/mmx.h +@@ -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 + |