toolchain: disable ssl support in cmake-bundled curl

This commit is contained in:
Tiziano Müller 2020-08-10 12:48:09 +02:00 committed by Tiziano Müller
parent 1bfbee43f0
commit d53dec3ee7
3 changed files with 1 additions and 3 deletions

View file

@ -28,7 +28,6 @@ dnf -qy install \
vim-common \
wget \
which \
openssl-devel \
zlib-devel
dnf clean -q all

View file

@ -31,7 +31,6 @@ apt-get install -qq --no-install-recommends \
unzip \
wget \
xxd \
libssl-dev \
zlib1g-dev
rm -rf /var/lib/apt/lists/*

View file

@ -41,7 +41,7 @@ case "$with_cmake" in
cp CMakeLists.txt CMakeLists.txt.orig
sed -i 's/option(BUILD_CursesDialog "Build the CMake Curses Dialog ccmake" ON)/option(BUILD_CursesDialog "Build the CMake Curses Dialog ccmake" OFF)/g' CMakeLists.txt
fi
./bootstrap --prefix="${pkg_install_dir}" --parallel="${NPROCS}" > configure.log 2>&1
./bootstrap --prefix="${pkg_install_dir}" --parallel="${NPROCS}" -- -DCMAKE_USE_OPENSSL=OFF > configure.log 2>&1
make -j $NPROCS > make.log 2>&1
make install > install.log 2>&1
cd ..