FST code from 2.X branch
[ardour.git] / libs / fst / SConscript
index 1fd8d2758dc5ff4ddb79c3f63f24464c85ce44f9..a543d72a501ae4f7cbb0b7e9299fdaa0f58368f0 100644 (file)
@@ -7,33 +7,64 @@ import glob
 
 fst_src = glob.glob('*.c')
 
-Import('env install_prefix')
-fst = env.Copy(CC="winegcc")
+Import('env install_prefix libraries')
+fst = env.Clone()
 fst.Append (CPPPATH=".")
+fst.Merge ([
+        libraries['jack'],
+        libraries['glib2']
+        ])
 
-a = fst.Object ('fst', 'fst.c')
-b = fst.Object ('fstinfofile', 'fstinfofile.c')
-c = fst.Object ('vstwin', 'vstwin.c')
-d = fst.Object ('vsti', 'vsti.c')
+#
+# See if JACK supports jack_set_thread_creator()
+#
+
+jack_test_source_file = """
+#include <jack/jack.h>
+#include <pthread.h>
+int
+my_pthread_create (pthread_t* thread_id, const pthread_attr_t* attr, void *(*function)(void*), void* arg)
+{
+    return 0;
+}
+int main(int argc, char **argv)
+{
+    jack_set_thread_creator (my_pthread_create);
+    return 0;
+}
+"""
+def CheckJackSetThreadCreator(context):
+    context.Message('Checking for jack_set_thread_creator()...')
+    result = context.TryLink(jack_test_source_file, '.c')
+    context.Result(result)
+    return result
+
+
+conf = Configure(fst, custom_tests = {
+       'CheckJackSetThreadCreator' : CheckJackSetThreadCreator,
+})
+
+if conf.CheckJackSetThreadCreator():
+    fst.Append(CCFLAGS="-DHAVE_JACK_SET_THREAD_CREATOR")
+
+fst = conf.Finish ()
 
 if fst['VST']:
-    if os.access ('vst_sdk2_3.zip', os.F_OK):
-        fst.Execute ("unzip -o vst_sdk2_3.zip vstsdk2.3.zip")
-    if os.access ('vstsdk2.3.zip', os.F_OK):
-        fst.Execute ("unzip -o vstsdk2.3.zip")
-    else:
-        print 'Did not find vst_sdk2_3.zip or vstsdk2.3.zip in libs/fst.  Make sure the correct file is in the correct location and correctly named'
-        print 'Please see http://ardour.org/building_vst_support for more information'
-        sys.exit (1)    
-    fst.Execute (Delete ("vst"))
-    fst.Execute (Copy ("vst", "vstsdk2.3/source/common"))
-    fst.Execute ("sed -i '/struct VstFileType\|struct VstFileSelect/,/};/d' vst/aeffectx.h")
-    Default([a,b,c,d])
-    
+    fst.Replace(CC = ("winegcc"))
+    a = fst.Object ('fst', 'fst.c')
+    b = fst.Object ('fstinfofile', 'fstinfofile.c')
+    c = fst.Object ('vstwin', 'vstwin.c')
+    d = fst.Object ('vsti', 'vsti.c')
+    e = fst.Object ('thread', 'thread.c')
+    Default([a,b,c,d,e])
     
+vestige_headers = glob.glob ('vestige/*.h')
+
 env.Alias('tarball', env.Distribute (env['DISTTREE'],
-                                     fst_src + ['SConscript',
-                                                'fst.h',
-                                                'jackvst.h'
-                                                ] ))
+                                     fst_src + vestige_headers +
+                                     ['SConscript',
+                                      'fst.h',
+                                      'jackvst.h',
+                                      ] 
+                                     ))