Thanks for the move to github, this will help me a lot.
Actually a tar ball would be nice, as you have released a new release for this, which I noticed just today, but only with rpm release targets.
Salvador Eduardo Tropea: Sorry for the delay. The patch works partly, I needed to add the equal abs definiton to classes/tdisplay.cc too, see the attached file. I don't need a tarball for this.
Thanks for the info, but this doesn't help me. I need to prepare a versioned build for gentoo, not a live build file. If you don't want to share your patches, I guess, I need to figure them out myself, or just use my patch.
Your macro looks cleaner then my changes to the datatype. If you like, you can create a PR against my fork of the project at https://sourceforge.net/u/waebbl/tvision/ci/master/tree/
Is this project still alive?
See the following patch of where I had to add changes: diff --git a/classes/tdesktop.cc b/classes/tdesktop.cc index 38f1be4..041e0a0 100644 --- a/classes/tdesktop.cc +++ b/classes/tdesktop.cc @@ -142,8 +142,8 @@ TBackground *TDeskTop::initBackground( TRect r ) static unsigned iSqr( unsigned i ) { - unsigned res1 = 2; - unsigned res2 = i/res1; + int res1 = 2; + int res2 = i/res1; while( abs( res1 - res2 ) > 1 ) { res1 = (res1 + res2)/2; diff --git a/classes/tdisplay.cc b/classes/tdisplay.cc index...
compile failure with newer gcc