summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2015-09-14 07:56:19 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2015-09-14 07:56:19 (GMT)
commit33607e07c286555f1bae2401e75ca37a14592665 (patch)
tree7cf51411e550829caa929a23c1836c8693948f6f /src
parent3049eec544a23e13e77ea476984545c9195e3b05 (diff)
downloadmxe-33607e07c286555f1bae2401e75ca37a14592665.zip
mxe-33607e07c286555f1bae2401e75ca37a14592665.tar.gz
mxe-33607e07c286555f1bae2401e75ca37a14592665.tar.bz2
nsis: increase NSIS_MAX_STRLEN to 8192
> Currently you can't change NSIS_MAX_STRLEN without re-compiling NSIS. > This was a problem because some NSIS projects would require the special > build and some wouldn't, and sometimes we'd compile a project that > required the special build, with the normal MakeNSIS build. (from http://nsis.sourceforge.net/SetReqStrLen:_Allow_compile_w/_8192_special_build_only) See also http://nsis.sourceforge.net/Special_Builds#Large_strings
Diffstat (limited to 'src')
-rw-r--r--src/nsis.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nsis.mk b/src/nsis.mk
index 5b2c520..0ce90ca 100644
--- a/src/nsis.mk
+++ b/src/nsis.mk
@@ -24,6 +24,7 @@ define $(PKG)_BUILD
`[ -d /usr/local/include ] && echo APPEND_CPPPATH=/usr/local/include` \
`[ -d /usr/local/lib ] && echo APPEND_LIBPATH=/usr/local/lib` \
SKIPUTILS='NSIS Menu' \
+ NSIS_MAX_STRLEN=8192 \
install
$(INSTALL) -m755 '$(PREFIX)/$(TARGET)/bin/makensis' '$(PREFIX)/bin/$(TARGET)-makensis'
endef