|
Revision 261, 0.6 KB
(checked in by mickem, 6 months ago)
|
+ Added new option append-filter-<key>=<value> to CheckEventLog to allow "and" of filter rules.
CheckEventLog file=application file=system filter=out MaxWarn=1 MaxCrit=1 filter-eventID=ne:1 filter-eventID=eq:1 append-filter-eventSource==SecurityCenter? truncate=1023 unique descriptions "syntax=%source%: %id% (%count%)"
+ Added debug option to CheckEventLog (to allow settingdebug on per-check)
+ Added obfuscated_password to NSCA section
+ Added so "global" ([Settings] password=...) passwords are read from the NSCA module
Also various changes to make it build with latest version of boost build.
|
| Line | |
|---|
| 1 | local target = CheckWMI ; |
|---|
| 2 | local source = $(target) ; |
|---|
| 3 | |
|---|
| 4 | project |
|---|
| 5 | : requirements |
|---|
| 6 | <find-static-library>Wbemuuid |
|---|
| 7 | <find-static-library>atls |
|---|
| 8 | ; |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | lib $(target) |
|---|
| 12 | |
|---|
| 13 | : # sources |
|---|
| 14 | $(source).cpp |
|---|
| 15 | WMIQuery.cpp |
|---|
| 16 | ../../include/NSCHelper.cpp |
|---|
| 17 | ../../include/arrayBuffer.cpp |
|---|
| 18 | |
|---|
| 19 | : # requirements |
|---|
| 20 | <def-file>$(source).def |
|---|
| 21 | #<user-interface>gui |
|---|
| 22 | <runtime-link>static |
|---|
| 23 | <include>"C:/Program Files/Microsoft Visual Studio 8/VC/atlmfc/include" |
|---|
| 24 | <library-path>"C:/Program Files/Microsoft Visual Studio 8/VC/atlmfc/lib" |
|---|
| 25 | |
|---|
| 26 | : # default build |
|---|
| 27 | <link>static |
|---|
| 28 | |
|---|
| 29 | : # usage requirements |
|---|
| 30 | ; |
|---|