source: nscp/helpers/installer_dll/Jamfile @ 358cda1

0.4.00.4.10.4.2stable
Last change on this file since 358cda1 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: 837 bytes
Line 
1local target = installer_dll ;
2local source = main_dll ;
3
4#project
5#       : requirements
6#       <find-static-library>Msi
7#       <library-path>"D:/Program/Microsoft Platform SDK for Windows Server 2003 R2/Lib"
8#       ;
9
10
11
12#local lib = [ MATCH "^--psdk-lib=(.*)" : [ modules.peek : ARGV ] ] ;
13#echo "PSDK lib path: $(lib) (change with --psdk-lib=<other path>" ;
14
15#lib Msi : : <name>Msi <search>$(lib) ;
16#lib bufferoverflowu : : <name>bufferoverflowu <search>$(lib) ;
17#lib secchk : : <name>secchk <search>$(lib) ;
18#lib secchk : : <name>secchk ;
19
20lib $(target)
21        : # sources
22        $(source).cpp
23        ../../include/ServiceCmd.cpp
24        : # requirements
25        <source>/psdk//Msi
26        <source>/psdk//bufferoverflowu
27        <def-file>$(source).def
28        <user-interface>gui
29        <runtime-link>static
30        <threading>multi
31
32        : # default build
33        : # usage requirements
34        ;
Note: See TracBrowser for help on using the repository browser.