diff --git a/src/freedombone-image-customise b/src/freedombone-image-customise index b1bcd9aa..90b311e4 100755 --- a/src/freedombone-image-customise +++ b/src/freedombone-image-customise @@ -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 diff --git a/src/freedombone-utils-dns b/src/freedombone-utils-dns index 4cc84ae7..1914ab15 100755 --- a/src/freedombone-utils-dns +++ b/src/freedombone-utils-dns @@ -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"