Package: supertransball2 / 1.5-9

Metadata

Package Version Patches format
supertransball2 1.5-9 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Fix unix paths and Makefile.patch | (download)

sources/Makefile | 21 16 + 5 - 0 !
sources/configuration.cpp | 7 7 + 0 - 0 !
sources/encoder.cpp | 12 11 + 1 - 0 !
sources/game.cpp | 10 9 + 1 - 0 !
sources/main.cpp | 32 31 + 1 - 0 !
sources/maps.cpp | 4 4 + 0 - 0 !
sources/replays.cpp | 8 8 + 0 - 0 !
sources/state_changepack.cpp | 8 6 + 2 - 0 !
sources/state_chooseship.cpp | 2 1 + 1 - 0 !
sources/state_endsequence.cpp | 2 1 + 1 - 0 !
sources/state_game.cpp | 10 5 + 5 - 0 !
sources/state_gameover.cpp | 2 1 + 1 - 0 !
sources/state_instructions.cpp | 2 1 + 1 - 0 !
sources/state_interphase.cpp | 7 6 + 1 - 0 !
sources/state_keyredefinition.cpp | 2 1 + 1 - 0 !
sources/state_levelfinished.cpp | 2 1 + 1 - 0 !
sources/state_logo.cpp | 2 1 + 1 - 0 !
sources/state_mainmenu.cpp | 6 5 + 1 - 0 !
sources/state_replay.cpp | 10 5 + 5 - 0 !
sources/state_replaymanager.cpp | 11 10 + 1 - 0 !
sources/state_typetext.cpp | 2 1 + 1 - 0 !
21 files changed, 131 insertions(+), 31 deletions(-)

 fix unix paths and makefile
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

This patch fixes various path issues and the Makefile. It was created
by merging all patches which existed before version 1.5-5. The original
authors of those patches were Grkan Sengn and jusTiCe8.

Since version 1.5-5 the patch which added commandline options to
supertransball2 is gone. It didn't work anyway. The Makefile
has been further improved. Now supertransball2 doesn't link against
libsdl_sound anymore which was superfluous.

hardening.patch | (download)

sources/Makefile | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 hardening

Add hardening build flags to supertransball2.

gcc 6 convert bool.patch | (download)

sources/auxiliar.cpp | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 gcc-6 convert bool

The current C++ standard only allows integer literals to be used as null
pointer constants, so other constants such as false and (1 - 1) cannot be used
where a null pointer is desired. Code that fails to compile with this error
should be changed to use nullptr, or 0, or NULL.

Debian-Bug: https://bugs.debian.org/811617