Skip to content

Commit

Permalink
Build --with-icu
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgangwalther committed Mar 24, 2024
1 parent fe3dec2 commit 2090f51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN apk add \
krb5-dev \
krb5-server \
libedit-dev \
icu-dev \
libxml2-dev \
libxslt-dev \
linux-headers \
Expand Down
6 changes: 1 addition & 5 deletions autoconf.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $PGBuild::conf{make_jobs} = 2;

push(@{$PGBuild::conf{config_opts}}, (
'--enable-tap-tests',
'--with-icu',
'--with-pam',
'--with-ssl=openssl',
'--with-uuid=ossp'
Expand All @@ -18,9 +19,4 @@ push(@{$PGBuild::conf{config_opts}}, (
# ld: src/port/strerror.c:72:(.text+0x2d8): undefined reference to `libintl_gettext'
push(@{$PGBuild::conf{config_opts}}, "--disable-nls");

# TODO: Currently failing two tests:
# initdb/001_initdb
# icu / icu/010_database
push(@{$PGBuild::conf{config_opts}}, "--without-icu");

1;
6 changes: 1 addition & 5 deletions meson.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $PGBuild::conf{using_meson} = true;
$PGBuild::conf{meson_jobs} = 2;

push(@{$PGBuild::conf{meson_opts}}, (
'-Dicu=enabled',
'-Dlz4=enabled',
'-Dpam=enabled',
'-Dtap_tests=enabled',
Expand All @@ -23,9 +24,4 @@ push(@{$PGBuild::conf{meson_opts}}, '-Dlibedit_preferred=true');
# 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{meson_opts}}, '-Dicu=disabled');

1;

0 comments on commit 2090f51

Please sign in to comment.