test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 24ed9b4d73dc068ed2baeb0da583c51879d5cabc Merge: c0118a3 a771bee Author: Akira TAGOH <akira@xxxxxxxxx> Date: Fri May 16 09:39:55 2025 +0000 Merge branch 'fcstdint-h-before-test' into 'main' test: make sure we have fcstdint.h before building test programs See merge request fontconfig/fontconfig!405 commit a771beeea37f812e88ee3cd8801e5bee0affda01 Author: Akira TAGOH <akira@xxxxxxxxx> Date: Fri May 16 17:45:25 2025 +0900 test: make sure we have fcstdint.h before building test programs diff --git a/test/meson.build b/test/meson.build index 3a08da7..bd958a6 100644 --- a/test/meson.build +++ b/test/meson.build @@ -58,7 +58,7 @@ foreach test_data : tests + tests_not_parallel test_name = fname.split('.')[0].underscorify() - exe = executable(test_name, fname, + exe = executable(test_name, fname, fcstdint_h, c_args: c_args + extra_c_args, include_directories: [incbase] + extra_incdir, link_with: link_with_libs,