Unix clients can now enter commands from tty console. Patch by Rambetter with some edits by me. (#4799)

This commit is contained in:
Zack Middleton 2012-02-06 21:05:57 +00:00
parent 3241ca6e7b
commit c84377854a
2 changed files with 86 additions and 7 deletions

View file

@ -1443,10 +1443,17 @@ Q3OBJ = \
$(B)/client/sdl_input.o \
$(B)/client/sdl_snd.o \
\
$(B)/client/con_passive.o \
$(B)/client/con_log.o \
$(B)/client/sys_main.o
ifeq ($(PLATFORM),mingw32)
Q3OBJ += \
$(B)/client/con_passive.o
else
Q3OBJ += \
$(B)/client/con_tty.o
endif
Q3ROBJ = \
$(B)/renderer/tr_animation.o \
$(B)/renderer/tr_backend.o \