From ab2d602ff8e94b7bcdd6452d42c2adfcb89cae0e Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Mon, 3 May 2021 20:53:41 +0100 Subject: [PATCH] Build: remove fnmatch checks Reviewers: raster Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D12263 --- header_checks/meson.build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/header_checks/meson.build b/header_checks/meson.build index 833b9139f6..5f504c051b 100644 --- a/header_checks/meson.build +++ b/header_checks/meson.build @@ -216,15 +216,12 @@ endif regexp = [] if sys_windows == true regexp = cc.find_library('regex', - has_headers: ['regex.h', 'fnmatch.h'], + has_headers: ['regex.h'], required: true) if regexp.found() == false error('regex can not be found') endif else - if cc.has_header_symbol('fnmatch.h', 'fnmatch') == false - error('fnmatch can not be found') - endif if cc.has_header_symbol('regex.h', 'regcomp') == false error('regcomp can not be found') endif