diff options
author | Tedd Hansen | 2008-02-02 05:03:28 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-02 05:03:28 +0000 |
commit | a004ea5f1772e6e36efae29980f2d95a9efeb851 (patch) | |
tree | 59ea076e5eaafbaf594d7eabbfce169062328146 /OpenSim/Region | |
parent | Note to self: Next time read debug-files on correct computer. It makes bughun... (diff) | |
download | opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.zip opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.tar.gz opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.tar.bz2 opensim-SC_OLD-a004ea5f1772e6e36efae29980f2d95a9efeb851.tar.xz |
Almost forgot to check in:
OpenSim.32BitLaunch.exe is a 32-bit application that loads OpenSim.exe using .Net framework, hence it is JIT-compiled to 32-bit.
Use this app to start OpenSim on 64-bit systems (works great on Vista 64 :))
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs index bbb380e..ded0fcc 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |||
@@ -273,7 +273,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
273 | case enumCompileType.vb: | 273 | case enumCompileType.vb: |
274 | compileScript = String.Empty + | 274 | compileScript = String.Empty + |
275 | "Imports OpenSim.Region.ScriptEngine.Common: Imports System.Collections.Generic: " + | 275 | "Imports OpenSim.Region.ScriptEngine.Common: Imports System.Collections.Generic: " + |
276 | String.Empty + "NameSpace SecondLife { " + | 276 | String.Empty + "NameSpace SecondLife:" + |
277 | String.Empty + "Public Class Script: Inherits OpenSim.Region.ScriptEngine.Common.LSL_BaseClass: " + | 277 | String.Empty + "Public Class Script: Inherits OpenSim.Region.ScriptEngine.Common.LSL_BaseClass: " + |
278 | @"Public Sub New(): End Sub: " + | 278 | @"Public Sub New(): End Sub: " + |
279 | compileScript + | 279 | compileScript + |