summaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-07-03 02:14:33 -0600
committerEduardo Chappa <chappa@washington.edu>2020-07-03 02:14:33 -0600
commitf6a3f80237f4b565e97aa72130444d8262c723b8 (patch)
treecc25d85a4bc4900fd22961a40f56a55b04a23a30 /build.bat
parent55740c0e9b40562cbc8081ce32b2a542392fd12b (diff)
downloadalpine-f6a3f80237f4b565e97aa72130444d8262c723b8.tar.xz
* Experimental: Elimination of the w32 build code for PC-Alpine.
Now w32 and wnt are the same code, so we are only left with wnt and wxp.
Diffstat (limited to 'build.bat')
-rwxr-xr-xbuild.bat12
1 files changed, 0 insertions, 12 deletions
diff --git a/build.bat b/build.bat
index 762cb06..2a1038c 100755
--- a/build.bat
+++ b/build.bat
@@ -23,7 +23,6 @@ set sslextralibes="crypt32.lib"
if "%1"=="" goto blank
if "%1"=="wnt" goto wnt
if "%1"=="wxp" goto wxp
-if "%1"=="w32" goto w32
if "%1"=="w2k" goto w2k
if "%1"=="clean" goto clean
echo Unknown build command: %1 %2 %3 %4
@@ -34,7 +33,6 @@ echo Must specify build command!
echo usage: BUILD cmd
echo where "cmd" is one of either:
echo wnt -- Windows
-echo w32 -- Windows 32 bits (not Windows XP)
echo wxp -- Windows XP
echo w2k -- Windows with Win2k Kerb
echo clean -- to remove obj, lib, and exe files from source
@@ -53,16 +51,6 @@ set ssllibes=\"%ALPINE_LIBRESSL%\"\x86\libcrypto-%CRYPTO_VERSION%.lib \"%ALPINE_
set sslextralibes=
goto wntbuild
-:w32
-if not defined ALPINE_OPENSSL set ALPINE_OPENSSL=%cd%\openssl
-if NOT exist "%ALPINE_OPENSSL%" goto wntbuild
-set MESSAGE=including OPENSSL support
-set windows32build=-DW32BITSBUILD -D__MINGW_USE_VC2005_COMPAT
-set sslflags=-I\"%ALPINE_OPENSSL%\"\include\ -I\"%ALPINE_OPENSSL%\"\include\openssl -DENABLE_WINDOWS_UNIXSSL -DOPENSSL_1_1_0
-set ssllibes=\"%ALPINE_OPENSSL%\"\lib\libcrypto.lib \"%ALPINE_OPENSSL%\"\lib\libssl.lib
-set sslextralibes=
-goto wntbuild
-
:wnt
if not defined ALPINE_OPENSSL set ALPINE_OPENSSL=%cd%\openssl
if NOT exist "%ALPINE_OPENSSL%" goto wntbuild