Add /usr/local/lib/faustine and /usr/lib/faustine to preprocessor import path.
authorWANG <wang@wang-OptiPlex-780.(none)>
Mon, 9 Sep 2013 08:40:40 +0000 (10:40 +0200)
committerWANG <wang@wang-OptiPlex-780.(none)>
Mon, 9 Sep 2013 08:40:40 +0000 (10:40 +0200)
Correct the paths in examples.

16 files changed:
examples/2d_fft/fft2d.dsp
examples/2d_fft/fft2d.sh
examples/close/close.dsp
examples/close/close.sh
examples/dilation/dilation.dsp
examples/dilation/dilation.sh
examples/erosion/erosion.dsp
examples/erosion/erosion.sh
examples/fft/fft.dsp
examples/fft/fft.sh
examples/licenseplate/licenceplate.dsp
examples/licenseplate/licenceplate.sh
examples/open/open.dsp
examples/open/open.sh
examples/sinwave/output1.wav
interpretor/preprocessor/faust-0.9.47mr3/compiler/parser/enrobage.cpp

index c77a660..09fff6d 100644 (file)
@@ -1,5 +1,5 @@
-import ( "../../architecture/fft.lib" ) ;
-import ( "../../architecture/complex.lib" ) ;
+import ( "fft.lib" ) ;
+import ( "complex.lib" ) ;
 
 GREY_MAX = 256;
 
index b77b205..fe18645 100644 (file)
@@ -1,2 +1,2 @@
-../../interpretor/faustine -d fft2d.dsp -i hcosine-32.csv --oformat csv
+faustine -d fft2d.dsp -i hcosine-32.csv --oformat csv
 
index 8e283a5..e68d28c 100644 (file)
@@ -1,3 +1,3 @@
-import ("../../architecture/morph.lib");
+import ("morpho.lib");
 
-process = close(119, 123, 2);
+process = closing_square(119, 123, 2);
index 7887cbf..5179de8 100644 (file)
@@ -1 +1 @@
-../../interpretor/faustine -d close.dsp -i circbw.csv --oformat csv
+faustine -d close.dsp -i circbw.csv --oformat csv
index 42b9181..2ea985e 100644 (file)
@@ -1,3 +1,3 @@
-import ("../../architecture/morpho.lib");
+import ("morpho.lib");
 
 process = dilations_square(112, 150, 2);
index 5eed92b..b1e18a5 100644 (file)
@@ -1 +1 @@
-../../interpretor/faustine -d dilation.dsp -i letter_j.csv -t 150 --oformat csv
+faustine -d dilation.dsp -i letter_j.csv -t 150 --oformat csv
index 45c4ffb..79389dd 100644 (file)
@@ -1,3 +1,3 @@
-import ("../../architecture/morph.lib");
+import ("morpho.lib");
 
-process = erosions(112, 150, 2);
+process = erosions_square(112, 150, 2);
index f196796..e905f8b 100644 (file)
@@ -1 +1 @@
-../../interpretor/faustine -d erosion.dsp -i letter_j.csv --oformat csv
+faustine -d erosion.dsp -i letter_j.csv --oformat csv
index 41ad1fe..90f97a1 100644 (file)
@@ -1,5 +1,5 @@
-import ( "../../architecture/fft.lib" ) ;
-import ( "../../architecture/complex.lib" ) ;
+import ("fft.lib");
+import ("complex.lib");
 
 
 
index 03de52b..8bec578 100644 (file)
@@ -1 +1 @@
-../../interpretor/faustine -d fft.dsp -i sin_22000Hz_0.005_ampli_128samples.wav
+faustine -d fft.dsp -i sin_22000Hz_0.005_ampli_128samples.wav
index 2d230c3..f012d4a 100644 (file)
@@ -1,4 +1,4 @@
-import ("../../architecture/morpho.lib");
+import ("morpho.lib");
 
 process = licenceplate(300, 100, 15, 8, 1, 50, 150, 255, 4, 4, 2);
 
index 01e40c8..5380d87 100644 (file)
@@ -1 +1 @@
-../../interpretor/faustine -d licenceplate.dsp -i licence.csv -t 383 --oformat csv
+faustine -d licenceplate.dsp -i licence.csv -t 383 --oformat csv
index 7c7445b..00e155d 100644 (file)
@@ -1,3 +1,3 @@
-import ("../../architecture/morpho.lib");
+import ("morpho.lib");
 
-process = open(119, 123, 2);
+process = opening_square(119, 123, 2);
index 805dbff..fe6b7a5 100644 (file)
@@ -1 +1 @@
-../../interpretor/faustine -d open.dsp -i circbw.csv -t 123 --oformat csv
+faustine -d open.dsp -i circbw.csv -t 123 --oformat csv
index f019696..5a728e2 100644 (file)
Binary files a/examples/sinwave/output1.wav and b/examples/sinwave/output1.wav differ
index 2d1599b..59e6fb5 100644 (file)
@@ -406,6 +406,23 @@ FILE* fopensearch(const char* filename, string& fullpath)
     if ((f = fopenat(fullpath, gFaustSuperSuperDirectory, "architecture", filename))) { 
        return f;
     }
+
+       /* Faustine directories (Haisheng WANG 09/2013) */
+
+#ifdef INSTALL_PREFIX
+    if ((f = fopenat(fullpath, INSTALL_PREFIX "/lib/faustine", filename))) { 
+       return f;
+    }
+#endif
+    if ((f = fopenat(fullpath, "/usr/local/lib/faustine", filename))) { 
+       return f;
+    }
+    if ((f = fopenat(fullpath, "/usr/lib/faustine", filename))) { 
+       return f;
+    }
+
+       /* End of Faustine directories */
+
 #ifdef INSTALL_PREFIX
     if ((f = fopenat(fullpath, INSTALL_PREFIX "/lib/faust", filename))) { 
        return f;