diff options
Diffstat (limited to 'main/postgresql')
-rw-r--r-- | main/postgresql/APKBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/main/postgresql/APKBUILD b/main/postgresql/APKBUILD index e4a512fb0d..efa472c94d 100644 --- a/main/postgresql/APKBUILD +++ b/main/postgresql/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=postgresql pkgver=9.5.2 -pkgrel=2 +pkgrel=3 pkgdesc="A sophisticated object-relational DBMS" url="http://www.postgresql.org/" arch="all" @@ -11,7 +11,8 @@ install="$pkgname.pre-upgrade" pkgusers="postgres" pkggroups="postgres" depends_dev="openssl-dev" -makedepends="$depends_dev libedit-dev zlib-dev libxml2-dev util-linux-dev" +makedepends="$depends_dev libedit-dev zlib-dev libxml2-dev util-linux-dev + openldap-dev" subpackages="$pkgname-dev $pkgname-doc libpq $pkgname-client $pkgname-contrib" patches="initdb.patch" @@ -47,10 +48,11 @@ build() { --host=$CHOST \ --prefix=/usr \ --mandir=/usr/share/man \ - --with-openssl \ + --with-ldap \ --with-libedit-preferred \ - --with-uuid=e2fs \ --with-libxml \ + --with-openssl \ + --with-uuid=e2fs \ || return 1 make world || return 1 |