What I did to make the software work on machine1 with "ia32-libs" (20120926) is, that I had to create the following links:
mv /usr/lib/libXm.so.3 /usr/lib/libXm.so.3.off #this deactivates actual libXm.so.3 ln -s /usr/lib/libXm.so.4 /usr/lib/libXm.so.3 #create link to libXm.so.4 for 64Bit ln -s /usr/lib32/libXm.so.2 /usr32/lib/libXm.so.3 #create link to libXm.so.2 for 32Bit How can I do the equal thing on machine2 with "ia32-libs" (1:0.4) ?

