Martin Spott wrote:
Somehow your compiler identifies itself as being a BSD platform. Instead it should support the SOLARIS definition.

I think it's a different issue. Taken from current 'README':

PORTABILITY and DEPENDANCIES:
[...]
JS  -- Currently Linux/Windows/BSD only.
from the README in plib/src/js:

...and a bunch of OS-specific code:


   jsLinux.cxx
   jsLinuxOld.cxx
   jsWindows.cxx
   jsBSD.cxx
   jsMacOS.cxx

...for OS's (eg IRIX and SOLARIS) without standard joystick
functionality, we add:

   jsNone.cxx

...which safely returns error status with no buttons or axes provided.


believe me, it is the SOLARIS variable in plib/src/util/ul.h

You might want to try this path:

--- /home/erik/src/CVS/fgfs/plib/src/util/ul.h  Sat Jan  4 11:01:57 2003
+++ plib/src/util/ul.h  Thu Feb 20 13:35:45 2003
@@ -80,7 +80,7 @@

 #define UL_IRIX      1

-#elif defined(SOLARIS)
+#elif defined(SOLARIS) ||  defined (sun)

 #define UL_SOLARIS   1



Erik


_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to