Results 1 to 10 of 10
Hi all currently trying to get the latest svn from gaim, came with these errors:
liam@ubuntu:~$ cd gaim
liam@ubuntu:~/gaim$ ./autogen.sh
Generating configuration files for Gaim, please wait....
Running libtoolize, please ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-23-2006 #1Just Joined!
- Join Date
- May 2006
- Posts
- 16
svn gaim
Hi all currently trying to get the latest svn from gaim, came with these errors:
What do i need to do to get past these errors?liam@ubuntu:~$ cd gaim
liam@ubuntu:~/gaim$ ./autogen.sh
Generating configuration files for Gaim, please wait....
Running libtoolize, please ignore non-fatal messages....
You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'.
You should add the contents of '/usr/share/aclocal/intltool.m4' to 'aclocal.m4'.aclocal: configure.ac: 50: macro `AM_GLIB_GNU_GETTEXT' not found in library
liam@ubuntu:~/gaim$
Many thanks!
- 05-23-2006 #2
Do you have the gtk 2.0 developpement files installed?
In order to compile gaim you would need those. The package is probably called "libgtk2.0-dev".
So
Plus, make sure you have those installed:Code:sudo apt-get install build-essential libgtk2.0-dev
-autoconf
-automake (a recent version)
-gettext
You can "apt-get" those as well.
For more, you can take a look at this page:
http://gaim.sourceforge.net/faq.php"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-23-2006 #3Just Joined!
- Join Date
- May 2006
- Posts
- 16
Hey thanks, i get further now, but when i try to do 'gmake' i get
What do i need for gmake?liam@ubuntu:~/gaim$ gmake
bash: gmake: command not found
Thanks.
- 05-23-2006 #4
gmake?
You need as well:
So glib and gtk developpement files are needed.Code:sudo apt-get install libglib2.0-dev
See the bottom of this page (section called "Subversion (aka SVN)":
http://gaim.sourceforge.net/downloads.php"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-23-2006 #5Just Joined!
- Join Date
- May 2006
- Posts
- 16
I have that, i have followed that page and it still says "bash: gmake: command not found"
- 05-23-2006 #6
OK. In fact "gmake" means "GNU make". So you can just do that:
Then it should work.Code:sudo ln -s /usr/bin/make /usr/bin/gmake
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-23-2006 #7Just Joined!
- Join Date
- May 2006
- Posts
- 16
Still says the same thing
- 05-23-2006 #8
Hum... it does work flawlessly on my system though.
Then
Code:sudo rm /usr/bin/gmake
Should tell you were it is, make a symlink for it that points to the equivalent location, but "gmake" instead.Code:whereis make
Like that
Code:mastah@hugues:~$ sudo rm /usr/bin/gmake mastah@hugues:~$ whereis make make: /usr/bin/make /usr/share/man/man1/make.1.gz mastah@hugues:~$ sudo ln -s /usr/bin/make /usr/bin/gmake mastah@hugues:~$ gmake --help Usage: gmake [options] [target] ...
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee
- 05-23-2006 #9Just Joined!
- Join Date
- May 2006
- Posts
- 16
Thanks i got it now.
- 05-23-2006 #10
Cool. Next time it'll go more smoothly
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee


Reply With Quote
