Revert commit 66c0185a3 and follow-on patches.
[pgsql.git] / contrib / citext / meson.build
blob9770ab3ac64647013bac2c7a4e2d476a9f869ebc
1 # Copyright (c) 2022-2024, PostgreSQL Global Development Group
3 citext_sources = files(
4   'citext.c',
7 if host_system == 'windows'
8   citext_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
9     '--NAME', 'citext',
10     '--FILEDESC', 'citext - case-insensitive character string data type',])
11 endif
13 citext = shared_module('citext',
14   citext_sources,
15   kwargs: contrib_mod_args,
17 contrib_targets += citext
19 install_data(
20   'citext.control',
21   'citext--1.0--1.1.sql',
22   'citext--1.1--1.2.sql',
23   'citext--1.2--1.3.sql',
24   'citext--1.3--1.4.sql',
25   'citext--1.4.sql',
26   'citext--1.4--1.5.sql',
27   'citext--1.5--1.6.sql',
28   kwargs: contrib_data_args,
31 tests += {
32   'name': 'citext',
33   'sd': meson.current_source_dir(),
34   'bd': meson.current_build_dir(),
35   'regress': {
36     'sql': [
37       'create_index_acl',
38       'citext',
39       'citext_utf8',
40     ],
41   },