Re: [Mono-list] Debian support

2009-04-01 Thread Mike Christensen
- From: ima...@comcast.net To: Daniel Soto daniel.sot...@gmail.com Cc: mono-list@lists.ximian.com, FlappySocks stu...@diyefi.co.uk Sent: Tuesday, March 31, 2009 4:01:00 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Yup, here's what I did: apt-get install gettext cd

Re: [Mono-list] Debian support

2009-03-31 Thread FlappySocks
I have just compiled mono 2.4 on Ubuntu, with no problems. Fantastic. Well done mono. -- View this message in context: http://www.nabble.com/Debian-support-tp22659654p22802257.html Sent from the Mono - General mailing list archive at Nabble.com. ___

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
El mar, 31-03-2009 a las 03:20 -0700, FlappySocks escribió: I have just compiled mono 2.4 on Ubuntu, with no problems. Fantastic. Well done mono. Yeah. Although there not is official packages for Debian and Ubuntu, compiling Mono from sources in Debian/Ubuntu isn't hard. Only Monodevelop is a

Re: [Mono-list] Debian support

2009-03-31 Thread Chris Howie
On Sun, Mar 29, 2009 at 3:43 PM, Jorge Bastos mysql.jo...@decimal.pt wrote: That depends. Which Debian is it using? On SID it has the latest. No, it does not. -- Chris Howie http://www.chrishowie.com http://en.wikipedia.org/wiki/User:Crazycomputers

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
Is there a step by step on how to do this on a fresh Ubuntu install? It took me forever to figure out all the packages I needed to install first, and now I just get Error 2 when I make. Sigh.. FlappySocks wrote: I have just compiled mono 2.4 on Ubuntu, with no problems. Fantastic. Well

Re: [Mono-list] Debian support

2009-03-31 Thread Casper Bang
I'm with Mike on that one. Would love to see a detailed howto, having had some earlier mishaps trying to build on Ubuntu in the past. /Casper 2009/3/31 Mike Christensen ima...@comcast.net Is there a step by step on how to do this on a fresh Ubuntu install? It took me forever to figure out

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
I can describe a summary of how I get Mono 2.4 from sources, it's not difficult. I assume using Ubuntu Intrepid Ibex (my system have it installed) Requirements: build-essential Bison installed (apt-get install bison) libgdiplus-2.4 installed (I got it from mono sources also, then ./configure

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
Just to clarify a few points: 1) Are you downloading Mono tar files or using svn to checkout the source? Does it really matter? 2) libgdiplus was giving me the most problems. Can I install it using apt-get install or do I have to build from sources? You're saying this already comes with

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
2009/3/31 Mike Christensen ima...@comcast.net: Just to clarify a few points: 1) Are you downloading Mono tar files or using svn to checkout the source? Does it really matter? I'm downloading Mono tar files. Get it from http://ftp.novell.com/pub/mono/sources-stable/ 2) libgdiplus was giving

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
Hi - After decompressing the libgdiplus-2.4.tar file and running ./configure I get the error: configure: error: no acceptable C compiler found in $PATH Daniel Soto wrote: I can describe a summary of how I get Mono 2.4 from sources, it's not difficult. I assume using Ubuntu Intrepid Ibex (my

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
Have you installed build-essential? sudo apt-get install build-essential I get the same error. 2009/3/31 Mike Christensen ima...@comcast.net: Hi - After decompressing the libgdiplus-2.4.tar file and running ./configure I get the error: configure: error: no acceptable C compiler found in

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
Ok here's my Total friggen moron's guide to installing Mono 2.4 on Ubuntu Server so far: -) Logon to machine -) At bash prompt, type: sudo bash -) Enter password, you should now be root. -) Type: apt-get install gcc (this will install C compilers) -) Type: apt-get install pkg-config (this is a

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
I remember that to install glib-2.0, I installed libglib-2.0-dev package. Install it using Synaptic, it's the better way to search it (I not remember the exact name of these package). Let me know if you have luck. 2009/3/31 Mike Christensen ima...@comcast.net: Ok here's my Total friggen moron's

Re: [Mono-list] Debian support

2009-03-31 Thread Abe Gillespie
When compiling something from source the dependency libs AND their dev counterparts must be installed. For instance: apt-get install foolib apt-get install foolib-dev -Abe 2009/3/31 Mike Christensen ima...@comcast.net: Ok here's my Total friggen moron's guide to installing Mono 2.4 on Ubuntu

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
A general rule if you get some error related to a missing library when you building, it's to install a package with name [package_name]-dev, pay attention to the -dev suffix. 2009/3/31 Daniel Soto daniel.sot...@gmail.com: I remember that to install glib-2.0, I installed libglib-2.0-dev package.

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
I've tried: apt-get install libglib-2.0-dev and get: E: Couldn't find package libglib-2.0-dev Is version 2.0 obsolete now? How do I do a wildcard search for packages to install with the word glib in them? Mike Daniel Soto wrote: A general rule if you get some error related to a missing

Re: [Mono-list] Debian support

2009-03-31 Thread Robert Bielik
Mike Christensen skrev: I've tried: apt-get install libglib-2.0-dev and get: E: Couldn't find package libglib-2.0-dev Is version 2.0 obsolete now? How do I do a wildcard search for packages to install with the word glib in them? sudo apt-cache search glib /R

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
I recommend to you search for glib using Synaptic. I not remember the name of these package and his exact name. The name is not glib-2.0 exactly, I believe (if my memory does not fail :-) ) that it is libglib-2.0-dev. The most problems related to missing libraries when building, are solved

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
I get: r...@mono24:~# apt-get install libglib-2.0-dev Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package libglib-2.0-dev If I do: apt-cache pkgnames glib I get: r...@mono24:~# apt-cache pkgnames glib glibc-pic glib-java

