From 98f2726b96b8b4feb6d0ba0200272721cdb71435 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sun, 12 Nov 2017 19:52:17 +0100 Subject: [PATCH] meson.build: remove teamwork check --- meson.build | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/meson.build b/meson.build index e9d44519..3e05a9bf 100644 --- a/meson.build +++ b/meson.build @@ -97,10 +97,6 @@ url_head_code = '''#include int main(int argc, char *argv[]) { ecore_con_url_head(NULL); return 0; } ''' -elementary_teamwork_code = '''#include -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 == ''