Trolltech Home | QSA-interest Home | Recent Threads | All Threads | Author | Date
All threads index page 1

QSA-interest Archive, December 2005
compiling release-libs of QSA 1.2.0


Message 1 in thread

Hi
Somehow doing a "./configure"+"make" only compiles the qsa debug libraries and 
not the release libs. Does anybody knows how to create the release-libs. I 
already tried to modify the pro-files... but since now without success.

My settings:
I have the Qt4-source decompressed,compiled,installed in /usr/local/qt4 and 
decompressed QSA 1.2.0 in /usr/local/qsa. QTDIR ist set to /usr/local/qt4 and 
I have no problem compiling any Qt4-programm. QSA compiles fine too with all 
examples...... and copies its libs to /usr/local/qt4/lib -- but I only get 
debug-libs of qsa :(

Greetings
	Jens

P.S:
In src/qsa/qsa.pro of QSA 1.2.0
	VERSION=1.1.2 should be VERSION=1.2.0



Message 2 in thread

Jens wrote:
> Somehow doing a "./configure"+"make" only compiles the qsa debug libraries and 
> not the release libs. Does anybody knows how to create the release-libs. I 
> already tried to modify the pro-files... but since now without success.

You can (re-)configure Qt with the -release switch and then
run configure / make for QSA again. QSA is then compiled with
the same settings as Qt.

And while you're fixing stuff you might as well want to
fix the asin function in file 'src/engine/qsmath_object.cpp'
line 97 (change sin to asin in implementation):

QSObject QSMathClass::qs_asin(QSEnv *env)
{
     return env->createNumber(::asin(env->arg(0).toNumber()));
}

   andrew
-- 
 [ signature omitted ] 

Message 3 in thread

I filed this bug almost two months ago now:

http://www.trolltech.com/developer/tasktracker.html?id=88519&method=entry

I even provided the exact line number an fix that Andrew did below. It makes 
me a little nervous that the page indicates "Severity changed to 'Minor', 
Priority changed to 'No Priority.'" Seems like such a trivial fix that causes 
blatantly wrong answers would already be fixed.

John Cummings

On Friday 02 December 2005 05:52, Andrew Mustun wrote:
>
> And while you're fixing stuff you might as well want to
> fix the asin function in file 'src/engine/qsmath_object.cpp'
> line 97 (change sin to asin in implementation):
>
> QSObject QSMathClass::qs_asin(QSEnv *env)
> {
>      return env->createNumber(::asin(env->arg(0).toNumber()));
> }
>
>    andrew


Message 4 in thread

John Cummings wrote:
> I filed this bug almost two months ago now:
> 
> http://www.trolltech.com/developer/tasktracker.html?id=88519&method=entry
> 
> I even provided the exact line number an fix that Andrew did below. It makes 
> me a little nervous that the page indicates "Severity changed to 'Minor', 
> Priority changed to 'No Priority.'" Seems like such a trivial fix that causes 
> blatantly wrong answers would already be fixed.
> 
> John Cummings

Hi John,

This task has been fixed some time ago, but the task system was not 
properly updated. This has now been fixed. Sorry for the inconvenience.

-
Gunnar