-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added configure option to select his memory allocation modes * Added Alex to the "About FreeSCI" boxes Here's his changelog: 2001-08-15 Alex Angas <[email protected]> * src/scicore/sci_memory.c, src/include/sci_memory.h: Library for safe allocation of memory and accurate reporting of where calls fail. Includes: sci_malloc(), sci_calloc(), sci_realloc(), sci_free(), sci_memdup(), sci_strdup(), sci_strndup(). * src/scicore/tools.c, src/gfx/gfx_test.c, src/scicore/console.c, src/include/resource.h, src/scicore/resource.c, src/include/menubar.h: Generally removed various parts and merged into the sci_memory library. * src/gfx/menubar.c, src/engine/cfsml.pl, src/engine/savegame.cfsml, src/include/console.h, src/gfx/menubar.c, src/sound/sfx_save.cfsml, src/sound/sound.c, src/include/sound.h, src/sound/soundserver_sdl.c, src/sound/soundserver_unix.c, src/sound/tools.c: Removed redundant code, merged some parts into sci_memory. These files were changed to use the sci_memory library. * src/scicore/Makefile.am: Now compiling sci_memory.c. * src/win32/fsci_dll.dsp, src/win32/sciv.dsp: Now compiling sci_memory.c. * ./acinclude.m4, ./aclocal.m4: Corrected Web address for dmalloc library. * src/include/kernel.h (get_nsrect), src/include/sound.h: Fixed Win32 linkage problem. * ./portable_howto.txt: Added message about not using #warning. Sorry for taking so long to merge this patch! -- Christoph
- Loading branch information
Showing
34 changed files
with
2,789 additions
and
2,342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -223,4 +223,9 @@ conf/ | |
|
||
|
||
Alexander R. Angas: <[email protected]> | ||
Win32 optimizations and updates in many files | ||
Win32 optimizations and updates in many files | ||
memory function intermediate layer | ||
scicore/ | ||
sci_memory.c | ||
include/ | ||
sci_memory.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,38 @@ | ||
2001-08-18 Christoph Reichenbach <[email protected]> | ||
|
||
* configure.in: Added --with-alloc option to set SCI_ALLOC | ||
|
||
2001-08-15 Alex Angas <[email protected]> | ||
|
||
* src/scicore/sci_memory.c, src/include/sci_memory.h: Library for safe | ||
allocation of memory and accurate reporting of where calls fail. | ||
Includes: sci_malloc(), sci_calloc(), sci_realloc(), sci_free(), | ||
sci_memdup(), sci_strdup(), sci_strndup(). | ||
|
||
* src/scicore/tools.c, src/gfx/gfx_test.c, src/scicore/console.c, | ||
src/include/resource.h, src/scicore/resource.c, src/include/menubar.h: | ||
Generally removed various parts and merged into the sci_memory library. | ||
|
||
* src/gfx/menubar.c, src/engine/cfsml.pl, src/engine/savegame.cfsml, | ||
src/include/console.h, src/gfx/menubar.c, src/sound/sfx_save.cfsml, | ||
src/sound/sound.c, src/include/sound.h, src/sound/soundserver_sdl.c, | ||
src/sound/soundserver_unix.c, src/sound/tools.c: | ||
Removed redundant code, merged some parts into sci_memory. These files | ||
were changed to use the sci_memory library. | ||
|
||
* src/scicore/Makefile.am: Now compiling sci_memory.c. | ||
|
||
* src/win32/fsci_dll.dsp, src/win32/sciv.dsp: Now compiling | ||
sci_memory.c. | ||
|
||
* ./acinclude.m4, ./aclocal.m4: Corrected Web address for dmalloc | ||
library. | ||
|
||
* src/include/kernel.h (get_nsrect), src/include/sound.h: Fixed Win32 | ||
linkage problem. | ||
|
||
* ./portable_howto.txt: Added message about not using #warning. | ||
|
||
2001-08-13 Christoph Reichenbach <[email protected]> | ||
|
||
* src/gfx/drivers/xlib_driver.c (xlib_init): Added listing of | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
#undef HAVE_MITSHM | ||
#undef HAVE_SDL | ||
#undef HAVE_DLOPEN | ||
#undef SCI_ALLOC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.