diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common/unicode/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/unicode/meson.build b/src/common/unicode/meson.build index b9a4181c320..38dac59672e 100644 --- a/src/common/unicode/meson.build +++ b/src/common/unicode/meson.build @@ -104,7 +104,7 @@ inc = include_directories('.') case_test = executable('case_test', ['case_test.c'], - dependencies: [frontend_port_code, icu], + dependencies: [frontend_port_code, icu, libintl], include_directories: inc, link_with: [common_static, pgport_static], build_by_default: false, @@ -115,7 +115,7 @@ case_test = executable('case_test', category_test = executable('category_test', ['category_test.c'], - dependencies: [frontend_port_code, icu], + dependencies: [frontend_port_code, icu, libintl], include_directories: inc, link_with: [common_static, pgport_static], build_by_default: false, @@ -126,7 +126,7 @@ category_test = executable('category_test', norm_test = executable('norm_test', ['norm_test.c', norm_test_table], - dependencies: [frontend_port_code], + dependencies: [frontend_port_code, libintl], include_directories: inc, link_with: [common_static, pgport_static], build_by_default: false, |