On Monday 03 February 2003 11:00, Austin Acton wrote:
> spiralsynthmodular
> freqtweak       done (austin)
> spiralloops
> spiralsynth
> snd             done (austin)
> (We may need a C++ hacker to get *spiral* apps to compile as they are
> very non-ANSI code.)

Here are the diff needed to get spiralsynthmodular to compile on 9.0. They 
were trivial replacements of #include "Fl/xx.h" with #include "FL/xx.h" (Note 
the uppercase L). The affected files were:

GUI/Widgets/Fl_Canvas.C
SpiralSound/Plugins/Widgets/Fl_Knob.cxx
SpiralSound/Plugins/Widgets/Fl_Knob.H

I wouldn't be able to provide an rpm  even if my life depended on it, ... so I 
can only hope that this makes a packager's life easier :-)

narfi.

/home/narfi/src/spiralmodular-0.2.0[1123] > for i in `find . -name '*~'`; do 
base=`echo $i | sed 's/~$//'`; diff -u $i $base ; done
--- ./GUI/Widgets/Fl_Canvas.C~  2002-12-05 17:42:29.000000000 -0600
+++ ./GUI/Widgets/Fl_Canvas.C   2003-02-03 11:21:16.000000000 -0600
@@ -16,7 +16,7 @@
  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 
USA.
 */

-#include "Fl/fl_draw.H"
+#include "FL/fl_draw.H"
 #include "Fl_Canvas.h"
 #include "Fl_DeviceGUI.h"
 #include <iostream>
--- ./SpiralSound/Plugins/Widgets/Fl_Knob.cxx~  2002-09-18 15:04:55.000000000 
-0500
+++ ./SpiralSound/Plugins/Widgets/Fl_Knob.cxx   2003-02-03 11:24:31.000000000 
-0600
@@ -1,7 +1,7 @@
 // generated by Fast Light User Interface Designer (fluid) version 1.0100

 #include "Fl_Knob.H"
-#include <Fl/fl_draw.H>
+#include <FL/fl_draw.H>
 #include <math.h>

 Fl_Knob::Fl_Knob(int xx,int yy,int ww,int hh,const char *l): 
Fl_Valuator(xx,yy,ww,hh,l) {
--- ./SpiralSound/Plugins/Widgets/Fl_Knob.H~    2002-09-18 15:04:55.000000000 
-0500
+++ ./SpiralSound/Plugins/Widgets/Fl_Knob.H     2003-02-03 11:22:46.000000000 
-0600
@@ -3,7 +3,7 @@
 #ifndef Fl_Knob_H
 #define Fl_Knob_H
 #include <FL/Fl.H>
-#include <Fl/Fl_Valuator.H>
+#include <FL/Fl_Valuator.H>

 class Fl_Knob : public Fl_Valuator {
 public:

Reply via email to