PDA

View Full Version : Visual Studio 2008 and Windows Server 2008


Frumph
01-13-2010, 08:03 PM
[these notes are for other people]

Okay, so I figured out that I need to install perl 5.10 then in visual studio set the include and lib directories in the project options to find the perl\lib\core directory.

Also figured out that mysql I needed to set the mysql\include and lib directories for mysql.h and the appropriate lib of the installed mysql version and not use the connector release, but the full release has developement code for it to be added when installing

The problem I ran into was that I still couldn't find zlib.h but the zlib.dll is inside the mysql/lib directory but couldn't find a .h for it in the mysql installation so I download zlib and pointed to that .h in the visual studio project include files configuration


On a good note, everything says it compiled, buncha warnings but compiled, not the problem I am Having ----
----

What next? most of the .exe's are manifests, whats the next step for putting all the files in an appropriate places, where does it compile the .exe's too, do I change the manifests to exe's and put them into the build folder, do I set something in visual studio to have it compile the exe's into the right folder for the server?

Anyone have any experience with VS2008 that can help me out with that?

- Phil (Frumph)

nilbog
01-13-2010, 09:48 PM
This link from the wiki will help you find what files to use from your VS2008 build.

http://www.eqemulator.net/wiki/wikka.php?wakka=VS2008

I use C:/eqemu for my directory and those 14 files are present along with quests folder, maps folder, etc. Here are a couple more links that should help you.

http://www.eqemulator.net/forums/showthread.php?t=29043

http://www.eqemulator.net/wiki/wikka.php?wakka=ws992mysql5

Frumph
01-13-2010, 10:52 PM
Hey thank you nilbog, giving it a go right now, going to try the releasebots mode since I have that allsetup. Everything was working with the executable zip from the google repository just going to take a stab at seeing what I can do with it.

- Phil

Frumph
01-13-2010, 11:03 PM
On a good note, everything compiled into exe's and dll's appropriately,


Hrm getting the EQEmuLoginServer.exe debug error

HEAP CORRUPTION DETECTED after Normal Block (#571) at 0x00c92898 CRT detect that the application wrote to memory after end of heap buffer

clicking ignore brings an 'unknown error occured while trying to join the server' with the client, hrm the block # changes frequently, bleah.

The workaround is to use the public login server unfortunately I havent been able to login to the public login server and find my privately set server on the list.

Fixed by making it public, /shrug can't wait for that bug to be fixed

Thanks Nilbog!