diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2021-04-10 00:34:14 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2021-04-10 00:59:49 +0200 |
commit | 7db8fc9ee659cc3ff9c80ab807672959e654aa33 (patch) | |
tree | f595e781a8f809d90c1f791cac417228fb6e1f7a | |
parent | 8c1dcae3233bed5413d737cf7f4ad82fbe779e91 (diff) |
main/postgresql: replace libedit with readline
Fixes #10354
-rw-r--r-- | main/postgresql/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/main/postgresql/APKBUILD b/main/postgresql/APKBUILD index 1097790c5b1..86ba83dbaa9 100644 --- a/main/postgresql/APKBUILD +++ b/main/postgresql/APKBUILD @@ -3,7 +3,7 @@ # Contributor: Jakub Jirutka <jakub@jirutka.cz> pkgname=postgresql pkgver=13.2 -pkgrel=3 +pkgrel=4 pkgdesc="A sophisticated object-relational DBMS" url="https://www.postgresql.org/" arch="all" @@ -16,13 +16,13 @@ checkdepends="diffutils" depends_dev="clang icu-dev llvm openssl-dev" makedepends="$depends_dev icu-dev - libedit-dev libxml2-dev linux-headers llvm-dev openldap-dev perl-dev python3-dev + readline-dev tcl-dev util-linux-dev zlib-dev @@ -120,7 +120,6 @@ build() { --mandir=/usr/share/man \ --with-system-tzdata=/usr/share/zoneinfo \ --with-ldap \ - --with-libedit-preferred \ --with-libxml \ --with-openssl \ --with-uuid=e2fs \ |