Modified files reflect small changes to work with Sun OS port....

Removed redundant README file in osgviews... was a copy of sgv/README.
This commit is contained in:
Don BURNS
2002-03-21 07:50:14 +00:00
parent 9836af1055
commit 3816a4fcfc
6 changed files with 13 additions and 34 deletions

View File

@@ -19,8 +19,10 @@
# include <sys/sockio.h>
#elif defined(__sgi)
# include <net/soioctl.h>
#elif defined(__CYGWIN__)
#elif defined(__CYGWIN__)
// nothing needed
#elif defined(__sun)
# include <sys/sockio.h>
#else
# error Teach me how to build on this system
#endif
@@ -64,8 +66,10 @@ bool Broadcaster::init( void )
{
struct ifreq ifr;
setsockopt( _so, SOL_SOCKET, SO_BROADCAST, &on, sizeof(on));
#ifdef __linux
#if defined (__linux)
strcpy( ifr.ifr_name, "eth0" );
#elif defined(__sun)
strcpy( ifr.ifr_name, "hme0" );
#else
strcpy( ifr.ifr_name, "ef0" );
#endif

View File

@@ -1,26 +0,0 @@
Note: Using sgv with Peformer (for IRIX and Linux users only)
=============================================================
If you find problems with loading .pfb files its likely that its due to undefined
symbols. This isn't a problem with the OSG implementation, but alas the only
current solution is to directly link you app with the Performer libraries. The
Makefile contains two library list. In Makefile you'll see something like :
#note, use this library list when using the Performer osgPlugin.
#LIBS = ${PFLIBS} -losgGLUT -losgDB -losg -lGLU -lGL -lm -lXmu -lX11 -lXi
#note, standard library list.
LIBS = -losgGLUT -losgDB -losg -lGLU -lGL -lm -lXmu -lX11 -lXi
Simple comment in the LIBS line with PFLIBS and comment out the standard LIBS,
then :
make clean
make
Hopefully the Performer distribution will eventually work as a dynamic plugin
but until that day we're stuck with this 'hack'...
Robert Osfield,
March 20001.