diff options
author | Marck | 2011-03-23 08:35:39 +0100 |
---|---|---|
committer | Marck | 2011-03-23 08:35:39 +0100 |
commit | 9c979dd0fc468ec5b15bb9b3db2eae55db53c0bc (patch) | |
tree | 09e35fc580dbdfd0e239245f681d7d5bed1b6b96 | |
parent | Add an initial confidence-building TestAddObject() for prim counts. (diff) | |
download | opensim-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.
-rw-r--r-- | README.txt | 2 | ||||
-rw-r--r-- | bin/Mono.Data.Sqlite.dll.config | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -44,7 +44,7 @@ for more information. | |||
44 | To run OpenSim, from the unpacked distribution type: | 44 | To 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 | ||
49 | Now see the "Configuring OpenSim" section | 49 | Now 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> |