aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMarck2011-03-23 08:35:39 +0100
committerMarck2011-03-23 08:35:39 +0100
commit9c979dd0fc468ec5b15bb9b3db2eae55db53c0bc (patch)
tree09e35fc580dbdfd0e239245f681d7d5bed1b6b96
parentAdd an initial confidence-building TestAddObject() for prim counts. (diff)
downloadopensim-SC_OLD-9c979dd0fc468ec5b15bb9b3db2eae55db53c0bc.zip
opensim-SC_OLD-9c979dd0fc468ec5b15bb9b3db2eae55db53c0bc.tar.gz
opensim-SC_OLD-9c979dd0fc468ec5b15bb9b3db2eae55db53c0bc.tar.bz2
opensim-SC_OLD-9c979dd0fc468ec5b15bb9b3db2eae55db53c0bc.tar.xz
Fix a typo in the SQLite DLL config and amend the instructions for running on Linux.
Under Linux (and probably also under OSX), the operating system must be able to find the new SQLite DLL in the library search path.
Diffstat (limited to '')
-rw-r--r--README.txt2
-rw-r--r--bin/Mono.Data.Sqlite.dll.config2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.txt b/README.txt
index 391a659..8d925b5 100644
--- a/README.txt
+++ b/README.txt
@@ -44,7 +44,7 @@ for more information.
44To run OpenSim, from the unpacked distribution type: 44To run OpenSim, from the unpacked distribution type:
45 45
46 * cd bin 46 * cd bin
47 * mono OpenSim.exe 47 * LD_LIBRARY_PATH=. mono OpenSim.exe
48 48
49Now see the "Configuring OpenSim" section 49Now see the "Configuring OpenSim" section
50 50
diff --git a/bin/Mono.Data.Sqlite.dll.config b/bin/Mono.Data.Sqlite.dll.config
index de0c17d..0c5e941 100644
--- a/bin/Mono.Data.Sqlite.dll.config
+++ b/bin/Mono.Data.Sqlite.dll.config
@@ -1,4 +1,4 @@
1<configureation> 1<configuration>
2 <dllmap os="!windows,osx" cpu="x86-64,ia64" wordsize="64" dll="sqlite3" target="libsqlite3_64.so" /> 2 <dllmap os="!windows,osx" cpu="x86-64,ia64" wordsize="64" dll="sqlite3" target="libsqlite3_64.so" />
3 <dllmap os="!windows,osx" cpu="x86" wordsize="32" dll="sqlite3" target="libsqlite3_32.so" /> 3 <dllmap os="!windows,osx" cpu="x86" wordsize="32" dll="sqlite3" target="libsqlite3_32.so" />
4</configuration> 4</configuration>