mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[console] Link against libQFruamoko_console
Fixes shared plugin not loading due to missing symbol.
This commit is contained in:
parent
49afdde77f
commit
e089234f38
4 changed files with 4 additions and 6 deletions
|
@ -24,21 +24,22 @@ client_deps= \
|
|||
libs/audio/libQFsound.la \
|
||||
libs/ruamoko/libQFruamoko.la \
|
||||
libs/gib/libQFgib.la \
|
||||
libs/ruamoko/libQFruamoko_client.la \
|
||||
libs/ruamoko/libQFruamoko.la \
|
||||
$(console_deps)
|
||||
server_deps= libs/console/libQFconsole.la $(console_deps)
|
||||
|
||||
libs_console_libQFconsole_la_LDFLAGS= $(lib_ldflags)
|
||||
libs_console_libQFconsole_la_LIBADD= $(console_deps) $(plugin_libadd)
|
||||
libs_console_libQFconsole_la_LIBADD= $(console_deps) $(plugin_libadd)
|
||||
libs_console_libQFconsole_la_DEPENDENCIES= $(console_deps)
|
||||
libs_console_libQFconsole_la_SOURCES= $(console_common_sources)
|
||||
|
||||
libs_console_console_client_la_LDFLAGS= $(plugin_ldflags)
|
||||
libs_console_console_client_la_LIBADD= $(client_deps) $(plugin_libadd)
|
||||
libs_console_console_client_la_DEPENDENCIES= $(client_deps)
|
||||
libs_console_console_client_la_DEPENDENCIES=$(client_deps)
|
||||
libs_console_console_client_la_SOURCES= $(client_sources)
|
||||
|
||||
libs_console_console_server_la_LDFLAGS= $(plugin_ldflags)
|
||||
libs_console_console_server_la_LIBADD= $(server_deps) $(NCURSES_LIBS) $(plugin_libadd)
|
||||
libs_console_console_server_la_DEPENDENCIES= $(server_deps)
|
||||
libs_console_console_server_la_DEPENDENCIES=$(server_deps)
|
||||
libs_console_console_server_la_SOURCES= $(server_sources)
|
||||
|
|
|
@ -46,7 +46,6 @@ nq_cl_plugin_LIBS= \
|
|||
|
||||
nq_client_LIBFILES= \
|
||||
libs/gib/libQFgib_client.la \
|
||||
libs/ruamoko/libQFruamoko_client.la \
|
||||
libs/entity/libQFentity.la \
|
||||
libs/video/targets/libQFjs.la \
|
||||
libs/audio/libQFcd.la \
|
||||
|
|
|
@ -88,7 +88,6 @@ qw_cl_plugin_LIBS= \
|
|||
qw_client_LIBS= \
|
||||
libs/qw/libqw.a \
|
||||
libs/gib/libQFgib_client.la \
|
||||
libs/ruamoko/libQFruamoko_client.la \
|
||||
libs/net/libnet_chan.la \
|
||||
libs/entity/libQFentity.la \
|
||||
libs/console/libQFconsole.la \
|
||||
|
|
|
@ -86,7 +86,6 @@ qwaq_client_libs= \
|
|||
qwaq_x11_libs= \
|
||||
$(qwaq_cl_plugin_libs) \
|
||||
${top_builddir}/libs/gib/libQFgib.la \
|
||||
${top_builddir}/libs/ruamoko/libQFruamoko_client.la \
|
||||
$(top_builddir)/libs/video/renderer/libQFrenderer.la \
|
||||
$(top_builddir)/libs/models/libQFmodels.la \
|
||||
$(top_builddir)/libs/video/targets/libQFx11.la \
|
||||
|
|
Loading…
Reference in a new issue