You are not logged in.
Pages: 1
I'm having lots of troubles compiling SVN code for gtwitter and the AUR package is just too outdated.
Does anyone have any package for it?
Offline
Sorry for the late reply..
While it has many problems, the version in SVN trunk[as of 08-03-30] is compilable, but the author[s] are now using monodevelop. Below is the command line I use to compile the latest version in svn.. beware.. it's ugly.
mcs -out:gtwitter.exe Main.cs LibSexy/*.cs gTwitter.Core/*.cs gTwitter.UI/*.cs gTwitter.UI.Composite/*.cs gtk-gui/*.cs -resource:./gtk-gui/gui.stetic -r:/usr/lib/mono/gtk-sharp-2.0/gconf-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/mono/1.0/Mono.Cairo.dll -r:/usr/lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:Mono.Posix -r:System.Web -resource:../data/gtwitter-22.png -resource:../data/gtwitter-48.png -resource:../data/gtwitter-64.png
I do this from the gtwitter directory[the one with Main.cs]. I then just use "mono gtwitter.exe" to run it.
There are several annoyances with the SVN version, but hopefully they will be fixed...eventually. If I find time, I may fix the things that annoy me the most, and offer up a patch+pkgbuild to build against r104
chad
Last edited by dwi (2008-03-30 05:28:09)
Offline
Done it inside the directory you said... Just got 4 errors...
error CS2001: Source file `LibSexy/*.cs' could not be found
error CS2001: Source file `gTwitter.Core/*.cs' could not be found
error CS2001: Source file `gTwitter.UI/*.cs' could not be found
error CS2001: Source file `gTwitter.UI.Composite/*.cs' could not be found
Offline
Are you using the one from SVN? or 1.0beta?
svn checkout http://gtwitter.googlecode.com/svn/trunk gtwitter-svn
cd gtwitter-svn/gtwitter
mcs -out:gtwitter.exe Main.cs LibSexy/*.cs gTwitter.Core/*.cs gTwitter.UI/*.cs gTwitter.UI.Composite/*.cs gtk-gui/*.cs -resource:./gtk-gui/gui.stetic -r:/usr/lib/mono/gtk-sharp-2.0/gconf-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/mono/1.0/Mono.Cairo.dll -r:/usr/lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:Mono.Posix -r:System.Web -resource:../data/gtwitter-22.png -resource:../data/gtwitter-48.png -resource:../data/gtwitter-64.png
It should generate 3 warnings, but it will compile.
chad
Last edited by dwi (2008-03-30 07:46:56)
Offline
Works for me. Thanks much! I've missed this app.
Offline
Pages: 1