summaryrefslogtreecommitdiff
path: root/libs/fst/SConscript
blob: 5332c096ed8d440988878270440035e1ef3d86fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -*- python -*-

import os
import os.path
import sys
import glob

fst_src = glob.glob('*.c')

Import('env install_prefix libraries')
fst = env.Clone()
fst.Append (CPPPATH=".")
fst.Merge ([
        libraries['jack'],
        libraries['glib2']
        ])

#
# 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']:
    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])
    
env.Alias('tarball', env.Distribute (env['DISTTREE'],
                                     fst_src + ['SConscript',
                                                'fst.h',
                                                'jackvst.h',
                                                'vestige/*.h'
                                                ] ))