]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Test for libtool in ./bootstrap and add libmysqlclient-dev to dependencylist in README
authorMark Schouten <mark@tuxis.nl>
Thu, 24 Jul 2014 20:29:52 +0000 (22:29 +0200)
committerMark Schouten <mark@tuxis.nl>
Thu, 24 Jul 2014 20:29:52 +0000 (22:29 +0200)
README.md
bootstrap

index 22194e5829b83bff319cb27014dd6f3c77109374..c5a8f02de4509d96e18771b6059d7bfb186681ff 100644 (file)
--- 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:
 
index cd2d2d292a549ed178ab140b4a3d1d49b28ec552..76f591762e9d9bbfb3376c0df69753efe2455de6 100755 (executable)
--- 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