Pages: « Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 Next »
Summary Period: 2006-04-04 to 2006-03-11 (Commits 9082-9131 of 9331)
merge from v2_0branch. v2_0branch tagged as merge-2_0-2_1-11.
650 lines of code changed in:
update the windows readme to be a bit more accurate and a lot less biggoted
21 lines of code changed in:
touch-up some things in the -help message
25 lines of code changed in:
remove extra whitespace from startup messages. not as pretty, but won't get clobbered by scripted cleanups again.
4 lines of code changed in:
grammar
1 lines of code changed in:
merge the new spawn policy changes from v2_0branch to HEAD.
570 lines of code changed in:
update to the new AC_INIT and AM_INIT_AUTOMAKE form, specifying the minimum version requirements that coincide with autogen.sh. since you can't call any shell before AC_INIT, this necessarily means the version needs to also go here until some m4 magic can be added.
15 lines of code changed in:
update configure.ac as well until m4 magic gets added
1 lines of code changed in:
add labels for each of the major sections along with a variety of FIXMEs where extensive work is needed
50 lines of code changed in:
merge header line from v2_0branch
2 lines of code changed in:
reformat comment to block instead of a bunch of lines, mention how it 'would be nice' if the maximum number of lines per scroll page were configurable
17 lines of code changed in:
merge max line changes from v2_0branch to HEAD
42 lines of code changed in:
merge from v2_0branch, ignore libtool
1 lines of code changed in:
more autogenerated crap to ignore
7 lines of code changed in:
merge v2_0branch to head, textchunkmanager max size mods and migration to common
279 lines of code changed in:
remove the Id line to avoid merge conflicts (kk would suffice, but bz doesn't generally have/use rcs vars so just remove the anamoly
0 lines of code changed in:
commit from v2_0branch, provide a std::isnan
5 lines of code changed in:
ws
6 lines of code changed in:
merge from v2_0branch, check whether tanks are above/below us
9 lines of code changed in:
undefine isnan, min, max macros if we're going to define them; especially for cases like when std::isnan template func is provided.
12 lines of code changed in:
add initial mkdirp.m4 file for AM_PROG_MKDIR_P (which the plugins use) in case the system automake being used does not provide it
75 lines of code changed in:
output executable to ../src/bzfs
1 lines of code changed in:
the common header needs to also work with C and Obj-C compilers so protect the namespace inline template junk with __cplusplus and provide a preprocessor alternate just in case
44 lines of code changed in:
const on cast type is similarly meaningless
5 lines of code changed in:
quell mipspro warning about partial override on setFullscreen(). one takes a bool the other does not. the one that takes a bool doesn't seem to be virtual, at least nobody overrides it so make it not so.
1 lines of code changed in:
unused variable, allVBO
2 lines of code changed in:
impl says they are inline, quell warning
4 lines of code changed in:
missed one, const type qualifier on non-pointer return types doesn't mean anything, don't do it
2 lines of code changed in:
Access control is not specified so assume the author really just forgot, and assign them as publicly inherited.
52 lines of code changed in:
Access control is not specified so assume the author really did mean the default, which is private.
5 lines of code changed in:
the -no_autoinclude option isn't really required and doesn't exist for some versions, so just comment on it but leave it out of the example
5 lines of code changed in:
Access control is not specified so assume the author really did mean the default, which is private.
1 lines of code changed in:
const type qualifier on non-pointer return types doesn't mean anything, don't do it
12 lines of code changed in:
Access control is not specified so assume the author really did mean the default, which is private.
20 lines of code changed in:
if stdint is included, then we shouldn't need all the stdintish typedefs..; also just because isnan doesn't work doesn't mean there might be a macro for it under different conditions than configure had (e.g. when swapping in a C compiler)
9 lines of code changed in:
more const return qualifiers on non-pointer/structure types
2 lines of code changed in:
variable "wheelTexCoordLen" is set but never used
0 lines of code changed in:
more const return qualifiers on non-pointer/structure types
2 lines of code changed in:
const type qualifier on integer return types don't make sense, don't do it
10 lines of code changed in:
unused variables, quell mipspro warnings
6 lines of code changed in:
const type qualifier on integer return type don't mean nuthin so don't do it
2 lines of code changed in:
chars aren't guaranteed to be signed, quell mipspro warning and hope it isn't faulty logic
1 lines of code changed in:
having a const type qualifier on int/float return types is meaningless
8 lines of code changed in:
type qualifier on a void return type is meaningless, make it match the header fix
1 lines of code changed in:
remove unused var mipspro detected
1 lines of code changed in:
type qualifier on a void return type is meaningless, thx mipspro
1 lines of code changed in:
check for arpa/nameser_compat.h, ares uses it but irix doesn't provide it
3 lines of code changed in:
this here platform has _isnan(x), not std::isnan(x), and certainly not isnan(x).
2 lines of code changed in:
utilize the new BZ_FUNC_ISNAN m4 macro that includes somewhat pmore practical checks for std::isnan and isnan that you get with AC_CHECK_FUNCS. also check for the cmath, inttypes.h and sys/types.h headers
6 lines of code changed in:
er, don't bother checking the private gcc extension namespace for now. checking for std::isnan and isnan along should be sufficient
3 lines of code changed in:
Pages: « Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 Next »
Generated by StatCVS 0.2.2