Starting with SUSE 10.1 there’s no longer an old Mozilla Browser package included I’ve always used for the internal browser configuration of Eclipse and MyEclipse.
Searching the web for hints round about this topic I found some suggestions about the requirements of a successfull Firefox integration. First of all, Firefox needs to be linked dynamically. Additionally, Eclipse should be able to find the library libgtkembedmoz.so. Using the 64bit variant of the distribution this small Script works for me:
#!/bin/sh
export MOZILLA_FIVE_HOME=/usr/lib64/xulrunner-1.8.0.1
~/Eclipse/3.2/eclipse/eclipse -vm ~/Java/jdk64/bin/java -vmargs -Xms512m -Xmx1024m -XX:PermSize=64m -XX:MaxPermSize=192m
The library is included in the mozilla-xulrunner package.
Pingus