LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-26-2003, 08:46 PM   #16
blackphiber
LQ Newbie
 
Registered: Sep 2003
Location: US
Distribution: Fedora Core 2
Posts: 26

Rep: Reputation: 15

I am having several problems too... I have tried all of the above. So I first do export PKG_CONFIG_PATH=/usr/local/bin and that tells me:
checking for libgift >= 0.10.0... Package libgift was not found in the pkg-config search path.
Perhaps you should add the directory containing `libgift.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libgift' found

so then I do:
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig"

and then it seems to find libgift but has a problem with gtk. as follows:
checking for libgift >= 0.10.0... yes
checking LIBGIFT_CFLAGS... -I/usr/local/include
checking LIBGIFT_LIBS... -L/usr/local/lib -lgift
checking for gtk+-2.0 >= 2.0.3... Package gtk+-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk+-2.0' found

configure: error: Library requirements (gtk+-2.0 >= 2.0.3) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.

I do an rpm grep and get this:
[root@x1-6-00-20-e0-6c-19-4d giftui-0.2.0]# rpm -qa | grep -i 'gtk'
libgtk+1.2-1.2.10-32mdk
libgtk+2.0_0-2.2.1-2mdk
libgtkhtml1.1_3-1.1.8-2mdk
gtk+mdk-0.1.6-14mdk
libgtk+-x11-2.0_0-2.2.1-2mdk
gtk+2.0-2.2.1-2mdk
gtkdialogs-2.0-3mdk
perl-GTK2-0.0.cvs.2003.03.04.1-2mdk

so I do have gtk installed, any ideas what I can do to get it to work? Thanks.
 
Old 09-28-2003, 05:21 PM   #17
dotT
LQ Newbie
 
Registered: Sep 2003
Location: UK
Distribution: Mandrake 9.2
Posts: 17

Rep: Reputation: 0
I also got this message -
giFToxic: error while loading shared libraries: libgift.so.0: cannot open shared object file: No such file or directory

So as root I did -
cd /lib
ln /usr/local/lib/libgift.so.0.0.0 libgift.so.0

Which did the trick.
Is there a better solution?
 
Old 10-02-2003, 10:19 AM   #18
Phweedo
LQ Newbie
 
Registered: Oct 2003
Distribution: Mandrake 9.1
Posts: 1

Rep: Reputation: 0
Quote:
Originally posted by dotT
I also got this message -
giFToxic: error while loading shared libraries: libgift.so.0: cannot open shared object file: No such file or directory

So as root I did -
cd /lib
ln /usr/local/lib/libgift.so.0.0.0 libgift.so.0

Which did the trick.
Is there a better solution?
I'm a Linux noob so please stay with me here..

But what do you mean you? What exactly did you do to overcome this problem.

I got the "cd /lib" part but what does the next line accomplish??
 
Old 10-02-2003, 07:02 PM   #19
dotT
LQ Newbie
 
Registered: Sep 2003
Location: UK
Distribution: Mandrake 9.2
Posts: 17

Rep: Reputation: 0
ok Phweedo np.
"ln" is short for link.
Basically you use "ln" to make a link to another file. A link is a bit like a windows shortcut.

"In" in this case creates a link called "libgift.so.0" in "/lib"
This link points to "/usr/local/lib/libgift.so.0.0.0", this is the latest version of libgift which is in "/usr/local/lib"

You see this method used many times in linux it allows apps to find new versions of libs or whatever easily.

More info? try these -
man ln
info ln

dott
 
Old 10-02-2003, 07:11 PM   #20
mossy
Member
 
Registered: Aug 2003
Location: USexIRL
Distribution: *nix
Posts: 849

Rep: Reputation: 30
yeah I could not be bollixed with giFToxic after I got some error so I switched to giFTcurs [as it was recommended by giFT] and install went fine.

I posted instructions in this forum.
 
Old 10-07-2003, 01:58 PM   #21
Keffin
LQ Newbie
 
Registered: Sep 2003
Location: England
Distribution: VectorLinux 4.0
Posts: 19

Rep: Reputation: 0
giFToxic: error while loading shared libraries: libgift.so.0: cannot open shared object file: No such file or directory


so i'm going to try to figure that one out unless someone has something to offer on that subject.


Please post if you find the solution to this. I just got this error (except trying to install apollon) after a couple of hours tracking down all the dependencies for getting giFT and the plugins on my machine. I can't find this file on google...
 
Old 10-07-2003, 02:06 PM   #22
mossy
Member
 
Registered: Aug 2003
Location: USexIRL
Distribution: *nix
Posts: 849

Rep: Reputation: 30
....well...if your determined to use it [and not giFTcurs as I recommended earlier - seems there have no complaints on that]...
It may not be linked -
run a search for it on your system:

find / -name "*libgift.so.0*"

Search thru all the README/INSTALL files and see if there are any parameters to specify when configureing. search their site too for any mention of it.
 
Old 10-11-2003, 02:41 PM   #23
dotT
LQ Newbie
 
Registered: Sep 2003
Location: UK
Distribution: Mandrake 9.2
Posts: 17

Rep: Reputation: 0
Keffin, i take it as said that you've got giFT installed.
Apollon is worth installing, its my client of choice. Hope this helps.

libgift.so.0 is a link to the current gift library.
You should find libgift installed in - /usr/local/lib
But Apollon like giFToxic expects it to be in - /lib
So we need a link (shortcut) in /lib pointing to the current gift library which is - /usr/local/lib/libgift.so.0.0.0
This is done like this...

as super user
cd /lib
ln /usr/local/lib/libgift.so.0.0.0 libgift.so.0

Worked for me.
 
Old 10-11-2003, 03:06 PM   #24
mossy
Member
 
Registered: Aug 2003
Location: USexIRL
Distribution: *nix
Posts: 849

Rep: Reputation: 30
kewl.

Im really impressed with giFTcurs tho. Have you tried it yet?
 
Old 10-11-2003, 05:26 PM   #25
Keffin
LQ Newbie
 
Registered: Sep 2003
Location: England
Distribution: VectorLinux 4.0
Posts: 19

Rep: Reputation: 0
Talking

Thanks a lot dotT. Just what I needed.
 
Old 10-12-2003, 07:53 AM   #26
dotT
LQ Newbie
 
Registered: Sep 2003
Location: UK
Distribution: Mandrake 9.2
Posts: 17

Rep: Reputation: 0
Glad to help.

Yep I've used giFTcurs and still have it installed. Its very stable and I like the way the middle button toggles the search & transfer views. I use it to test the network if I get a problem with another client.

Apollon has a few nice features tho -
- auto run/shutdown of giFT deamon.
- timing of individual files.
- preview player.
- configuration menu.
- kde stuff -
-- systray integration.
-- file tree navigation.
-- search tabs.
 
Old 10-12-2003, 10:50 AM   #27
mossy
Member
 
Registered: Aug 2003
Location: USexIRL
Distribution: *nix
Posts: 849

Rep: Reputation: 30
search tabs sounds nice - might try it later but I think I like stability and less overhead. I may it if I need anything alittle snazzier. Thanks for letting us know it's capabilities.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
giFToxic can't find..... recall555 Linux - Software 4 04-22-2006 07:41 PM
Sound Card problem(every time i install linux i have diffirent hardware problem) jacka1l Linux - Newbie 7 08-11-2005 06:10 AM
Slack 10.1 Install Problem(During Package Install) terdbird Slackware - Installation 2 04-22-2005 02:18 PM
dhcp problem in Debian netinst install..Help !! install. copter Linux - Networking 11 06-30-2004 01:14 PM
giFToxic problem paulr1984 Linux - Software 0 05-23-2004 02:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration