Changes between Initial Version and Version 3 of Ticket #8670


Ignore:
Timestamp:
Mar 24, 2016, 3:48:17 PM (9 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8670

    • Property Status changed from new to closed
    • Property Resolution changed from to fixed
    • Property Port inventor added
  • Ticket #8670 – Description

    initial v3  
    22
    33Descritption: Inventor-2.1.5-10 doesn't work on Intel Macs because of endian issues.  The symptoms are
    4 (1) ivman fails at .../doc/man/man3/ivm/draggers/
    5 (2) Binaries that use SoInput, e.g, SceneViewer seg-faults.
     41. ivman fails at .../doc/man/man3/ivm/draggers/
     52. Binaries that use SoInput, e.g, SceneViewer seg-faults.
    66
    77The solution is to patch .../lib/database/include/machine.h.  The diff is as follows
    88
    9 --- machine.h   2006-04-30 14:27:27.000000000 -0400+++ machine.h.new       2006-04-30 14:30:20.000000000 -0400
     9{{{
     10--- machine.h   2006-04-30 14:27:27.000000000 -0400
     11+++ machine.h.new       2006-04-30 14:30:20.000000000 -0400
    1012@@ -156,9 +156,15 @@
    1113  */
     
    3941 #define DGL_NTOH_FLOAT(t,f) mem_ntoh_float(&t,&f)
    4042 #define DGL_HTON_DOUBLE(t,f) mem_hton_double(&t,&f)
     43}}}