This commit is contained in:
vl 2010-05-12 16:26:57 +02:00
commit 7ba68107ed
3 changed files with 31 additions and 2 deletions

View file

@ -140,9 +140,16 @@ __declspec(dllexport) ISoundDriver::TDriver NLSOUND_getDriverType()
#elif defined (NL_OS_UNIX) #elif defined (NL_OS_UNIX)
#ifndef NL_STATIC
extern "C" extern "C"
{ {
#endif
#ifdef NL_STATIC
ISoundDriver* createISoundDriverInstanceOpenAl(ISoundDriver::IStringMapperProvider *stringMapper)
#else
ISoundDriver* NLSOUND_createISoundDriverInstance(ISoundDriver::IStringMapperProvider *stringMapper) ISoundDriver* NLSOUND_createISoundDriverInstance(ISoundDriver::IStringMapperProvider *stringMapper)
#endif
{ {
return new CSoundDriverAL(stringMapper); return new CSoundDriverAL(stringMapper);
} }
@ -151,7 +158,10 @@ uint32 NLSOUND_interfaceVersion ()
{ {
return ISoundDriver::InterfaceVersion; return ISoundDriver::InterfaceVersion;
} }
#ifndef NL_STATIC
} }
#endif
#endif // NL_OS_UNIX #endif // NL_OS_UNIX

View file

@ -31,9 +31,9 @@ LDFLAGS = $(WWWLDFLAGS) $(LUALDFLAGS) $(LD_FLAGS_CMN) \
-lclient_sheets \ -lclient_sheets \
-lseven_zip \ -lseven_zip \
-lgame_share \ -lgame_share \
-lnel3d \ -Wl,--start-group -lnel_drv_opengl -lnel3d -Wl,--end-group \
-Wl,--start-group -lnel_drv_openal -lnelsnd -Wl,--end-group \
-lnelpacs \ -lnelpacs \
-lnelsnd \
-lnelligo \ -lnelligo \
-lnelgeorges \ -lnelgeorges \
-lnelnet \ -lnelnet \
@ -45,7 +45,9 @@ LDFLAGS = $(WWWLDFLAGS) $(LUALDFLAGS) $(LD_FLAGS_CMN) \
-lrt \ -lrt \
-ldl \ -ldl \
-lluabind \ -lluabind \
-lopenal \
-lcurl \ -lcurl \
-lGL \
-lX11 -lX11
############################################################################# #############################################################################

View file

@ -26,6 +26,23 @@
# endif # endif
#endif #endif
// to get rid of you_must_not_use_assert___use_nl_assert___read_debug_h_file messages
#include <cassert>
#undef assert
#define assert nlassert
#include <luabind/luabind.hpp>
#if LUABIND_MAX_ARITY == 10
# define LUABIND_VERSION 07
#elif LUABIND_MAX_ARITY == 5
# define LUABIND_VERSION 06
#else
# pragma error("luabind version not recognized")
#endif
#if LUABIND_VERSION == 07
# include <luabind/operator.hpp>
#endif
#include "lua_ihm.h" #include "lua_ihm.h"
#include "reflect.h" #include "reflect.h"
#include "action_handler.h" #include "action_handler.h"