Re: [Mono-list] Debian support

2009-03-31 Thread Andreas Färber
Hi, Am 31.03.2009 um 21:35 schrieb Mike Christensen: I get: r...@mono24:~# apt-get install libglib-2.0-dev Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package libglib-2.0-dev If I do: apt-cache pkgnames glib I get: r...@mono24:~#

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
By the way... which distribution are you using? Ubuntu? or some flavour of Debian? 2009/3/31 Andreas Färber andreas.faer...@web.de: Hi, Am 31.03.2009 um 21:35 schrieb Mike Christensen: I get: r...@mono24:~# apt-get install libglib-2.0-dev Reading package lists... Done Building

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
/Canada Pacific Subject: Re: [Mono-list] Debian support No. Try apt-cache search glib-2.0 Daniel Soto wrote: I recommend to you search for glib using Synaptic. I not remember the name of these package and his exact name. The name is not glib-2.0 exactly, I believe (if my memory does

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
...@gmail.com To: ima...@comcast.net Cc: mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 1:35:12 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support 2009/3/31  ima...@comcast.net: Nope, no results :( He meant glib2.0.  You may not be using network repositories

Re: [Mono-list] Debian support

2009-03-31 Thread Chris Howie
2009/3/31 ima...@comcast.net: Nope, no results :( He meant glib2.0. You may not be using network repositories. Check your /etc/apt/sources.list -- Chris Howie http://www.chrishowie.com http://en.wikipedia.org/wiki/User:Crazycomputers ___ Mono-list

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
...@comcast.net To: Chris Howie cdho...@gmail.com Cc: mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 1:41:02 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support This works: apt-get install libglib2.0-0 libglib2.0-dev Now I'm getting the following error

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
- From: ima...@comcast.net To: Chris Howie cdho...@gmail.com Cc: mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 1:41:02 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support This works: apt-get install libglib2.0-0 libglib2.0-dev Now I'm getting

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
. - Original Message - From: Chris Howie cdho...@gmail.com To: ima...@comcast.net Cc: mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 1:35:12 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support 2009/3/31  ima...@comcast.net: Nope, no results :( He meant glib2.0.  You

Re: [Mono-list] Debian support

2009-03-31 Thread Andreas Färber
Ubuntu is derived from Debian and uses the same package names. http://packages.ubuntu.com/intrepid/libglib2.0-dev Andreas Am 31.03.2009 um 22:02 schrieb Mike Christensen: Ubuntu 8.10 Server i386. I guess they no longer have libglib2.0-dev available through Synaptic. Can someone provide

Re: [Mono-list] Debian support

2009-03-31 Thread Chris Howie
2009/3/31 Andreas Färber andreas.faer...@web.de: Ubuntu is derived from Debian and uses the same package names. Not in every case. -- Chris Howie http://www.chrishowie.com http://en.wikipedia.org/wiki/User:Crazycomputers ___ Mono-list maillist -

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
step g Mike - Original Message - From: Daniel Soto daniel.sot...@gmail.com To: ima...@comcast.net Cc: Chris Howie cdho...@gmail.com, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 1:51:39 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support It's

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
/Canada Pacific Subject: Re: [Mono-list] Debian support Yes, the try and error method is perfectly applied to this case (I don't know if method name is well in english :-)  ) I also did in that way. Surely, when you build Mono also you will get similar errors. Be ready :-) 2009/3/31  ima

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
...@gmail.com, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 2:07:59 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Yes, the try and error method is perfectly applied to this case (I don't know if method name is well in english :-)  ) I also did in that way

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
.. Mike - Original Message - From: Daniel Soto daniel.sot...@gmail.com To: ima...@comcast.net Cc: Chris Howie cdho...@gmail.com, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 2:27:31 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Yeah, in my

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
...@gmail.com To: Mike Christensen ima...@comcast.net Cc: FlappySocks stu...@diyefi.co.uk, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 11:28:50 AM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support I can describe a summary of how I get Mono 2.4 from sources, it's

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
packages too? - Original Message - From: Daniel Soto daniel.sot...@gmail.com To: Mike Christensen ima...@comcast.net Cc: FlappySocks stu...@diyefi.co.uk, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 11:28:50 AM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
That was it, thanks! - Original Message - From: Daniel Soto daniel.sot...@gmail.com To: ima...@comcast.net Cc: FlappySocks stu...@diyefi.co.uk, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 3:27:56 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
:56 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Did you installed apache2-threaded-dev? 2009/3/31  ima...@comcast.net: Hi.  When running ./configure for mod-mono-2.4 I get: checking whether mod_mono should remove the DISPLAY variable from environment

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
...@gmail.com To: ima...@comcast.net Cc: FlappySocks stu...@diyefi.co.uk, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 3:27:56 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Did you installed apache2-threaded-dev? 2009/3/31  ima...@comcast.net: Hi.  When running

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
...@comcast.net Cc: FlappySocks stu...@diyefi.co.uk, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 3:27:56 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Did you installed apache2-threaded-dev? 2009/3/31  ima...@comcast.net: Hi.  When running ./configure

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
...@gmail.com To: ima...@comcast.net Cc: FlappySocks stu...@diyefi.co.uk, mono-list@lists.ximian.com Sent: Tuesday, March 31, 2009 3:43:35 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Did you built mono 2.4 successfully? Mono 2.4 is required before to install mod_mono. 2009

Re: [Mono-list] Debian support

2009-03-31 Thread imaudi
/Canada Pacific Subject: Re: [Mono-list] Debian support Yup, here's what I did: apt-get install gettext cd .. wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.4.tar.bz2 tar -xpjf mono-2.4.tar.bz2 cd mono-2.4/ ./configure --prefix=/usr/local make make install cd .. This worked

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
, March 31, 2009 4:01:00 PM GMT -08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Yup, here's what I did: apt-get install gettext cd .. wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.4.tar.bz2 tar -xpjf mono-2.4.tar.bz2 cd mono-2.4/ ./configure --prefix=/usr

Re: [Mono-list] Debian support

2009-03-31 Thread Mike Christensen
-08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Yup, here's what I did: apt-get install gettext cd .. wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.4.tar.bz2 tar -xpjf mono-2.4.tar.bz2 cd mono-2.4/ ./configure --prefix=/usr/local make make install cd

Re: [Mono-list] Debian support

2009-03-31 Thread Daniel Soto
-08:00 US/Canada Pacific Subject: Re: [Mono-list] Debian support Yup, here's what I did: apt-get install gettext cd .. wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.4.tar.bz2 tar -xpjf mono-2.4.tar.bz2 cd mono-2.4/ ./configure --prefix=/usr

[Mono-list] Debian support

2009-03-29 Thread FlappySocks
My hosting provider dont support OpenSuSE; just Debian and Redhat. I'm happy to use Debian, but mono support seems to be somewhat behind. 2.4 is just around the corner, and Debian is still on 2.01. Whats the status of Debian and Mono? My experience of getting Mono 2.2 on Unbuntu is not a

Re: [Mono-list] Debian support

2009-03-29 Thread Jorge Bastos
To: mono-list@lists.ximian.com Subject: [Mono-list] Debian support My hosting provider dont support OpenSuSE; just Debian and Redhat. I'm happy to use Debian, but mono support seems to be somewhat behind. 2.4 is just around the corner, and Debian is still on 2.01. Whats the status

Re: [Mono-list] Debian support

2009-03-29 Thread Paul
Hi, I'm happy to use Debian, but mono support seems to be somewhat behind. 2.4 is just around the corner, and Debian is still on 2.01. Whats the status of Debian and Mono? My experience of getting Mono 2.2 on Unbuntu is not a happy one. Or is Redhat a better choice? F10 will soon have