Replace glib threadpool usage with a 'dumb' thread implementation.
[platform/upstream/iotivity.git] / resource / third_party_libs.scons
1 #******************************************************************
2 #
3 # Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
4 #
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 ######################################################################
22 # This script manages third party libraries
23 #
24 #Note: The paths must keep consistent with oic-utilities
25 ######################################################################
26 import os
27 import platform
28
29 Import('env', 'lib_env')
30
31 target_os = env.get('TARGET_OS')
32 target_arch = env.get('TARGET_ARCH')
33 src_dir = env.get('SRC_DIR')
34
35
36 ######################################################################
37 # Check dependent packages (Linux only)
38 ######################################################################
39 if target_os in ['linux', 'tizen']:
40         if not env.GetOption('help'):
41                 if not target_arch == platform.machine():
42                         print '''
43 *********************************** Warning ***********************************
44 * You are trying cross build, please make sure (%s) version libraries are     *
45 * installed!                                                                  *
46 *******************************************************************************
47 ''' % target_arch
48
49                 conf = Configure(lib_env)
50
51                 if target_os in ['tizen'] and not conf.CheckLib('glib-2.0'):
52                         print 'Install glib-2.0 to compile on Tizen platforms'
53                         Exit(1)
54
55                 conf.Finish()
56
57
58 ######################################################################
59 # The path of third party libraries binary
60 ######################################################################
61 if target_os == 'android':
62         if target_arch == 'armeabi-v7a-hard':
63                 target_arch = 'armeabi-v7a'
64
65         if target_arch not in ['x86', 'armeabi', 'armeabi-v7a']:
66                 if not env.GetOption('help') and not env.GetOption('clean'):
67                         print '''
68 *********************************** Warning ***********************************
69 * current only x86, armeabi, armeabi-v7a libraries are provided!              *
70 *******************************************************************************
71 '''
72         else:
73                 # Too much boost warning, suppress the warning
74                 lib_env.AppendUnique(CCFLAGS = ['-w'])
75
76 elif target_os == 'ios':
77         lib_env.AppendUnique(FRAMEWORKS = ['boost'])
78 elif target_os == 'darwin':
79         lib_env.AppendUnique(CPPPATH = ['/usr/local/include'])
80         lib_env.AppendUnique(LIBPATH = ['/usr/local/lib'])
81