Browse Source

Rene Rebe:


			
			
				rocklinux
			
			
		
Rene Rebe 21 years ago
parent
commit
0f668aa847
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      package/powerpc/yaboot/gcc34.patch

+ 19
- 0
package/powerpc/yaboot/gcc34.patch

@ -0,0 +1,19 @@
The usual gcc-3.4 fixes.
- Rene Rebe <rene@rocklinux.org>
diff -ur yaboot-1.3.11-orig/lib/strstr.c yaboot-1.3.11/lib/strstr.c
--- yaboot-1.3.11-orig/lib/strstr.c 2001-09-20 15:15:31.000000000 +0200
+++ yaboot-1.3.11/lib/strstr.c 2004-05-04 11:23:49.000000000 +0200
@@ -76,7 +76,9 @@
a = *++haystack;
if (a == '\0')
goto ret0;
-shloop: }
+shloop:
+ ((void)0);
+ }
while (a != b);
jin: a = *++haystack;

Loading…
Cancel
Save