Qt-interest Archive, February 2007
today snapshot compilation error
Message 1 in thread
Hi,
I am trying to compile the latest snapshot with visual c++ 2005 on
windows XP ... and configure failed with the following error :
..... sha1/sha1.cpp(68) : error C3861: '_rotl' : identificateur
introuvable
nmake fatal error U1077 .....
code retour 0x02
stop building qmake failed return code 2
best regards,
Yannick
--
[ signature omitted ]
Message 2 in thread
I have added to sha1.cpp
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
yannick kohn a écrit :
> Hi,
>
> I am trying to compile the latest snapshot with visual c++ 2005 on
> windows XP ... and configure failed with the following error :
> ..... sha1/sha1.cpp(68) : error C3861: '_rotl' : identificateur
> introuvable
> nmake fatal error U1077 .....
> code retour 0x02
> stop building qmake failed return code 2
>
> best regards,
>
> Yannick
>
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with
> "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
>
>
--
[ signature omitted ]
Message 3 in thread
Hi,
I also suffer the same compilation error compiling the latest snapshot
with visual c++ 2003 on Windows XP. Appears to me that the 3rd party
sha1 code (src\3rdparty\sha1\sha1.cpp) for windows does not include
enough headers. I added the following to cover this:
#ifdef Q_CC_MSVC
#include <stdlib.h>
#endif
Regards,
Simon
On 27/02/07, yannick kohn <kohny@xxxxxxxxxxxx> wrote:
> Hi,
>
> I am trying to compile the latest snapshot with visual c++ 2005 on
> windows XP ... and configure failed with the following error :
> ..... sha1/sha1.cpp(68) : error C3861: '_rotl' : identificateur
> introuvable
> nmake fatal error U1077 .....
> code retour 0x02
> stop building qmake failed return code 2
>
> best regards,
>
> Yannick
>
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
>
>
--
[ signature omitted ]