| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | |
| | |
| | |
| | |
| | |
| | | |
implement the display names functionality as such, but it allows scripts
that are display name aware to function as if the display name were implemented
and set to the avatar name.
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | | |
branch now exists.
|
| | |
| | |
| | |
| | | |
populating the local id scene object index instead of each part's local id
|
| | |
| | |
| | |
| | |
| | | |
This updates prim counts correctly if an object is moved by something other than an avatar (e.g. scripts, region modules)
Create TestMoveOwnerObject() regression test for this case.
|
| | |
| | |
| | |
| | | |
For test code, take a part name prefix when creating objects, so that these can be more easily identified in the logs
|
| | |
| | |
| | |
| | | |
Also changes prim count tests to use the correct upper region bounds, though the method actually ignores the overage.
|
| | |
| | |
| | |
| | | |
with the fact that it's one word rather than two.
|
| | |
| | |
| | |
| | | |
object tab
|
| | |
| | |
| | |
| | |
| | | |
However, the calls to the land management module to record prims need to remain, since they were also being used to return owner object lists, etc.
This is probably why prim counts were being done there in the first place.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
counts.
This fixes the total prim count that the viewer displays when prims are selected - it appears to ignore the total that we pass it and adds up the counts separately.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
synchronously.
Handling these synchronously kills the inbound packet loop if many requests are made for remote land and those requests are handled slowly or timeout (timeout is 10s)
This can happen if a user searches for "land for sale" and then clicks many of the parcels in the list (or just presses down arrow to move through every entry).
|
| | |
| | |
| | |
| | | |
IEstateDataStore.GetEstatesByOwner(UUID)
|
|\ \ \ |
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
changes to all the estates that the user owns).
This applies to adding/removing estate users, groups, managers and bans.
This is the application of the AllEstates_0.5.patch from http://opensimulator.org/mantis/view.php?id=5420
Thanks very much, Snoopy!
|
|/ /
| |
| |
| | |
Thanks MisterBlue...
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
WARNING!!!!!
You can TAKE them, but you can't REZ them again. Only the first of the contained
objects will rez, the rest is inaccessible until rezzing them is implemented.
Also, rotations are not explicitly stored. This MAY work. Or not.
|
| | |
|
| |
| |
| |
| |
| |
| | |
earlier on.
Most of these are where the region modules are telling us they are disabled. Convention is only to log when enabled (even that is really noisy)
|
| |
| |
| |
| | |
if a prim should be added to the group count
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
the group count when they are also not group owned.
Also adds simple test for others owned count when an object is added
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
default instead of None
|
| |
| |
| |
| | |
yes instead of no.
|
| |
| |
| |
| |
| |
| | |
match that given for InternalAddress in the config (e.g. 0.0.0.0)
Can't obtain actually bound address until the UDP socket is used for the first time.
|
| |
| |
| |
| | |
This appears to be the more probable explanation for some failures seen. Either we're counting attachments which are temporarily out of bounds (shouldn't be due to the IsAttachment) check or we're counting scene objects which have out of bounds co-ordinates (seems more likely)
|
| |
| |
| |
| | |
I was mistaken - some previous opensim versions don't save this file first. Will have to bump iar version number and only check iars after the bump
|
| |
| |
| |
| | |
RegionInfo.InternalEndPoint.Port
|
| |
| |
| |
| | |
land objects for co-ordinates outside the region
|
| | |
|
| | |
|
| |
| |
| |
| | |
This is done by tainting the counts where appropriate
|
| |
| |
| |
| | |
This does not currently count objects that are sat upon (which the viewer ui implies should be included in this count)
|
|\ \ |
|
| | | |
|