mirror of
https://github.com/postgres/postgres.git
synced 2025-05-19 00:04:06 -04:00
Specify --no-locale and --encoding=UTF8 to be consistent with the Makefile, which specifies NO_LOCALE=1. Fixes test for some locales when meson is used and ICU is disabled. May have been an oversight in e6927270cd. Also switch argument order in unaccent/meson.build to make it consistent in style. Discussion: https://postgr.es/m/CABwTF4Wz41pNMJ9q3tpH=6mnvg6aopDU5Lzvers5=6=WJVekww@mail.gmail.com Author: Gurjeet Singh Author: Jeff Davis
43 lines
873 B
Meson
43 lines
873 B
Meson
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
|
|
|
|
unaccent_sources = files(
|
|
'unaccent.c',
|
|
)
|
|
|
|
if host_system == 'windows'
|
|
unaccent_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
|
|
'--NAME', 'unaccent',
|
|
'--FILEDESC', 'unaccent - text search dictionary that removes accents',])
|
|
endif
|
|
|
|
unaccent = shared_module('unaccent',
|
|
unaccent_sources,
|
|
kwargs: contrib_mod_args,
|
|
)
|
|
contrib_targets += unaccent
|
|
|
|
install_data(
|
|
'unaccent--1.0--1.1.sql',
|
|
'unaccent--1.1.sql',
|
|
'unaccent.control',
|
|
kwargs: contrib_data_args,
|
|
)
|
|
|
|
install_data(
|
|
'unaccent.rules',
|
|
install_dir: dir_data / 'tsearch_data'
|
|
)
|
|
|
|
# XXX: Implement downlo
|
|
tests += {
|
|
'name': 'unaccent',
|
|
'sd': meson.current_source_dir(),
|
|
'bd': meson.current_build_dir(),
|
|
'regress': {
|
|
'sql': [
|
|
'unaccent',
|
|
],
|
|
'regress_args': ['--no-locale', '--encoding=UTF8'],
|
|
},
|
|
}
|