Skip to content

Commit 879b849

Browse files
committed
fixup! meson: Add meson based buildsystem
1 parent 8de502f commit 879b849

File tree

5 files changed

+15
-1
lines changed

5 files changed

+15
-1
lines changed

contrib/pg_buffercache/meson.build

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,14 @@ install_data(
1414
'pg_buffercache.control',
1515
kwargs: contrib_data_args,
1616
)
17+
18+
tests += {
19+
'name': 'pg_buffercache',
20+
'sd': meson.current_source_dir(),
21+
'bd': meson.current_build_dir(),
22+
'regress': {
23+
'sql': [
24+
'pg_buffercache',
25+
],
26+
},
27+
}

src/backend/utils/sort/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ backend_sources += files(
33
'sharedtuplestore.c',
44
'sortsupport.c',
55
'tuplesort.c',
6+
'tuplesortvariants.c',
67
'tuplestore.c',
78
'qsort_interruptible.c',
89
)

src/port/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pgport_sources = [
2424
if host_system == 'win32'
2525
pgport_sources += files(
2626
'dirmod.c',
27+
'fdatasync.c',
2728
'kill.c',
2829
'open.c',
2930
'system.c',
@@ -47,7 +48,6 @@ endif
4748
replace_funcs_neg = [
4849
['dlopen'],
4950
['explicit_bzero'],
50-
['fls'],
5151
['getaddrinfo'],
5252
['getopt'],
5353
['getopt_long'],

src/test/recovery/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ tests += {
3737
't/030_stats_cleanup_replica.pl',
3838
't/031_recovery_conflict.pl',
3939
't/032_relfilenode_reuse.pl',
40+
't/033_replay_tsp_drops.pl',
4041
],
4142
},
4243
}

src/test/subscription/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ tests += {
3434
't/027_nosuperuser.pl',
3535
't/028_row_filter.pl',
3636
't/029_on_error.pl',
37+
't/030_origin.pl',
3738
't/031_column_list.pl',
3839
't/100_bugs.pl',
3940
],

0 commit comments

Comments
 (0)