mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
626 B

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