raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=ab2d602ff8e94b7bcdd6452d42c2adfcb89cae0e
commit ab2d602ff8e94b7bcdd6452d42c2adfcb89cae0e Author: Vincent Torri <vincent.to...@gmail.com> Date: Mon May 3 20:53:41 2021 +0100 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 --