-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8b6d9b
commit aa7bd93
Showing
4 changed files
with
65 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
require 'shared.conf'; | ||
|
||
@PGBuild::conf{animal} = $ENV{MESON_ANIMAL} // @PGBuild::conf{animal}; | ||
@PGBuild::conf{secret} = $ENV{MESON_SECRET} // @PGBuild::conf{secret}; | ||
|
||
@PGBuild::conf{using_meson} = true; | ||
@PGBuild::conf{meson_jobs} = 2; | ||
|
||
push(@{@PGBuild::conf{meson_opts}}, ( | ||
'-Dlz4=enabled', | ||
'-Dpam=enabled', | ||
'-Duuid=ossp', | ||
'-Dzstd=enabled' | ||
)); | ||
|
||
# TODO: Building with --enable-nls currently fails with: | ||
# ld: ../../src/port/libpgport.a(strerror.o): in function `pg_strerror_r': | ||
# src/port/strerror.c:72:(.text+0x260): undefined reference to `libintl_gettext' | ||
# ld: src/port/strerror.c:72:(.text+0x2d8): undefined reference to `libintl_gettext' | ||
push(@{@PGBuild::conf{meson_opts}}, '-Dnls=disabled'); | ||
|
||
# TODO: Currently failing two tests: | ||
# initdb/001_initdb | ||
# icu / icu/010_database | ||
push(@{@PGBuild::conf{config_opts}}, '-Dicu=disabled'); | ||
|
||
1; |