source: nscp/x86-build.bat @ e7dbac9

0.4.00.4.10.4.2stable
Last change on this file since e7dbac9 was 358cda1, checked in by Michael Medin <michael@…>, 4 years ago

2009-08-30 MickeM

+ Added -c and -d command line options like so:

NSClient++ -c CheckFile2 path=c:\test pattern=*.txt MaxCrit=1 filter+written=gt:2h
NSClient++ -c <command> <argument 1> <argument 2> ...
-d Is the same thing but with debug enabled.

+ Added uninstall of old client (sort of broken but works)

2009-08-29 MickeM

  • Fixed issue with CheckFile (directory)
  • Rewrote the CA:s in the installer to work "better" (hopefully) in general it should be have more like a propper installer.

2009-07-18 MickeM

  • Fixed issue with no loggers avalible and "memory leak"
  • Added "firewall exception" to installer
  • Fixed an issue with the socket data buffer
  • Added new option to NSC.ini [NSCA] socket_timeout=30 (timeout in seconds when reading from NSCA sockets)
  • Fixed issue with NSCA socket.

2009-07-05 MickeM

2009-06-20 MickeM

  • Fixed issue with CheckDisk and paths not working out properly
  • Property mode set to 100644
File size: 1.5 KB
Line 
1@echo off
2
3SET BOOST_BUILD_PATH=D:\tools\boost-build
4rem SET BOOST_BUILD_PATH=D:\source\libs-c\boost_1_37_0\tools\build\v2
5rem SET TOOLS_DIR=d:\source\tools\;C:\Program Files\7-Zip\
6SET TOOLS_DIR=d:\source\tools\;%ProgramFiles%\7-Zip\
7SET PLATTFORM_SDK_LIB="D:/Program/Microsoft Platform SDK for Windows Server 2003 R2/Lib"
8SET PLATTFORM_SDK_LIB_x86=%PLATTFORM_SDK_LIB%
9SET PLATTFORM_SDK_LIB_x64=%PLATTFORM_SDK_LIB%/AMD64/msi
10SET PLATTFORM_SDK_LIB_IA64=%PLATTFORM_SDK_LIB%/IA64
11
12
13
14SET openssl=D:\source\libs-c\openssl-0.9.8g\include
15SET boost=D:\source\libs-c\boost_1_34_1
16rem SET boost=D:\source\libs-c\boost_1_35_0
17
18set PSDKLIB=
19set TARGET_LIB_DIR=D:\source\lib
20set TARGET_LIB_x86_DIR=%TARGET_LIB_DIR%\x86
21set TARGET_LIB_x64_DIR=%TARGET_LIB_DIR%\x64
22set TARGET_LIB_IA64_DIR=%TARGET_LIB_DIR%\IA64
23
24set PATH=%PATH%;%TOOLS_DIR%
25
26REM build x86 binary
27SET version=x86
28SET cmdline=build.bat runtime-link=static variant=release address-model=32 --library-path=%TARGET_LIB_x86_DIR% --psdk-lib=%PLATTFORM_SDK_LIB_x86%
29call build.bat runtime-link=static variant=release address-model=32 --library-path=%TARGET_LIB_x86_DIR% --psdk-lib=%PLATTFORM_SDK_LIB_x86%
30if %ERRORLEVEL% == -1 goto :error
31
32echo *************
33echo *           *
34echo *    O K    *
35echo *           *
36echo *************
37
38goto :eof
39
40:error
41echo *********************
42echo *                   *
43echo *    E R R O R      *
44echo *                   *
45echo * When building %version% *
46echo *                   *
47echo *********************
48echo %cmdline%
Note: See TracBrowser for help on using the repository browser.