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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>
Summary Period: 2003-05-03 to 2003-04-28 (Commits 11795-11844 of 12744)
Restructure of csperlxs.c generation and Jamfile activation.
43 lines of code changed in:
attempted to make --makevars working in jam for backward compatibility. Note that this isn't really a good way of doing things, it never worked good in the past and it won't work good now.
63 lines of code changed in:
- Matze did several changes in the jamrules:
- rewrote custom filetype registration in the jamrules. Now the
rules can decide themself what objects result from sourcefiles. This allows cleaner handling of header files and makes it possible to
output multiple object files from 1 sourcefile
- Headerfile scanning has to be enabled explicitely for registered
rules. This avoids incorrect headerfilescanning in bison and flex
files.
- Cleaned up and improved bison and flex rules. They are alot more
robust now as jam is aware that bison produces 2 files (a cpp and
a header file)
209 lines of code changed in:
history update
4 lines of code changed in:
changed -Wno-unused-function and -Wno-unused-label to -Wno-unused because gcc2.9x doesn't know the first 2 flags
1 lines of code changed in:
- Wouter updated csfgen so it defaults an alphamap of the font by
default. The opengl video uses this for antialiased font rendering.
Unantialiased fonts can also be created (with -a).
38 lines of code changed in:
augmented the jamtemplate project to handle the CFLAGS issue as well
62 lines of code changed in:
made configure respect CFLAGS, CXXFLAGS and CPPFLAGS passed to it
41 lines of code changed in:
history update
3 lines of code changed in:
fixed double declaration of window_item in skinpars.yy
1 lines of code changed in:
use shell when starting the script for win32 resource creation
6 lines of code changed in:
Updated csperl5 Jamfile in line with recent update to its makefile.
4 lines of code changed in:
Eric Sunshine augmented jobber.pl to make it possible to associate
multiple directories with a single "target" (in @TARGETS). All of the
current updating targets modify files in a single directory hierarchy (for
instance, "htmldoc" modifies the "out/docs/html" hierarchy, but touches
nothing outside of this directory). With this change, however, future
targets can modify, add, remove files in multiple directories. For
instance, the upcoming Swig re-generation target will touch files in
several directories.
158 lines of code changed in:
added missing entries
4 lines of code changed in:
- changed the VFS cache manager to return data w/o null terminator.
- added a new constructor to csDataBuffer, copying from an existing
data buffer (and adding a null terminator.)
- fixed precalc info reader for the changed cache manager behaviour.
17 lines of code changed in:
- made the following changes to VFS:
- added iFile::SetPos() to complement iFile::GetPos()
- added a new parameter to iFile::GetAllData() and
iVFS::ReadFile() whether the returned data buffer should
feature a null terminator. Default is 'no' resp. 'yes'.
- implemented GetAllData() for VFS disk files. When supported
by hardware and no null terminator is requested, nothing is read
but a file mapping is created. The created buffer is also saved
and all subsequent reads are copied from this buffer.
- added the possibility to map a disk file into memory on opening
when it is in a specific size range, but disabled for now as I'm
not sure whether this is really advantageous.
- fixed the document system plexer to seek in a file to the initial
position prior passing it to the "real" document system.
- changed binary loader to take advantage of iFile::GetAllData().
- parser now requests buffers w/o null termination for image
loading.
- changed TinyXML plugin to use iFile::GetAllData().
362 lines of code changed in:
Reshuffle of files to make sure cssysdef.h is the very first file included.
127454 lines of code changed in:
Removed pending immediate addition of replacement file.
0 lines of code changed in:
update
3 lines of code changed in:
fixed the case when distutil.sysconfig.get_config_var() returns None so cocatenation with a
string would fail
2 lines of code changed in:
- Finally fixed a bad bug which caused levels that use Dynavis to
be lit wrong. The reason was that Dynavis access the thing data
at an early stage at which point materials and textures haven't
been registered yet. Accessing the thing data causes the thing
to 'Prepare' itself and if that happens with the texture not yet
prepared the thing will assume the texture is 64x64. Of course
that may turn out to be completely wrong but all future lighting
calculations will still be based on that wrong value. I solved this
by not setting 'prepared' to true when a missing texture is found.
This will force the thing to be prepared again later at which
point the texture is most likely present.
- Fixed a missing initialization of logparent in csThingStatic.
44 lines of code changed in:
Fixed Swig version test to use -version rather than --version.
Fixed typographical error in minimum Swig version number.
Also made a more educated guess about the minimum Swig version.
5 lines of code changed in:
Eric Sunshine made the following changes to progver.m4 and
configure.ac:
-*- Performed some cleanup of CS_CHECK_PROG_VERSION() and its support
macros. (progver.m4 could use some more reformatting, though, as it
is still somewhat difficult to read.)
-*- Fixed some potential quoting problems in progver.m4.
-*- Upgraded progver.m4 to make better use of m4sugar facilities.
-*- Renamed all of the shell variables in progver.m4 to better conform to
Autoconf naming conventions.
-*- Renamed AC_CHECK_PROG_VERSION() to CS_CHECK_PROG_VERSION().
-*- CS_CHECK_PROG_VERSION() now exports the shell variable
cs_cv_prog_PROG_version_ok, rather than the inverted
ac_cv_check_version_PROG_bad.
-*- Fixed issue where emitted result string from CS_CHECK_PROG_VERSION()
via an uncached run did not match emitted result via a cached run.
-*- Removed the AC_CHECK_BISON_VERSION() and AC_CHECK_SWIG_VERSION()
specialization macros from progver.m4 since they polluted an otherwise
general-purpose macro utility file.
-*- Upgraded configure.ac to utilize CS_CHECK_PROG_VERSION() for Bison and
Swig tests.
-*- Eliminated now obsolete bison.m4 (AC_CHECK_BISON).
234 lines of code changed in:
Renamed vd.m4 to progver.m4 since it provides the AC_CHECK_PROG_VERSION()
(not some macro named VD).
184 lines of code changed in:
Eric Sunshine renamed cswigpl5.c to cswigpl5.cpp in repository since this
is the filename which the makefile expects (and to ensure that it gets
compiled as C++, rather than C).
7411 lines of code changed in:
Eric Sunshine made the following changes:
-*- Removed the ugly FILTER argument from CS_TEXT_CACHE_OUTPUT() in
textcache.m4. This was a nasty hack to allow CS_JAMCONFIG_OUTPUT() to
do global post-processing of the cache before otuput. Fortunately,
however, the Jam-related installation-paths code has been refactored
so that this is no longer needed, and is no longer used by
CS_JAMCONFIG_OUTPUT().
-*- Upgraded textcache.m4 to use AS_IF() rather than raw `if'.
107 lines of code changed in:
- Philip Wyett removed MSVC external references to /MT and /MTd
as these params are not valid and will cause problems if used
when creating an application with current CS.
4 lines of code changed in:
update
1 lines of code changed in:
Added some information whats going on in vd.m4
43 lines of code changed in:
changed jam install rules with scfreg
19 lines of code changed in:
fixed a typo in doxygen Jamfile
1 lines of code changed in:
- changed the new GL renderer to utilize the modified extension
manager.
91 lines of code changed in:
- added some missing includes to glextmanager.h
Also moved an earlier history entry of me to the correct date.
10 lines of code changed in:
use the installdir rules in the jamtemplate
7 lines of code changed in:
separated installpath handling
115 lines of code changed in:
updated the event object from csVector to csArray<>
64 lines of code changed in:
history update
3 lines of code changed in:
disabled csperl5 Jamfile. I can't finish that when it doesn't even work with make
24 lines of code changed in:
added missing history entry
5 lines of code changed in:
update
4 lines of code changed in:
- Norman added recognition of "Change" and "BigChange" property
to aws scrollbar's setup. This enhancement was submitted by
Logan Gabriel <gersh@sonn.com>. He also fixed documentation of
aws scrollbat as hinted by Logan.
5 lines of code changed in:
Update
7 lines of code changed in:
Norman Kraemer fixed version detection.
The right result is now also found if not all parts of the version
string return the same result in comparision with the supplied version,
e.g. That is not only "1.3.16 >= 1.2.13" will yield true, but also
"1.3.16 >= 1.2.20".
He also changed some of the variable names to comply with Autoconf rules.
13 lines of code changed in:
history update
4 lines of code changed in:
override crappy jam default filemodes
6 lines of code changed in:
Norman Kraemer added an Autoconf macro to check program versions.
11 lines of code changed in:
Fixed problems where csArray<T>::Pop() and Top() were accessing the
non-existent `Length' instance variable.
21 lines of code changed in:
moved crystal.m4 to more appropriate mk/autopconf directory
199 lines of code changed in:
use the new uniform crystal.m4 macro in the jam template
2 lines of code changed in:
improved crystal.m4 a bit so that it now includes a macro usefull for jam and a make builds
40 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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>
Generated by StatCvs v0.2-dev