From: Mark Schouten Date: Thu, 24 Jul 2014 20:29:52 +0000 (+0200) Subject: Test for libtool in ./bootstrap and add libmysqlclient-dev to dependencylist in README X-Git-Tag: auth-3.4.0-rc1~24^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ba35e82baf5d3dc7f10f513739411ec4eb606123;p=thirdparty%2Fpdns.git Test for libtool in ./bootstrap and add libmysqlclient-dev to dependencylist in README --- diff --git a/README.md b/README.md index 22194e5829..c5a8f02de4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ PowerDNS Authoritative Server 3.0 and beyond depend on Boost. On Debian 7.0, the following is useful: - apt-get install autoconf automake bison flex g++ git libboost-all-dev libtool make pkg-config ragel + apt-get install autoconf automake bison flex g++ git libboost-all-dev libtool make pkg-config ragel libmysqlclient-dev If you build from git, first build configure: diff --git a/bootstrap b/bootstrap index cd2d2d292a..76f591762e 100755 --- a/bootstrap +++ b/bootstrap @@ -1,3 +1,5 @@ #!/bin/sh +type libtool 2>&1 > /dev/null +if [ $? -gt 0 ]; then echo "Missing required libtool"; exit 1; fi autoreconf -i automake --add-missing