Operating Systems > Linux and UNIX

Installng tarballs

<< < (2/4) > >>

davidnix71:
debget.com reports there are no pidgin packages available

xubuntu uses debian packages, I assume.  Going to Pidgin's home site also shows no debian distros.

That means you have the Windows package. Your only option would be to get the RedHat Fedora package and use
the alien package converter here:

http://www.ubuntu-unleashed.com/2008/03/howto-convert-redhat-and-fedora-rpm.html

SiMuLaCrUm:
Eh? It downloaded it for me, and the windows version is an EXE file. I have it on my windows machine. When I clicked download, it downloaded me a tarball...

EDIT: Ah, yes further exploration of pidgin's site reveals that it does not have an Ubuntu version, only Windows, Fedora, CentOS and Mac.

Edit X2: The Fedora file is a .repo file... no .rpm file...

worker201:
There's a link to download the source, too.  Source is for version 2.5.2, and the filename is pidgin-2.5.2.tar.bz2.  Assuming that file has been downloaded to your home folder:

--- Code: ---cd ~
ls
tar jxf pidgin*
cd pidgin*
./configure
make
make install
--- End code ---

The "C compiler cannot create executables" error comes with a line number.  You didn't happen to write that down, did you?  If not, run it again.  Pretty sure that has to do with an autoconf versioning problem, since that's where the error message appears in the code, but it could be something else.

In case anyone's interested, I could not install this on my Mac because I don't have glib installed.

SiMuLaCrUm:
A number, where? Is it in the config.log file?
Because it only showed this.


worker201:
It is supposed to give line numbers in your terminal window.  On my computer, it gives the line numbers in the config.log also.  But anyway, it's clear where it failed.

Do a test:
copy the following source into a textfile, call it test.c and save it
http://www.engin.umd.umich.edu/CIS/course.des/cis400/c/hworld.html
from the command line, in the folder where you saved the file:

--- Code: ---gcc test.c
--- End code ---
Does that work?  What's the name of the file it created?  Should be called a.out.  If it is, try running it by typing:

--- Code: ---./a.out
--- End code ---
Did that work?

Also, why does Ubuntu not have gawk?  GNU programs just not good enough for them?

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version