devilhorns pushed a commit to branch master. http://git.enlightenment.org/apps/express.git/commit/?id=ec14650a3681063d9ff0a85068b5a6ee2d20d63f
commit ec14650a3681063d9ff0a85068b5a6ee2d20d63f Author: Christopher Michael <devilho...@comcast.net> Date: Fri Feb 12 11:32:55 2021 -0500 express: Add mkstemps for meson build --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index e4cb4b9..83ce370 100644 --- a/meson.build +++ b/meson.build @@ -93,6 +93,10 @@ config_h.set_quoted('PACKAGE_LIB_DIR', dir_lib) config_h.set_quoted('PACKAGE_DATA_DIR', dir_data) config_h.set_quoted('PACKAGE_LOCALE_DIR', dir_locale) +if cc.has_function('mkstemps') + config_h.set('HAVE_MKSTEMPS', 1) +endif + subdir('data/desktop') subdir('data/fonts') subdir('data/images') --