summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 11:06:09 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 12:51:11 +0200
commiteed5d1a0b066a325c4c0640943c31a90ef4d0353 (patch)
tree844aad202c9e42a60d74bbbcbbaa75cdc50c2a38 /wscript
parentd6d3cfeb3fc8dfd73998c2fee5f319b75f6757ff (diff)
downloadingen-eed5d1a0b066a325c4c0640943c31a90ef4d0353.tar.gz
ingen-eed5d1a0b066a325c4c0640943c31a90ef4d0353.tar.bz2
ingen-eed5d1a0b066a325c4c0640943c31a90ef4d0353.zip
Remove support for ancient compilers without thread_local support
Diffstat (limited to 'wscript')
-rw-r--r--wscript9
1 files changed, 0 insertions, 9 deletions
diff --git a/wscript b/wscript
index 026bebca..9c7181d7 100644
--- a/wscript
+++ b/wscript
@@ -117,15 +117,6 @@ def configure(conf):
})
conf.check_cxx(header_name='boost/intrusive/slist.hpp')
- conf.check_cxx(msg='Checking for thread_local keyword',
- mandatory=False,
- fragment='thread_local int i = 0; int main() {}',
- define_name='INGEN_HAVE_THREAD_LOCAL')
- if not conf.is_defined('INGEN_HAVE_THREAD_LOCAL'):
- conf.check_cxx(msg='Checking for __thread keyword',
- mandatory=False,
- fragment='__thread int i = 0; int main() {}',
- define_name='INGEN_HAVE_THREAD_BUILTIN')
conf.check_pkg('lv2 >= 1.16.0', uselib_store='LV2')
conf.check_pkg('lilv-0 >= 0.21.5', uselib_store='LILV')