Re: Installation problems
H}kan Hjort <[email protected]>
| Newsgroups | gmane.comp.video.ogle.user |
|---|---|
| Message-ID | <[email protected]> |
Sat Feb 28 2004, Carl J. Hixon wrote: > I am fairly new to Linux. I am running RedHat 9.0. I am fully up to > date using up2date. I just spent 4 hours trying to install Ogle and > decided that I need to ask for help. If for no other reason than it is > preventing me from throwing my monitor out the window!!! > -sniped hw/sw summary- > > Now the trouble begins: > > [root@localhost tmp]# rpm -iUvh ogle-0.9.2-1.1.fr.i386.rpm > warning: ogle-0.9.2-1.1.fr.i386.rpm: V3 DSA signature: NOKEY, > key ID e42d547b > error: Failed dependencies: > alsa-lib is needed by ogle-0.9.2-1.1.fr > libasound.so.2 is needed by ogle-0.9.2-1.1.fr > libasound.so.2(ALSA_0.9) is needed by ogle-0.9.2-1.1.fr > [root@localhost tmp]# > > I do not have alsa, and do not want to try and go there right now as I > understand that it is difficult to install (and Ogle is easy...so I'm > clearly not qualified.) I have been trying to use the --without option > but that doesn't seem to work either, it shows that I am missing the > same dependencies. > Oh.. you can install alsa-lib without actually configuring and using Alsa for the audio. It a question of either depending on it or having two packages (or rewriting Ogle to dynamically detect and use Alsa). Direct link to alsa-lib rpm: http://shrike.freshrpms.net/rpm.html?id=1202 > Sooo, from here I decided to try another approach: > > [root@localhost SOURCES]# tar -C /usr/tmp -xvzf > ogle-0.9.2.tar.gz > > When I run ./configure, I die here: > > checking for main in -ljpeg... no > configure: error: Need libjpeg, install it and/or specify it's > location > [root@localhost ogle-0.9.2]# > > BUT, you can see I have it here: > > [root@localhost ogle-0.9.2]# locate libjpeg > /usr/lib/libjpeg.so.62 > /usr/lib/libjpeg.so.62.0.0 > /usr/share/doc/libjpeg-6b > /usr/share/doc/libjpeg-6b/usage.doc > /usr/share/doc/libjpeg-6b/README > [root@localhost ogle-0.9.2]# > Well, to compile software you need developer version of all the packages. These contain the header files and the .so (no version suffix) that enable gcc/ld to find the correct file when linking. /Håkan