mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Revert "Rename contrib module basic_archive to basic_wal_module"
This reverts commit 0ad3c60
, as per feedback from Tom Lane, Robert Haas
and Andres Freund. The new name used for the module had little
support.
This moves back to basic_archive as module name, and we will likely use
that as template for recovery modules, as well.
Discussion: https://postgr.es/m/CA+TgmoYG5uGOp7DGFT5gzC1kKFWGjkLSj_wOQxGhfMcvVEiKGA@mail.gmail.com
This commit is contained in:
34
contrib/basic_archive/meson.build
Normal file
34
contrib/basic_archive/meson.build
Normal file
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2022-2023, PostgreSQL Global Development Group
|
||||
|
||||
basic_archive_sources = files(
|
||||
'basic_archive.c',
|
||||
)
|
||||
|
||||
if host_system == 'windows'
|
||||
basic_archive_sources += rc_lib_gen.process(win32ver_rc, extra_args: [
|
||||
'--NAME', 'basic_archive',
|
||||
'--FILEDESC', 'basic_archive - basic archive module',])
|
||||
endif
|
||||
|
||||
basic_archive = shared_module('basic_archive',
|
||||
basic_archive_sources,
|
||||
kwargs: contrib_mod_args,
|
||||
)
|
||||
contrib_targets += basic_archive
|
||||
|
||||
tests += {
|
||||
'name': 'basic_archive',
|
||||
'sd': meson.current_source_dir(),
|
||||
'bd': meson.current_build_dir(),
|
||||
'regress': {
|
||||
'sql': [
|
||||
'basic_archive',
|
||||
],
|
||||
'regress_args': [
|
||||
'--temp-config', files('basic_archive.conf'),
|
||||
],
|
||||
# Disabled because these tests require "shared_preload_libraries=basic_archive",
|
||||
# which typical runningcheck users do not have (e.g. buildfarm clients).
|
||||
'runningcheck': false,
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user