Skip to content

Commit

Permalink
Remove settings for axtls in mingw build script
Browse files Browse the repository at this point in the history
  • Loading branch information
shirok committed Nov 22, 2023
1 parent fcb86b3 commit e63d69f
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/mingw-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ while [ "$#" -gt 0 ]; do
--with-installer) INSTALLER=yes; shift;;
--with-mbedtls) MBEDTLS=yes; shift;;
--with-mbedtls=dll) MBEDTLS=dll; shift;;
--without-axtls) AXTLS=no; shift;;
--with-zip) ZIP_ARCHIVE=yes; shift;;
--skip-config) SKIP_CONFIG=yes; shift;;
-*)
Expand All @@ -73,7 +72,6 @@ while [ "$#" -gt 0 ]; do
echo " * If you say --with-mbedtls=dll, we build to link with MbedTLS"
echo " DLL installed on the system. You need mingw-w64-{i686|x86_64}-mbedtls."
echo " If you choose this option, those DLLs in turn depends on libgcc DLL."
echo " --without-axtls: Exclude axTLS support."
echo " --with-zip: Creates Zip archive using p7zip. '7z.exe' must be visible"
echo " in PATH."
echo " --skip-config: Skip cleanup and configuration."
Expand All @@ -94,12 +92,6 @@ if [ "$INSTALLER" = yes ]; then
fi
fi

if [ "$AXTLS" = no ]; then
tlslibs=
else
tlslibs=axtls,
fi

if [ "$MBEDTLS" = yes ]; then
tlslibs=${tlslibs}mbedtls-internal
elif [ "$MBEDTLS" = dll ]; then
Expand Down

0 comments on commit e63d69f

Please sign in to comment.