diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-12-08 19:29:09 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-12-08 19:29:09 +0000 |
commit | aa4fbca3ff98b6e58892b8126dfe36ed5185950f (patch) | |
tree | 17ad109821dab1fad55eb0bf5a28dcba4eaaf2e9 /multimedia/libfame | |
parent | bcba0638b2310e8b61476ae6452ae2b673d4523c (diff) | |
download | ports-aa4fbca3ff98b6e58892b8126dfe36ed5185950f.tar.gz ports-aa4fbca3ff98b6e58892b8126dfe36ed5185950f.zip |
Notes
Diffstat (limited to 'multimedia/libfame')
-rw-r--r-- | multimedia/libfame/Makefile | 1 | ||||
-rw-r--r-- | multimedia/libfame/files/patch-mmx_one-gcc34 | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/multimedia/libfame/Makefile b/multimedia/libfame/Makefile index e1e361321d41..2f5828e6a93f 100644 --- a/multimedia/libfame/Makefile +++ b/multimedia/libfame/Makefile @@ -8,6 +8,7 @@ PORTNAME= libfame PORTVERSION= 0.9.1 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= fame diff --git a/multimedia/libfame/files/patch-mmx_one-gcc34 b/multimedia/libfame/files/patch-mmx_one-gcc34 new file mode 100644 index 000000000000..114cb9a1da3e --- /dev/null +++ b/multimedia/libfame/files/patch-mmx_one-gcc34 @@ -0,0 +1,22 @@ +--- src/half_sse.h.orig Tue Dec 7 10:24:14 2004 ++++ src/half_sse.h Tue Dec 7 10:24:29 2004 +@@ -19,7 +19,7 @@ + */ + /**************************** half-pixel interpolation ***********************/ + +-static short const _mmx_one[] = { 1, 1, 1, 1 }; ++const _mmx_one[] = { 1, 1, 1, 1 }; + static unsigned char const _mmx_one_byte[] = {1,1,1,1,1,1,1,1}; + + +--- src/half_mmx.h.orig Tue Dec 7 10:23:21 2004 ++++ src/half_mmx.h Tue Dec 7 10:23:32 2004 +@@ -18,7 +18,7 @@ + */ + /**************************** half-pixel interpolation ***********************/ + +-static short const _mmx_one[] = { 1, 1, 1, 1 }; ++const _mmx_one[] = { 1, 1, 1, 1 }; + + static void inline mmx_interpolate(unsigned char **ref, + int pitch, |