Siduction Forum

Siduction Forum => Software - Support => Topic started by: bad_aptitude on 2013/04/18, 22:12:17

Title: Advice Please: Compile from sources or RPM via Alien
Post by: bad_aptitude on 2013/04/18, 22:12:17
There is what looks like a nice piece of image comparison software called IMGSEEK which has not been maintained recently. There may be an old package through DEB-PORTS. There are 2 - 3 year old sources files available trough GIT and there is an RPM from 2011.
Not wishing to mess up my installation, would I be better off using alienware on the RPM or compiling from an old GIT source file? Or should I just forget it?

Thanks for any advice.
Title: RE: Advice Please: Compile from sources or RPM via Alien
Post by: GoinEasy9 on 2013/04/20, 05:04:55
I would choose compiling before using "alien", especially with older rpm's.  Even though the code is old, you really can't hurt anything by trying to compile it.
Title: Re: RE: Advice Please: Compile from sources or RPM via Alien
Post by: DeepDayze on 2013/04/20, 16:24:01
Quote from: "GoinEasy9"I would choose compiling before using "alien", especially with older rpm's.  Even though the code is old, you really can't hurt anything by trying to compile it.

Try to build it as user sounds like a better idea and make sure you have the needed -dev packages. Watch the errors from the "./configure && make" dance as in most cases ./configure will complain about missing headers, libs etc and the name of the missing lib will usually tell you what -dev package is needed.

For example if ./configure gives error "Error: library Foo not found" you could try installing foo-dev package. Sometimes you might not be able to compile such old software as it might depend on rather old versions of libs or headers.
Title: Advice Please: Compile from sources or RPM via Alien
Post by: bad_aptitude on 2013/04/20, 18:10:23
Thanks GoinEasy9 and DeepDayze.
I'll give compilng from sources a try.