as the buildbot is updated now:

using the /SOLID switch in SetCompressor again, making NSIS at least 2.07 a requirement

svn path=/trunk/; revision=15052
This commit is contained in:
Ulf Lamping 2005-07-25 07:42:06 +00:00
parent 4d6daa907c
commit 10f6e3ba94
1 changed files with 6 additions and 5 deletions

View File

@ -5,11 +5,12 @@
!ifdef MAKENSIS_MODERN_UI !ifdef MAKENSIS_MODERN_UI
; Set the compression mechanism first ; Set the compression mechanism first.
SetCompressor lzma ; As of NSIS 2.07, solid compression which makes installer about 1MB smaller
; as of NSIS 2.07, solid compression is no longer default, so set the /SOLID switch (saves ~1MB), ; is no longer the default, so use the /SOLID switch.
; which unfortunately creates an error with NSIS prior 2.07 ; This unfortunately is unknown to NSIS prior to 2.07 and creates an error.
;SetCompressor /SOLID lzma ; So if you get an error here, please update to at least NSIS 2.07!
SetCompressor /SOLID lzma
!endif !endif
!ifdef GTK1_DIR & GTK2_DIR !ifdef GTK1_DIR & GTK2_DIR