mirror of
https://github.com/ioquake/ioq3.git
synced 2025-02-22 19:41:32 +00:00
nsis: Remove Speex library
The game doesn't support it anymore.
This commit is contained in:
parent
e452b7ac04
commit
efd55cab9d
2 changed files with 0 additions and 12 deletions
|
@ -22,9 +22,6 @@ endif
|
||||||
ifndef USE_CURL_DLOPEN
|
ifndef USE_CURL_DLOPEN
|
||||||
USE_CURL_DLOPEN=0
|
USE_CURL_DLOPEN=0
|
||||||
endif
|
endif
|
||||||
ifndef USE_INTERNAL_SPEEX
|
|
||||||
USE_INTERNAL_SPEEX=1
|
|
||||||
endif
|
|
||||||
ifndef USE_INTERNAL_ZLIB
|
ifndef USE_INTERNAL_ZLIB
|
||||||
USE_INTERNAL_ZLIB=1
|
USE_INTERNAL_ZLIB=1
|
||||||
endif
|
endif
|
||||||
|
@ -56,9 +53,6 @@ endif
|
||||||
ifeq ($(USE_CURL_DLOPEN),1)
|
ifeq ($(USE_CURL_DLOPEN),1)
|
||||||
DEFINES+= -DUSE_CURL_DLOPEN
|
DEFINES+= -DUSE_CURL_DLOPEN
|
||||||
endif
|
endif
|
||||||
ifeq ($(USE_INTERNAL_SPEEX),1)
|
|
||||||
DEFINES+= -DUSE_INTERNAL_SPEEX
|
|
||||||
endif
|
|
||||||
ifeq ($(USE_INTERNAL_ZLIB),1)
|
ifeq ($(USE_INTERNAL_ZLIB),1)
|
||||||
DEFINES+= -DUSE_INTERNAL_ZLIB
|
DEFINES+= -DUSE_INTERNAL_ZLIB
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -78,9 +78,6 @@ Section "ioquake3 (required)" ioquake3
|
||||||
; Set output path to the installation directory.
|
; Set output path to the installation directory.
|
||||||
SetOutPath $INSTDIR
|
SetOutPath $INSTDIR
|
||||||
|
|
||||||
!ifndef USE_INTERNAL_SPEEX
|
|
||||||
File "libspeex.dll"
|
|
||||||
!endif
|
|
||||||
!ifndef USE_INTERNAL_ZLIB
|
!ifndef USE_INTERNAL_ZLIB
|
||||||
File "zlib1.dll"
|
File "zlib1.dll"
|
||||||
!endif
|
!endif
|
||||||
|
@ -200,9 +197,6 @@ Section "Uninstall"
|
||||||
Delete $INSTDIR\id-readme.txt
|
Delete $INSTDIR\id-readme.txt
|
||||||
Delete $INSTDIR\voip-readme.txt
|
Delete $INSTDIR\voip-readme.txt
|
||||||
|
|
||||||
!ifndef USE_INTERNAL_SPEEX
|
|
||||||
Delete $INSTDIR\libspeex.dll
|
|
||||||
!endif
|
|
||||||
!ifndef USE_INTERNAL_ZLIB
|
!ifndef USE_INTERNAL_ZLIB
|
||||||
Delete $INSTDIR\zlib1.dll
|
Delete $INSTDIR\zlib1.dll
|
||||||
!endif
|
!endif
|
||||||
|
|
Loading…
Reference in a new issue