mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
/finally/ get asm in the sw renderer when not using --disable-shared. libtool
was using the wrong objects.
This commit is contained in:
parent
fedea4a5e1
commit
8e9505c100
2 changed files with 3 additions and 1 deletions
|
@ -24,8 +24,10 @@ sw_src= \
|
||||||
sw_redge.c sw_rmain.c sw_rmisc.c sw_rpart.c sw_rsky.c sw_rsprite.c \
|
sw_redge.c sw_rmain.c sw_rmisc.c sw_rpart.c sw_rsky.c sw_rsprite.c \
|
||||||
sw_rsurf.c sw_skin.c
|
sw_rsurf.c sw_skin.c
|
||||||
|
|
||||||
|
libasm_la_LDFLAGS= -static
|
||||||
libasm_la_SOURCES= $(asm_src)
|
libasm_la_SOURCES= $(asm_src)
|
||||||
|
|
||||||
|
libsw_la_LDFLAGS= -static
|
||||||
libsw_la_SOURCES= $(sw_src)
|
libsw_la_SOURCES= $(sw_src)
|
||||||
if ASM_ARCH
|
if ASM_ARCH
|
||||||
libsw_la_LIBADD= $(asm)
|
libsw_la_LIBADD= $(asm)
|
||||||
|
|
|
@ -37,7 +37,7 @@ static const char rcsid[] =
|
||||||
|
|
||||||
#ifndef USE_INTEL_ASM
|
#ifndef USE_INTEL_ASM
|
||||||
|
|
||||||
extern int r_bmodelactive; //FIXME this shouldn't even be getting compiled
|
int r_bmodelactive;
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue