inadyn doesn't need openssl library
This commit is contained in:
parent
a14781337f
commit
a9ff261133
|
@ -1657,7 +1657,7 @@ image_install_inadyn() {
|
|||
mkdir -p "$rootdir/root/build"
|
||||
fi
|
||||
chroot "$rootdir" apt-get -yq install build-essential curl libgnutls28-dev automake1.11 libconfuse-dev
|
||||
chroot "$rootdir" apt-get -yq install gnutls-dev libconfuse-dev pkg-config libssl-dev
|
||||
chroot "$rootdir" apt-get -yq install gnutls-dev libconfuse-dev pkg-config
|
||||
|
||||
if [ -d /repos/inadyn ]; then
|
||||
mkdir "$rootdir/root/build/inadyn"
|
||||
|
@ -1679,7 +1679,7 @@ image_install_inadyn() {
|
|||
{ echo '#!/bin/bash';
|
||||
echo 'cd ~/build/inadyn';
|
||||
echo './autogen.sh';
|
||||
echo './configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-openssl';
|
||||
echo './configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var';
|
||||
echo 'make -j5';
|
||||
echo 'make install-strip'; } > "$rootdir/root/build/build_inadyn.sh"
|
||||
chmod +x "$rootdir/root/build/build_inadyn.sh"
|
||||
|
|
|
@ -525,7 +525,7 @@ function install_dynamicdns {
|
|||
# https version 1.99.8
|
||||
|
||||
apt-get -yq install build-essential curl libgnutls28-dev automake1.11
|
||||
apt-get -yq install gnutls-dev libconfuse-dev pkg-config libssl-dev
|
||||
apt-get -yq install gnutls-dev libconfuse-dev pkg-config
|
||||
|
||||
if [ ! -d "$INSTALL_DIR/inadyn" ]; then
|
||||
if [ -d /repos/inadyn ]; then
|
||||
|
@ -548,7 +548,7 @@ function install_dynamicdns {
|
|||
|
||||
./autogen.sh
|
||||
|
||||
if ! ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-openssl; then
|
||||
if ! ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var; then
|
||||
exit 74890
|
||||
fi
|
||||
if ! make -j5; then
|
||||
|
|
Loading…
Reference in New Issue