| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
correctly handled. Friends list showing correct foreign names. TODO: GrantRights.
|
|
|
|
|
| |
It appears that if the viewer requests a folder containing links, we must also send the folders that contain the link targets first.
This was tested with Kokua 0.1.0 WIP though I predict it will also work with other viewer 2s
|
|
|
|
| |
module to OpenSim.ini. EnforcePrimLimits is set to false by default to emulate the current behavior.
|
| |
|
|\ |
|
| |\ |
|
| |\ \ |
|
| |\ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
http://opensimulator.org/mantis/view.php?id=5440
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adding ssl support for "Out of Band" applications such as the remote
admin module or Robust services
|
| | | | |
| | | | |
| | | | |
| | | | | |
WebFetch cap by default).
|
| |_|_|/
|/| | |
| | | |
| | | | |
OpenSimDefaults.ini.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
using git or untarring releases under cygwin on windows
Mono doesn't care if the
|
| | | |
| | | |
| | | |
| | | | |
allowed at login and HG-login times. NOTE: additional (optional) configuration variables in [LoginService] and [GatekeeperService]. See .examples.
|
| | | |
| | | |
| | | |
| | | | |
This is to facilitate running Freeswitch in a separate ROBUST shell, as on grid setups there can be quite a lot of traffic flowing between FreeSWITCH and ROBUST. However, running in a spearate shell is not mandatory.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
used in OpenSim.ini.example
Adjusting to 8003 seems sensible since this service doesn't need to be exposed to viewers.
|
|\ \ \ \
| | |_|/
| |/| | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
limits because the only ones used now are the defaults (which are overwritten
by the client throttles anyway). Updated the default rates to correspond to
about 350kbps.
Also added a configuration to disable adaptive throttle. The default
is the previous behavior (no adaptation).
|
| | | |
|
| |/
|/| |
|
| |
| |
| |
| | |
hosters to setup regions maintaining more control over system resources.
|
|\ \ |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Thanks for the spot, Ai Austin.
|
| | | |
| | | |
| | | |
| | | | |
to config parameters. Clean up some log messages.
|
|/ / / |
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| | |
config parameters.
Default remains true.
OpenSimDefault.ini changed so if you haven't overriden this switch then you don't need to do anything.
|
| |
| |
| |
| |
| |
| |
| | |
are coalesced to inventory
This is the CoalesceMultipleObjectsToInventory setting in [Inventory] in OpenSimDefaults.ini
Default is true.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|/
|
|
| |
understandable for new users.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
version is r1755 + patches as detailed in the svn logs.
This brings it into line with the Windows and Linux libraries.
This is a universal dylib with x86_64, i386 and ppc parts. However, even on a 64 bit Intel machine Mono can only P/INVOKE the i386 version right now. ppc is untested.
The configuration used to compile was
CFLAGS="-g -O2 -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc" CXXFLAGS="-g -O2 -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc" LDFLAGS="-arch i386 -arch x86_64 -arch ppc" ./configure --enable-old-trimesh --disable-asserts --enable-shared --disable-dependency-tracking --disable-demos --without-x
--disable-demos --without-x is required to build ODE on Mac OS X
CFLAGS, CXXFLAGS and --disable-dependency-tracking are necessary to build the universal dylib (some compilation lines use CFLAGS instead of CXXFLAGS)
The other settings are tweaks for using ODE with OpenSim
|
| |
|
|
|
|
|
|
| |
main adaptor works on Mac OS X.
The SQLite legacy adapator was also not at all well maintained, even worse than the mainline sqlite adapator.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
use this instead of the system one.
This means that Mac OS X users can now use the standard sqlite adaptor instead of the legacy one.
This is SQLite 3.7.5. I configured the build with the line
CFLAGS="-Os -g -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -arch ppc7400 -DSQLITE_ENABLE_COLUMN_METADATA" LDFLAGS="-arch i386 -arch x86_64 -arch ppc7400" ./configure --disable-dependency-tracking
The SQLITE_ENABLE_COLUMN_METADATA flag exports the metadata symbols that modern Mono SQLite adaptors need.
The -Os removes debugging symbols (as per the sqlite3 source pkg README)
The other parts are to cross compile for x86_64, i386 and ppc. On Mac OS X, Mono can actually only P/INVOKE 32-bit libraries even on 64 bit platforms so i386 is being used. The dylib has not been tested on ppc.
|
|
|
|
| |
the simulators called Gatekeeper -- intended to have the URL of the grid's Gatekeeper service (so that it can be checked against). See ini.examples.
|
|
|
|
| |
Apply the same change to both the 32-bit and 64-bit DLL target paths. This makes the previous addition to the instructions in the README for running on Linux unnecessary.
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
| |
Fixes metadata issues. Tested on Linux and Windows - may fix
issues seen on OSx as well.
|
|
|
|
| |
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
|