Updated core to compile for new ep2v lib names (bug 5524).

This commit is contained in:
Nicholas Hastings 2012-10-26 16:28:05 -04:00
parent 8dfae523a3
commit 115d17de01

View File

@ -40,6 +40,7 @@
#include <Logger.h>
#include "LibrarySys.h"
#include "logic_bridge.h"
#include <tier0/mem.h>
typedef ICommandLine *(*FakeGetCommandLine)();
@ -51,7 +52,10 @@ typedef ICommandLine *(*FakeGetCommandLine)();
#define TIER0_NAME "libtier0.dylib"
#define VSTDLIB_NAME "libvstdlib.dylib"
#elif defined __linux__
#if SOURCE_ENGINE >= SE_CSS
#if SOURCE_ENGINE == SE_ORANGEBOXVALVE
#define TIER0_NAME "libtier0_srv.so"
#define VSTDLIB_NAME "libvstdlib_srv.so"
#elif SOURCE_ENGINE >= SE_CSS
#define TIER0_NAME "libtier0.so"
#define VSTDLIB_NAME "libvstdlib.so"
#else