Page 1 of 1
Latest 2.0 build
Posted: Thu Dec 19, 2013 7:08 pm
by Watermelon
Is there anyone who can make a windows zandro 2.0 build? I'd like to check some things init... USUALLY I'd compile by own but my laptop that does all that is getting fixed/repaired, and this computer I'm on freaks out at visual c++ 2005 (I can't run openGL for 5 seconds before it overheats if that indicates how awesome this one is). At least I can run software
Can someone build me the latest repo? I would really appreciate it.
RE: Latest 2.0 build
Posted: Thu Dec 19, 2013 7:17 pm
by Klofkac
Uh, do you mind MSVC 2010 with no Logitech libs?
RE: Latest 2.0 build
Posted: Thu Dec 19, 2013 7:28 pm
by Torr Samaho
This is the latest build plus the
client side connect sound. I don't have the latest build without any additions at hand.
RE: Latest 2.0 build
Posted: Sun Jul 20, 2014 2:44 pm
by ZzZombo
How to install, configure and finally compile the latest Zandro? I can't make VC2010 to cooperate w/ OpenSSL:
1>\Developer\Doom\Skulltag\tools\openssl-1.0.1h\include\openssl/bn.h(1): error C2470: Link: выглядит как определение функции, но без списка параметров; пропускается вероятное тело функции.
(means "Link: looks like a function w/o parameter list; skipping supposed function body").
RE: Latest 2.0 build
Posted: Sun Jul 20, 2014 3:03 pm
by Torr Samaho
You need to build the static OpenSSL library first. Download and decompress the latest OpenSSL source. In the source directory call
Code: Select all
perl Configure VC-WIN32 --prefix=c:\Tools\Util\openssl
ms\do_nasm
Replace "c:\Tools\Util\openssl" with the path where you want OpenSSL to be installed. Then, in the same directory, but within a VC++ command prompt, call
Code: Select all
nmake -f ms\nt.mak
nmake -f ms\nt.mak test
nmake -f ms\nt.mak install
I only tested this with VC++ 2005, but it should be the same in 2010.