diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-04 11:59:22 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-04 11:59:22 +0000 |
commit | 2db1d5e2addee0d23994dacc5db3d800b2fc999a (patch) | |
tree | b136ee07c5806c950a2a89450b9124611aac1498 /testing | |
parent | ce01c68df6cc7cbf468a8ea588e8ffde5bc5b546 (diff) | |
download | aports-2db1d5e2addee0d23994dacc5db3d800b2fc999a.tar.bz2 aports-2db1d5e2addee0d23994dacc5db3d800b2fc999a.tar.xz |
testing/kea: rebuild against log4cplus 2.0 and fix configure warnings
fix the following warnings:
configure: WARNING: --with-dhcp-mysql has been deprecated, please use --with-mysql
configure: WARNING: --with-dhcp-pgsql has been deprecated, please use --with-pgsql
Diffstat (limited to 'testing')
-rw-r--r-- | testing/kea/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/kea/APKBUILD b/testing/kea/APKBUILD index 91526dcdd4..326234314b 100644 --- a/testing/kea/APKBUILD +++ b/testing/kea/APKBUILD @@ -3,7 +3,7 @@ pkgname=kea pkgver=1.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="High-performance, extensible DHCP server engine from ISC, supporting both DHCPv4 and DHCPv6" arch="all" url="http://kea.isc.org" @@ -26,8 +26,8 @@ build() { cd "$builddir" ./configure \ - --with-dhcp-mysql \ - --with-dhcp-pgsql \ + --with-mysql \ + --with-pgsql \ --prefix=/usr \ --libexecdir=/usr/lib \ --sysconfdir=/etc \ |