diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-10-28 11:31:05 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-10-28 11:31:05 +0800 |
commit | 5ec702b623c8a1f08ef1a6b8c0e3a4fcf7eb86cc (patch) | |
tree | 3bbfddef65288b91f1e00318e4701056aa7ddaa6 /multimedia/xmps/files | |
parent | 9f8d855ec7dc322f87df238e932cba749631adaa (diff) | |
download | freebsd-ports-gnome-5ec702b623c8a1f08ef1a6b8c0e3a4fcf7eb86cc.tar.gz freebsd-ports-gnome-5ec702b623c8a1f08ef1a6b8c0e3a4fcf7eb86cc.tar.zst freebsd-ports-gnome-5ec702b623c8a1f08ef1a6b8c0e3a4fcf7eb86cc.zip |
Fix build with gcc 3.3.1.
Bump PORTREVISION.
Diffstat (limited to 'multimedia/xmps/files')
-rw-r--r-- | multimedia/xmps/files/patch-codecs-video-mpeg3-motion_comp.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/multimedia/xmps/files/patch-codecs-video-mpeg3-motion_comp.c b/multimedia/xmps/files/patch-codecs-video-mpeg3-motion_comp.c new file mode 100644 index 000000000000..07e2c5ae73e4 --- /dev/null +++ b/multimedia/xmps/files/patch-codecs-video-mpeg3-motion_comp.c @@ -0,0 +1,20 @@ +--- codecs/video/mpeg3/motion_comp.c.orig Tue Oct 28 08:53:27 2003 ++++ codecs/video/mpeg3/motion_comp.c Tue Oct 28 08:55:16 2003 +@@ -66,7 +66,7 @@ + // mc function template + + #define MC_FUNC(op,xy) \ +-static void motion_comp_##op####xy##_16x16_c (uint8_t * dest, \ ++static void motion_comp_##op##xy##_16x16_c (uint8_t * dest, \ + uint8_t * ref, \ + int stride, \ + int height) \ +@@ -92,7 +92,7 @@ + dest += stride; \ + } while (--height); \ + } \ +-static void motion_comp_##op####xy##_8x8_c (uint8_t * dest, \ ++static void motion_comp_##op##xy##_8x8_c (uint8_t * dest, \ + uint8_t * ref, \ + int stride, \ + int height) \ |