Skip to content

Commit e82a52f

Browse files
authored
Build postgres with lz4 support (supabase#490)
1 parent 288dba8 commit e82a52f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ansible/tasks/setup-postgres.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- uuid-dev
1616
- xsltproc
1717
- ssl-cert
18+
- liblz4-dev
1819
- libicu-dev
1920

2021
- name: Download LLVM & Clang
@@ -68,7 +69,7 @@
6869

6970
- name: Postgres - configure
7071
shell:
71-
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
72+
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 --with-lz4 --exec-prefix=/usr/lib/postgresql --datarootdir=/var/lib/postgresql
7273
chdir: /tmp/postgresql-{{ postgresql_release }}
7374

7475
- name: Postgres - build

0 commit comments

Comments
 (0)