I am trying to install svn version of geany on ubuntu 9.04. When I try to run ./autogen.sh I get
**Error**: You must have `glib' installed. You can get it from: ftp://ftp.gtk.org/pub/gtk
So I install:
root@gruszczy-laptop:~/packages/geany# apt-get install glibc-source Czytanie list pakietów... Gotowe Budowanie drzewa zależności Odczyt informacji o stanie... Gotowe glibc-source jest już w najnowszej wersji.
but it says, that it is already installed in the newest version. I can use 0.16 from repo, but I prefer using svn version to test geany (that's the least I can do for my favourite editor ;-)). Could you help me on installing it?
Filip Gruszczyński wrote:
I am trying to install svn version of geany on ubuntu 9.04. When I try to run ./autogen.sh I get
**Error**: You must have `glib' installed. You can get it from: ftp://ftp.gtk.org/pub/gtk
So I install:
root@gruszczy-laptop:~/packages/geany# apt-get install glibc-source Czytanie list pakietów... Gotowe Budowanie drzewa zależności Odczyt informacji o stanie... Gotowe glibc-source jest już w najnowszej wersji.
but it says, that it is already installed in the newest version. I can use 0.16 from repo, but I prefer using svn version to test geany (that's the least I can do for my favourite editor ;-)). Could you help me on installing it?
Dear Filip,
You should install the build-essential package, it includes glibc.
Regards,
Daniel
Thanks a lot guys. build-essentials helped, but even though I installed libgtk-dev, it still complains about not having package gtk+-2.0. I tired libgtkmm-dev, but it didn't help either. Any idea what else I need to install?
I haven't had too much contact with Ubuntu in the last two years (but I got so angry with Gentoo, that I want to try something new), so I am bit confused now.
Filip Gruszczyński schrieb:
Thanks a lot guys. build-essentials helped, but even though I installed libgtk-dev, it still complains about not having package gtk+-2.0. I tired libgtkmm-dev, but it didn't help either. Any idea what else I need to install?
I haven't had too much contact with Ubuntu in the last two years (but I got so angry with Gentoo, that I want to try something new), so I am bit confused now.
The magic command that always helps is: "apt-get build-dep geany", that'll get you all build dependencies for geany (i.e. dev packages of the libraries too).
It is indeed a magic command :-) And it works :-) Thanks a lot!
2009/4/16 Thomas Martitz thomas.martitz@student.htw-berlin.de:
Filip Gruszczyński schrieb:
Thanks a lot guys. build-essentials helped, but even though I installed libgtk-dev, it still complains about not having package gtk+-2.0. I tired libgtkmm-dev, but it didn't help either. Any idea what else I need to install?
I haven't had too much contact with Ubuntu in the last two years (but I got so angry with Gentoo, that I want to try something new), so I am bit confused now.
The magic command that always helps is: "apt-get build-dep geany", that'll get you all build dependencies for geany (i.e. dev packages of the libraries too). _______________________________________________ Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
On Thu, 16 Apr 2009 20:57:46 +0200 Filip Gruszczyński gruszczy@gmail.com wrote:
I am trying to install svn version of geany on ubuntu 9.04. When I try to run ./autogen.sh I get
**Error**: You must have `glib' installed. You can get it from: ftp://ftp.gtk.org/pub/gtk
So I install:
root@gruszczy-laptop:~/packages/geany# apt-get install glibc-source Czytanie list pakietów... Gotowe Budowanie drzewa zależności Odczyt informacji o stanie... Gotowe glibc-source jest już w najnowszej wersji.
but it says, that it is already installed in the newest version. I can use 0.16 from repo, but I prefer using svn version to test geany (that's the least I can do for my favourite editor ;-)). Could you help me on installing it?
Install dependancies:
sudo apt-get install build-essential make autoconf automake1.9 subversion libtool libgtk-dev libglib2.0-dev
Also you can ask apt-build to install packages needed to build geany, I something like this:
sudo apt-get install apt-build sudo apt-build install geany