mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Reported-by: Michael Paquier Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz Backpatch-through: 12
35 lines
615 B
Meson
35 lines
615 B
Meson
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
|
|
|
|
backend_sources += files(
|
|
'clog.c',
|
|
'commit_ts.c',
|
|
'generic_xlog.c',
|
|
'multixact.c',
|
|
'parallel.c',
|
|
'rmgr.c',
|
|
'slru.c',
|
|
'subtrans.c',
|
|
'timeline.c',
|
|
'transam.c',
|
|
'twophase.c',
|
|
'twophase_rmgr.c',
|
|
'varsup.c',
|
|
'xact.c',
|
|
'xlog.c',
|
|
'xlogarchive.c',
|
|
'xlogbackup.c',
|
|
'xlogfuncs.c',
|
|
'xloginsert.c',
|
|
'xlogprefetcher.c',
|
|
'xlogrecovery.c',
|
|
'xlogstats.c',
|
|
'xlogutils.c',
|
|
)
|
|
|
|
# used by frontend programs to build a frontend xlogreader
|
|
xlogreader_sources = files(
|
|
'xlogreader.c',
|
|
)
|
|
|
|
backend_sources += xlogreader_sources
|