Old inadyn commit

This commit is contained in:
Bob Mottram 2017-05-18 09:53:27 +01:00
parent 3f59b4ad10
commit d1babd2fc3
2 changed files with 3 additions and 3 deletions

View File

@ -968,7 +968,7 @@ function image_install_inadyn {
if [ ! -d $rootdir/root/build ]; then
mkdir -p $rootdir/root/build
fi
chroot "$rootdir" apt-get -yq install build-essential curl libgnutls28-dev automake1.11
chroot "$rootdir" apt-get -yq install build-essential curl libgnutls28-dev automake1.11 libconfuse-dev
git clone $INADYN_REPO $rootdir/root/build/inadyn
if [ ! -d $rootdir/root/build/inadyn ]; then
echo 'Failed to clone inadyn'
@ -981,7 +981,7 @@ function image_install_inadyn {
echo '#!/bin/bash' > $rootdir/root/build/build_inadyn.sh
echo 'cd ~/build/inadyn' >> $rootdir/root/build/build_inadyn.sh
echo './autogen.sh' >> $rootdir/root/build/build_inadyn.sh
echo './configure' >> $rootdir/root/build/build_inadyn.sh
echo './configure --enable-openssl' >> $rootdir/root/build/build_inadyn.sh
echo 'USE_OPENSSL=1 make' >> $rootdir/root/build/build_inadyn.sh
echo 'make install' >> $rootdir/root/build/build_inadyn.sh
chmod +x $rootdir/root/build/build_inadyn.sh

View File

@ -42,7 +42,7 @@ DDNS_USERNAME=
DDNS_PASSWORD=
INADYN_REPO="https://github.com/bashrc/inadyn"
INADYN_COMMIT='f67b608060a7adb0146a1063f810ca3e8e6ee948'
INADYN_COMMIT='fadbe17f520d337dfb8d69ee4bf1fcaa23fce0d6'
# web site used to obtain the external IP address of the system
GET_IP_ADDRESS_URL="checkip.two-dns.de"