Browse Source

inadyn doesn't need openssl library

Bob Mottram 7 years ago
parent
commit
a9ff261133
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      src/freedombone-image-customise
  2. 2
    2
      src/freedombone-utils-web

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

1657
         mkdir -p "$rootdir/root/build"
1657
         mkdir -p "$rootdir/root/build"
1658
     fi
1658
     fi
1659
     chroot "$rootdir" apt-get -yq install build-essential curl libgnutls28-dev automake1.11 libconfuse-dev
1659
     chroot "$rootdir" apt-get -yq install build-essential curl libgnutls28-dev automake1.11 libconfuse-dev
1660
-    chroot "$rootdir" apt-get -yq install gnutls-dev libconfuse-dev pkg-config libssl-dev
1660
+    chroot "$rootdir" apt-get -yq install gnutls-dev libconfuse-dev pkg-config
1661
 
1661
 
1662
     if [ -d /repos/inadyn ]; then
1662
     if [ -d /repos/inadyn ]; then
1663
         mkdir "$rootdir/root/build/inadyn"
1663
         mkdir "$rootdir/root/build/inadyn"
1679
     { echo '#!/bin/bash';
1679
     { echo '#!/bin/bash';
1680
       echo 'cd ~/build/inadyn';
1680
       echo 'cd ~/build/inadyn';
1681
       echo './autogen.sh';
1681
       echo './autogen.sh';
1682
-      echo './configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-openssl';
1682
+      echo './configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var';
1683
       echo 'make -j5';
1683
       echo 'make -j5';
1684
       echo 'make install-strip'; } > "$rootdir/root/build/build_inadyn.sh"
1684
       echo 'make install-strip'; } > "$rootdir/root/build/build_inadyn.sh"
1685
     chmod +x "$rootdir/root/build/build_inadyn.sh"
1685
     chmod +x "$rootdir/root/build/build_inadyn.sh"

+ 2
- 2
src/freedombone-utils-web View File

525
     # https version 1.99.8
525
     # https version 1.99.8
526
 
526
 
527
     apt-get -yq install build-essential curl libgnutls28-dev automake1.11
527
     apt-get -yq install build-essential curl libgnutls28-dev automake1.11
528
-    apt-get -yq install gnutls-dev libconfuse-dev pkg-config libssl-dev
528
+    apt-get -yq install gnutls-dev libconfuse-dev pkg-config
529
 
529
 
530
     if [ ! -d "$INSTALL_DIR/inadyn" ]; then
530
     if [ ! -d "$INSTALL_DIR/inadyn" ]; then
531
         if [ -d /repos/inadyn ]; then
531
         if [ -d /repos/inadyn ]; then
548
 
548
 
549
     ./autogen.sh
549
     ./autogen.sh
550
 
550
 
551
-    if ! ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-openssl; then
551
+    if ! ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var; then
552
         exit 74890
552
         exit 74890
553
     fi
553
     fi
554
     if ! make -j5; then
554
     if ! make -j5; then