Summary Period: 2003-03-14 to 2003-06-15
[root]/CS/apps/tests/eventtest
Total Lines Of Code:
362 (2003-07-11 20:29)
Author | Changes | Lines of code | Lines per change |
---|---|---|---|
Totals | 14 (100.0%) | 463 (100.0%) | 33.0 |
jtarbox | 4 (28.6%) | 406 (87.7%) | 101.5 |
sunshine | 4 (28.6%) | 30 (6.5%) | 7.5 |
matzebraun | 2 (14.3%) | 16 (3.5%) | 8.0 |
boyan | 1 (7.1%) | 5 (1.1%) | 5.0 |
philwyett | 2 (14.3%) | 3 (0.6%) | 1.5 |
jorrit | 1 (7.1%) | 3 (0.6%) | 3.0 |
Eliminated the link errors in the apps on Linux.
1 lines of code changed in:
Replaced NULL with 0.
3 lines of code changed in:
Reverted the last two changes until we can arrive at a solution which also
works with MSVC. The problem was that on Alpha, int64 is simply
(long int), thus the format %lld is incorrect (it needs the format %ld).
2 lines of code changed in:
Hack:
Removed cast to long long in favor of cstypes.h int64 and uint64.
This will GCC the long long it wants and MSVC something it can
compile.
2 lines of code changed in:
Eric Sunshine eliminated numerous compilation warnings throughout the
project.
2 lines of code changed in:
Eric Sunshine made the following changes:
-*- Modified configure.ac so that it emits a SRCDIR property to
config.mak. This value represents the --srcdir argument given to the
configure script (or "." if --srcdir is omitted). This points at the
directory containing the CS source code (which may differ from the
build directory, which is typically the current working directory).
-*- Modified makefiles and build scripts throughout the project so that
they respect $(SRCDIR). This allows the project to be built in a
directory other than the source directory, thus it is possible to
place the source directory on a readonly filesystem (such as a
CD-ROM), or to share a single NFS-mounted source directory among
different builds, where each build inhabits its own directory. For
example, if CS resides at /home/CS and you wish to build the project
in /home/build:
% cd /home/build
% ../CS/configure
% make -k all
% make install
(Note that the Jam-base build system already supports this build
paradigm.)
-*- Modified configure.ac so that it emits EXTENSIVE_MEMDEBUG to
config.mak since this variable is used by Makefile.in for the
`showconfig' target.
-*- Modified configure.ac so that it emits MONITOR_MAKEFILE_CACHE when the
value is either "yes" or "no", instead of emitting it only when the
value is "yes". This was necessary because CS/mk/cache.mak prints the
value of this variable as part of $(SYSMODIFIER).
3 lines of code changed in:
Eric Sunshine made the following changes to the makefiles:
-*- Converted the remaining "application" makefiles so that they place
their generated files in a personalized subdirectory of $(OUT), rather
than placing them directly in $(OUT). This lifts the monolithic
restriction that all applications must use distinct names for their
source files.
-*- Converted the application makefiles to augment OUTDIRS with their
personalized output directories, rather than each having a custom
directory creation rule. Not only does this simplify the makefiles
slightly, but it also fixes a problem where the personalized output
directories of plugin modules were not created when an application
makefile target (such as "make walktest") was invoked explicitly and
when the project had been configured with --disable-plugins.
-*- Updated CS/mk/template.mak to reflect the aforementioned changes.
-*- Fixed formatting of help messages emitted by "make help" for several
makefiles.
23 lines of code changed in:
added the Jamfiles
10 lines of code changed in:
Finished the Flatten/Unflatten code in iEvent.
10 lines of code changed in:
added int64 support to iEvents
47 lines of code changed in:
Now after Jorrit was faster than me and I had lots of up-to-date check failed, I only commited the few places missed.
6 lines of code changed in:
Fixed compilation error on msvc6
5 lines of code changed in:
adding in the initial event system update (the test app)
349 lines of code changed in:
Generated by StatCvs v0.2-dev