meson.build: remove teamwork check

This commit is contained in:
Boris Faure 2017-11-12 19:52:17 +01:00
parent 35cb66aa2b
commit 98f2726b96
1 changed files with 0 additions and 13 deletions

View File

@ -97,10 +97,6 @@ url_head_code = '''#include <Ecore_Con.h>
int main(int argc, char *argv[]) { ecore_con_url_head(NULL); return 0; }
'''
elementary_teamwork_code = '''#include <Elementary.h>
int main(int argc, char *argv[]) { elm_win_teamwork_uri_show(NULL); return 0; }
'''
found = 'Not found'
if cc.links(url_head_code, dependencies: terminology_dependencies)
@ -110,15 +106,6 @@ endif
message('Checking for ecore_con_url_head: ' + found)
if cc.links(elementary_teamwork_code, dependencies: terminology_dependencies)
config_data.set('HAVE_ELM_WIN_TEAMWORK', 1)
found = 'Found'
else
found = 'Not Found'
endif
message('Checking for elm_win_teamwork_uri_show: ' + found)
edje_cc = get_option('edje-cc')
if edje_cc == ''