mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-12 23:44:21 +00:00
Remove unnecessary NEED_VORBIS since you have USE_CODEC_VORBIS
Thanks zturtleman for catching this
This commit is contained in:
parent
cc40051839
commit
31d8f95427
1 changed files with 2 additions and 3 deletions
5
Makefile
5
Makefile
|
@ -995,7 +995,6 @@ endif
|
||||||
ifeq ($(USE_CODEC_VORBIS),1)
|
ifeq ($(USE_CODEC_VORBIS),1)
|
||||||
CLIENT_CFLAGS += -DUSE_CODEC_VORBIS
|
CLIENT_CFLAGS += -DUSE_CODEC_VORBIS
|
||||||
NEED_OGG=1
|
NEED_OGG=1
|
||||||
NEED_VORBIS=1
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(USE_CODEC_OPUS),1)
|
ifeq ($(USE_CODEC_OPUS),1)
|
||||||
|
@ -1020,7 +1019,7 @@ ifeq ($(NEED_OGG),1)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(NEED_VORBIS),1)
|
ifeq ($(USE_CODEC_VORBIS),1)
|
||||||
ifeq ($(USE_INTERNAL_VORBIS),1)
|
ifeq ($(USE_INTERNAL_VORBIS),1)
|
||||||
CLIENT_CFLAGS += -I$(VORBISDIR)/include -I$(VORBISDIR)/lib
|
CLIENT_CFLAGS += -I$(VORBISDIR)/include -I$(VORBISDIR)/lib
|
||||||
|
|
||||||
|
@ -1994,7 +1993,7 @@ Q3OBJ += \
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(NEED_VORBIS),1)
|
ifeq ($(USE_CODEC_VORBIS),1)
|
||||||
ifeq ($(USE_INTERNAL_VORBIS),1)
|
ifeq ($(USE_INTERNAL_VORBIS),1)
|
||||||
Q3OBJ += \
|
Q3OBJ += \
|
||||||
$(B)/client/vorbis/analysis.o \
|
$(B)/client/vorbis/analysis.o \
|
||||||
|
|
Loading…
Reference in a new issue