diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-12-23 07:43:17 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-12-23 07:43:17 +0100 |
commit | 4d04d317f1e2c8e46b8fc04b4a20689da471a5d3 (patch) | |
tree | 20772efc19de68d81ac4c972cd1e232b75ab9962 /buildwin64.cmd | |
parent | 3d8ccff2a698e62e112f58f8c329b77ae71b8cbd (diff) | |
parent | 23a457acde5ee92ed3a20e84c201edfa4bd5a107 (diff) |
Merge branch 'release/debian/3.1.5-1'debian/3.1.5-1
Diffstat (limited to 'buildwin64.cmd')
-rw-r--r-- | buildwin64.cmd | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/buildwin64.cmd b/buildwin64.cmd deleted file mode 100644 index ae61fbf..0000000 --- a/buildwin64.cmd +++ /dev/null @@ -1,50 +0,0 @@ -@echo off
-REM # buildwin.cmd
-REM # build ipmiutil for windows
-REM #
-REM # First download a copy of getopt.c getopt.h.
-REM # copy getopt.* util
-REM # Then download and build a copy of openssl for Windows,
-REM # and copy the built openssl files needed to lib & inc.
-REM # copy libeay32.lib ssleay32.lib lib
-REM # copy libeay32.dll ssleay32.dll util
-REM # copy include\openssl\*.h lib\lanplus\inc\openssl
-REM #
-REM # You should either run this from the Visual Studio Command Line,
-REM # or first run the appropriate vcvars.bat script.
-set | findstr VCINSTALLDIR
-if %errorlevel% EQU 1 goto vcerror
-
-call vcvars64.bat
-
-REM TODO, prebuild checking:
-REM check for getopt.c,h
-REM check for ssl libs
-REM check for ssl includes
-REM call mkssl
-
-set UTMAKE=ipmiutil64.mak
-echo %LIBPATH% |findstr /C:64 >NUL
-if %errorlevel% EQU 1 goto vcerror
-
-call cleanwin.cmd
-
-cd lib
-nmake /nologo -f ipmilib.mak all
-cd ..
-REM # echo make lib done
-
-cd util
-nmake /nologo -f %UTMAKE% all
-cd ..
-REM # echo make util done
-
-echo buildwin64 ipmiutil done
-goto done
-
-:vcerror
-echo Either VCINSTALLDIR is missing or LIBPATH does not include 64bit
-echo Need to run vcvars64.bat for 64bit from a fresh session
-
-:done
-
|