source: scripts/untested/blfs-patches/libfame-0.9.1-gcc34-1.patch@ 7ed0e05

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since 7ed0e05 was fd5b1fe, checked in by Jim Gifford <clfs@…>, 19 years ago

r588@server (orig r586): ryan | 2005-08-05 22:47:43 -0700
Add pile of new patches for blfs packages



  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[fd5b1fe]1Submitted By: Randy McMurchy <randy_at_linuxfromscratch_dot_org>
2Date: 2004-09-04
3Initial Package Version: 0.9.1
4Upstream Status: Not submitted
5Origin: Randy McMurchy
6Description: Fixes libfame library when compiled with GCC-3.4.x
7
8$LastChangedBy: randy $
9$Date: 2004-09-05 00:11:51 -0600 (Sun, 05 Sep 2004) $
10
11diff -Naur libfame-0.9.1-orig/src/half_mmx.h libfame-0.9.1/src/half_mmx.h
12--- libfame-0.9.1-orig/src/half_mmx.h 2002-04-30 18:04:02.000000000 +0000
13+++ libfame-0.9.1/src/half_mmx.h 2004-09-05 03:49:09.666845896 +0000
14@@ -18,7 +18,7 @@
15 */
16 /**************************** half-pixel interpolation ***********************/
17
18-static short const _mmx_one[] = { 1, 1, 1, 1 };
19+const _mmx_one[] = { 1, 1, 1, 1 };
20
21 static void inline mmx_interpolate(unsigned char **ref,
22 int pitch,
23
24diff -Naur libfame-0.9.1-orig/src/half_sse.h libfame-0.9.1/src/half_sse.h
25--- libfame-0.9.1-orig/src/half_sse.h 2002-01-27 02:24:56.000000000 +0000
26+++ libfame-0.9.1/src/half_sse.h 2004-09-05 03:49:39.894250632 +0000
27@@ -19,7 +19,7 @@
28 */
29 /**************************** half-pixel interpolation ***********************/
30
31-static short const _mmx_one[] = { 1, 1, 1, 1 };
32+const _mmx_one[] = { 1, 1, 1, 1 };
33 static unsigned char const _mmx_one_byte[] = {1,1,1,1,1,1,1,1};
34
35
Note: See TracBrowser for help on using the repository browser.