1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +03:00
Files
postgres/src/backend/libpq/meson.build
Bruce Momjian 29275b1d17 Update copyright for 2024
Reported-by: Michael Paquier

Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz

Backpatch-through: 12
2024-01-03 20:49:05 -05:00

35 lines
566 B
Meson

# Copyright (c) 2022-2024, PostgreSQL Global Development Group
backend_sources += files(
'auth-sasl.c',
'auth-scram.c',
'auth.c',
'be-fsstubs.c',
'be-secure-common.c',
'be-secure.c',
'crypt.c',
'hba.c',
'ifaddr.c',
'pqcomm.c',
'pqformat.c',
'pqmq.c',
'pqsignal.c',
)
if ssl.found()
backend_sources += files('be-secure-openssl.c')
endif
if gssapi.found()
backend_sources += files(
'be-secure-gssapi.c',
'be-gssapi-common.c'
)
endif
install_data(
'pg_hba.conf.sample',
'pg_ident.conf.sample',
install_dir: dir_data,
)