diff --git a/ansible/tasks/setup-postgres.yml b/ansible/tasks/setup-postgres.yml index 01a242066..3f7f0c8b0 100644 --- a/ansible/tasks/setup-postgres.yml +++ b/ansible/tasks/setup-postgres.yml @@ -15,6 +15,7 @@ - uuid-dev - xsltproc - ssl-cert + - libicu-dev - name: Download LLVM & Clang apt: @@ -67,7 +68,7 @@ - name: Postgres - configure shell: - cmd: CFLAGS='{{ cflags }}' LLVM_CONFIG=/usr/bin/llvm-config-11 CLANG=/usr/bin/clang-11 ./configure --with-llvm --with-openssl --with-systemd --with-uuid=e2fs --with-libxml --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql + cmd: CFLAGS='{{ cflags }}' LLVM_CONFIG=/usr/bin/llvm-config-11 CLANG=/usr/bin/clang-11 ./configure --with-llvm --with-openssl --with-systemd --with-uuid=e2fs --with-libxml --with-icu --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql chdir: /tmp/postgresql-{{ postgresql_release }} - name: Postgres - build