diff options
| author | Andres Freund | 2022-12-07 02:56:46 +0000 |
|---|---|---|
| committer | Andres Freund | 2022-12-07 02:56:46 +0000 |
| commit | 5bdd0cfb91036b396935fad289c627602a00130c (patch) | |
| tree | 0b44b66d64ba9fbbc55e4c6d99608be42a5d3875 /meson_options.txt | |
| parent | 9db49fc5bfdc0126be03f4b8986013e59d93b91d (diff) | |
meson: Add basic PGXS compatibility
Generate a Makefile.global that's complete enough for PGXS to work for some
extensions. It is likely that this compatibility layer will not suffice for
every extension and not all platforms - we can expand it over time.
This allows extensions to use a single buildsystem across all the supported
postgres versions. Once all supported PG versions support meson, we can remove
the compatibility layer.
Reviewed-by: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Discussion: https://postgr.es/m/20221005200710.luvw5evhwf6clig6@awork3.anarazel.de
Diffstat (limited to 'meson_options.txt')
| -rw-r--r-- | meson_options.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index c7ea57994d..2c871969f5 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -172,6 +172,9 @@ option('PYTHON', type : 'array', value: ['python3', 'python'], option('SED', type : 'string', value: 'gsed', description: 'path to sed binary') +option('STRIP', type : 'string', value: 'strip', + description: 'path to strip binary, used for PGXS emulation') + option('TAR', type : 'string', value: 'tar', description: 'path to tar binary') |
