From: Peter Eisentraut Date: Tue, 26 Dec 2023 20:31:39 +0000 (+0100) Subject: Add meson NLS support for pg_combinebackup X-Git-Tag: REL_17_BETA1~1236 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c4fe2e8220462a9688dba4380bda0ccb2ecaabb7;p=thirdparty%2Fpostgresql.git Add meson NLS support for pg_combinebackup --- diff --git a/src/bin/pg_combinebackup/meson.build b/src/bin/pg_combinebackup/meson.build index e402d6f50e7..ca6dbc4cf22 100644 --- a/src/bin/pg_combinebackup/meson.build +++ b/src/bin/pg_combinebackup/meson.build @@ -36,3 +36,5 @@ tests += { ], } } + +subdir('po', if_found: libintl) diff --git a/src/bin/pg_combinebackup/po/meson.build b/src/bin/pg_combinebackup/po/meson.build new file mode 100644 index 00000000000..58fe5ff1be1 --- /dev/null +++ b/src/bin/pg_combinebackup/po/meson.build @@ -0,0 +1,3 @@ +# Copyright (c) 2023, PostgreSQL Global Development Group + +nls_targets += [i18n.gettext('pg_combinebackup-' + pg_version_major.to_string())]