From: Chun-wei Fan Date: Mon, 24 Jan 2022 10:02:24 +0000 (+0800) Subject: meson: Look for win_[flex|bison] too X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb664f5122ccd8380e7cd7d9597e0325e506a84c;p=thirdparty%2Fvala.git meson: Look for win_[flex|bison] too People might have installed win_flex and/or win_bison, which work better for native Windows builds. --- diff --git a/gobject-introspection/meson.build b/gobject-introspection/meson.build index 5bf20ce08..0318aac80 100644 --- a/gobject-introspection/meson.build +++ b/gobject-introspection/meson.build @@ -14,8 +14,8 @@ gidl_dep = declare_dependency( include_directories: include_directories('.'), ) -flex = find_program('flex') -bison = find_program('bison') +flex = find_program('flex', 'win_flex') +bison = find_program('bison', 'win_bison') lgen = generator(flex, output: '@PLAINNAME@.c',