[Mono-list] SRPMS?

Gregory Hayes Gregory Hayes <syncomm@gmail.com>
Tue, 10 May 2005 02:26:33 -0400


I am a FC4-test user and I have problems installing the gtk-sharp rpms
available from the mono-project site.
(gtk-sharp-1.0.9-0.fedora3.novell.i386.rpm) The error I receive is:

error: Failed dependencies:
        libgtkhtml-3.1.so.11 is needed by gtk-sharp-1.0.9-0.fedora3.novell.=
i386

I have gtkhtml3-3.6.2-1 (libgtkhtml-3.6.so.18.0.2) installed and I
figured the best way would be to install from an srpm of the same
package... but I can't find any :( If anyone knows where to get the
SRPM for the gtk-sharp/gtk-sharp2 releases let me know

BTW - Is there a reason you link against that version specifically?

Thanks!

Greg
=3D

On 5/9/05, Robert Jordan <robertj@gmx.net> wrote:
> Vincent,
>=20
> > I am trying to make work a mono app under Windows and I am having a har=
d
> > time with an external process execution that doesn't give the hand back=
:
> >   System.Diagnostics.Process proc =3D new System.Diagnostics.Process();
> >   proc.StartInfo.FileName =3D "C:\\WINNT\\system32\\rsh.exe";
> >   proc.StartInfo.Arguments =3D "machine -l mylogin \"./myscript\"";
> >   proc.StartInfo.UseShellExecute =3D false;
> >   proc.StartInfo.RedirectStandardOutput =3D true;
> >   proc.Start();
> >   proc.WaitForExit();
> >   string output =3D proc.StandardOutput.ReadToEnd();
> >   Console.WriteLine(output);
> >   Console.WriteLine("End of script");
> >
> > I never can read the "End of script" line. What am I doing bad ?
>=20
> I bet the problem is not related to Mono. It's the braindead rsh.exe.
> You may try to use its "-n" switch, like here:
>=20
> proc.StartInfo.Arguments =3D "machine -l mylogin -n \"./myscript\"";
>=20
> Rob
>=20
> _______________________________________________
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>