Browse Source

Clifford Wolf:


			
			
				rocklinux
			
			
		
Clifford Wolf 20 years ago
parent
commit
a4107096dc
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      package/public/cinepaint/hotfix-binutils-gcc.patch

+ 17
- 0
package/public/cinepaint/hotfix-binutils-gcc.patch

@ -0,0 +1,17 @@
Hotfix needed for new binutils (bug is in gcc)
(see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16625)
--- ./plug-ins/bracketing_to_hdr/CurveTnt.hpp.orig 2006-03-10 13:29:49.000000000 +0100
+++ ./plug-ins/bracketing_to_hdr/CurveTnt.hpp 2006-03-10 13:31:35.000000000 +0100
@@ -704,7 +704,10 @@
case 'i':
invert(); redraw(); return 1;
+ } // switch text()[0]
+ switch (Fl::event_text()[0])
+ {
case '1': case '2': case '3': case '4': case '5':
case '6': case '7': case '8': case '9':
printf("%s, atoi()=%d\n", Fl::event_text(), atoi(Fl::event_text()));

Loading…
Cancel
Save