diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-26 08:35:02 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-26 08:35:02 +0000 |
commit | afacba455c92b054a51e28c2490629cbe1bb5f9d (patch) | |
tree | 815873d6e7bd50f64c80d33eeccb8bec568d103d | |
parent | 8254de6f61ad3622bb56aacda4329a63b4a45539 (diff) | |
download | aports-afacba455c92b054a51e28c2490629cbe1bb5f9d.tar.bz2 aports-afacba455c92b054a51e28c2490629cbe1bb5f9d.tar.xz |
main/postgesql: add ldap support
fixes #5603
-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 |