Browse Source

Old inadyn commit

Bob Mottram 7 years ago
parent
commit
d1babd2fc3
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      src/freedombone-image-customise
  2. 1
    1
      src/freedombone-utils-dns

+ 2
- 2
src/freedombone-image-customise View File

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

+ 1
- 1
src/freedombone-utils-dns View File

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