[root]/StandAlone/convert
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 126 (100.0%) | 167 (100.0%) | 1.3 |
jas | 123 (97.6%) | 114 (68.3%) | 0.9 |
dav | 3 (2.4%) | 53 (31.7%) | 17.6 |
M configure.ac
M configure
M aclocal.m4
M configVars.mk.in
Clean up configure so that variables placed into configVars.mk only
specify the libraries for that variable (and not required libraries).
This helps clean up the configVars.mk file (makes it easier to see
specifically the libraries listed for a specific variable, and cleans
up the compile lines as libraries are not listed multiple times. This
was the way the system was supposed to be set up and how the comments
say it works, just not the way it was implemented (for some
variables).
With this change, there might be a few sub.mk files that need extra
make library variables listed in them so that all libraries can be
found to successfully link an executable.
M .../*/sub.mk
Now need to add $(THREAD_LIBRARY) to many sub.mk files. Also used
spacing/indention to make some files easier to read.
48 lines of code changed in 2 files:
Use the proper c++ standard for include files for the C inlude files, i.e.
<stdio.h> --> <cstdio>
<math.h> --> <cmath>
Tested on g++ 4.2 and 4.3 compilers.
79 lines of code changed in 90 files:
Fix compiler build problems with gcc-4.3
35 lines of code changed in 33 files:
Needed #includes for ICC to instantiate templates.
5 lines of code changed in 1 file: