Codebase list stealth / fe23bf9
Update upstream source from tag 'upstream/4.03.01' Update to upstream version '4.03.01' with Debian dir 046019dcc9b6c94ffa6b987a300fd21904f4deaa Frank B. Brokken 2 years ago
8 changed file(s) with 26 addition(s) and 31 deletion(s). Raw diff Collapse all Expand all
0 syslogstruct
0 //syslogstruct
11 msg
22 util
33 stealthenums
4
54 options
6 // stealthenums syslogstruct msg util
7
85 policyfile
9 // options
10
116 runmode
12 // stealthenums
13
147 report
15 // policyfile
16
178 integrityscanner
18 // policyfile runmode
19
209 logunit
21 // options
22
2310 stealth
24 // logunit integrityscanner report
0 // Specify the name of the project:
0 // the name of the project:
11 #define PROJECT "stealth"
22
3 // Compiler to use:
3 // compiler to use:
44 #define CXX "g++"
55
6 // The compiler options to use:
7 #define CXXFLAGS "--std=c++2a -Wall -O2 -pthread -fdiagnostics-color=never"
6 // compiler options to use:
7 #define CXXFLAGS "--std=c++20 -Wall -O2 -pthread -fdiagnostics-color=never"
88
9 // Flags passed to the linker:
9 // options passed to the linker:
1010 #define LDFLAGS ""
1111
1212 #define CPOPTS
00 #define AUTHOR "Frank B. Brokken (f.b.brokken@rug.nl)";
1 #define VERSION "4.03.00"
1 #define VERSION "4.03.01"
22 #define YEARS "2005-2021"
0 stealth (4.03.01)
1
2 * Removed overlooked comment in main() causing stealth to only look at
3 its command line arguments, without performing other actions.
4
5 * Updated the affiliation in the man-page and manual.
6
7 -- Frank B. Brokken <f.b.brokken@rug.nl> Wed, 06 Oct 2021 22:12:06 +0200
8
09 stealth (4.03.00)
110
211 * Removed -q from the build script
764764 tt(https://fbb-git.gitlab.io/stealth/).
765765
766766 manpagesection(ORGANIZATION)
767 Center for Information Technology, University of Groningen.
767 University of Groningen.
768768
769769 manpageauthor()
770770 Frank B. Brokken (bf(f.b.brokken@rug.nl)).
2828
2929 IFDEF(html)
3030 (
31 affiliation(center(Center for Information Technology, University of Groningen))
31 affiliation(center(University of Groningen))
3232 report(center(Stealth V. _CurVers_))
3333 (center(Frank B. Brokken))(center(_CurYrs_))
3434 )
3535 (
36 affiliation(Center for Information Technology, University of Groningen)
36 affiliation(University of Groningen)
3737 report(Stealth V._CurVers_)(Frank B. Brokken)(_CurYrs_)
3838 )
3939
66 #define ADD_LIBRARIES "bobcat"
77 #define ADD_LIBRARY_PATHS ""
88 #define REFRESH
9 #define LIBRARY "modules"
9 #define LIBRARY "stealth"
1010 #define IH ".ih"
1111 #define PRECOMP "-x c++-header"
1212 #define SHAREDREQ ""
7373
7474 arg.versionHelp(Options::usage, Icmbuild::version, 1);
7575
76 // Stealth stealth;
77 //
78 // if (stealth.ipcMode())
79 // return 0;
80 //
81 // stealth.policyMode(); // do all policy-file related tasks
76 Stealth stealth;
77
78 if (stealth.ipcMode())
79 return 0;
80
81 stealth.policyMode(); // do all policy-file related tasks
8282 }
8383 catch (exception const &err)
8484 {