From: Peter van Dijk Date: Fri, 29 Jan 2021 21:24:35 +0000 (+0100) Subject: auth docker: find unixodbc on non-x86_64 platforms X-Git-Tag: dnsdist-1.6.0-alpha2~65^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10028%2Fhead;p=thirdparty%2Fpdns.git auth docker: find unixodbc on non-x86_64 platforms --- diff --git a/Dockerfile-auth b/Dockerfile-auth index 3716a185e5..5f4ada5e1d 100644 --- a/Dockerfile-auth +++ b/Dockerfile-auth @@ -49,7 +49,8 @@ RUN mkdir /build && \ --enable-option-checking=fatal \ --with-dynmodules='bind geoip gmysql godbc gpgsql gsqlite3 ldap lmdb lua2 pipe random remote tinydns' \ --enable-tools \ - --enable-ixfrdist && \ + --enable-ixfrdist \ + --with-unixodbc-lib=/usr/lib/$(uname -m)-linux-gnu && \ make clean && \ make $MAKEFLAGS -C ext && make $MAKEFLAGS -C modules && make $MAKEFLAGS -C pdns && \ make -C pdns install DESTDIR=/build && make -C modules install DESTDIR=/build && make clean && \