[MonoDevelop] Monodevelop Hangs

monodevelop-list.1.tracyanne at spamgourmet.com monodevelop-list.1.tracyanne at spamgourmet.com
Mon Jul 30 23:51:18 EDT 2007


> Date: Sun, 29 Jul 2007 14:38:32 +0200
> From: "Ben Motmans" <ben.motmans at gmail.com>
> Subject: Re: [MonoDevelop] Monodevelop Hangs
> To: valentin.sawadski at gmx.de
> Cc: monodevelop-list.1.tracyanne at spamgourmet.com,
> 	monodevelop-list at lists.ximian.com
> Message-ID:
> 	<3a2f69f90707290538k4ecb9e40k404346e395a0bfc0 at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
> 
> it is also possible that libgtkembedmoz.so is installed, but monodevelop
> just can't find it


the MonoDevelop shel script contains the following

if test -n "$MOZILLA_FIVE_HOME"; then
	MOZILLA_HOME=$MOZILLA_FIVE_HOME
elif [ -f /usr/lib64/firefox-2.0.0.3/chrome/comm.jar ]; then
        MOZILLA_HOME=/usr/lib64/firefox-2.0.0.3
elif [ -f /usr/lib/firefox-2.0.0.3/chrome/comm.jar ]; then
        MOZILLA_HOME=/usr/lib/firefox-2.0.0.3
elif [ -f /usr/lib64/mozilla-firefox-2.0.0.3/chrome/comm.jar ]; then
        MOZILLA_HOME=/usr/lib64/mozilla-firefox-2.0.0.3
elif [ -f /usr/lib/mozilla-firefox-2.0.0.3/chrome/comm.jar ]; then
        MOZILLA_HOME=/usr/lib/mozilla-firefox-2.0.0.3
elif grep GRE_PATH /etc/gre.d/*.conf > /dev/null ; then
	MOZILLA_HOME=$(grep -h GRE_PATH= /etc/gre.d/*.conf | cut -d '"' -f 2 -d
= | head -n 1)
elif [ $(which mozilla 2>/dev/null) ] && grep MOZILLA_FIVE_HOME=
"$(which mozilla)" > /dev/null ; then
	MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which mozilla) | cut -d '"' -f
2 | cut -d '=' -f 2 )
elif [ $(which firefox 2>/dev/null) ] && grep MOZILLA_FIVE_HOME=
"$(which firefox)" > /dev/null ; then
	MOZILLA_HOME=$(grep MOZILLA_FIVE_HOME= $(which firefox) | cut -d '"' -f
2 | cut -d '=' -f 2 )
elif [ $(which firefox 2>/dev/null) ] && grep MOZILLA_LIBDIR= "$(which
firefox)" > /dev/null ; then
	MOZILLA_HOME=$(grep MOZILLA_LIBDIR= $(which firefox) | cut -d '"' -f 2
| cut -d '=' -f 2)
else
	echo "Cannot find mozilla installation directory. Please set
MOZILLA_FIVE_HOME to your mozilla directory"
	exit 1
fi

which would seem to be correct. and this being
Mandriva  /usr/lib/mozilla-firefox-2.0.0.3 is a valid directory
containing libgtkembedmoz.so and all the rest of the binaries needed to
run firefox version 2.0.0.3 (I can't remove it without also uninstalling
Monodevelop, and I can install Monodevelop without also installing
mozilla-firefox-2.0.0.3 to the eponymous directory.)

regards

Tracy


More information about the Monodevelop-list mailing list