* Updates defaults to disclude cs/vb/js from the allowed compilers by default

0.6.1-post-fixes
Teravus Ovares 2008-11-12 03:56:03 +00:00
parent c34805d573
commit 29fe003152
1 changed files with 7 additions and 2 deletions

View File

@ -635,7 +635,9 @@ DefaultCompileLanguage=lsl
; Specify what compilers are allowed to be used
; Note vb only works on Windows for now (Mono lacks VB compile support)
; Valid languages are: lsl, cs, js and vb
AllowedCompilers=lsl,cs,js,vb
; AllowedCompilers=lsl,cs,js,vb. *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
AllowedCompilers=lsl
; Compile scripts with debugging
; Probably a thousand times slower, but gives you a line number when something goes wrong.
@ -766,7 +768,10 @@ WriteScriptSourceToDebugFile = false
; Default language for scripts
DefaultCompileLanguage = lsl
; List of allowed languages (lsl,vb,js,cs)
AllowedCompilers = lsl,vb,js,cs
; AllowedCompilers=lsl,cs,js,vb.
; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
AllowedCompilers=lsl
; Compile debug info (line numbers) into the script assemblies
CompileWithDebugInformation = true
; Allow the use of os* functions (some are dangerous)