Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 30th July 2011, 12:36 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

Its same...and when I ls -l lib32 its all in green (links):
Quote:
[jan@localhost CrayonPhysicsDeluxe]$ ls -l lib32/
total 16872
lrwxrwxrwx. 1 jan jan 25 Jul 29 19:26 libcrypto.so.0.9.8 -> /usr/lib/libcryptopp.so.6
-rw-r--r--. 1 jan jan 338508 Jul 28 21:32 libcurl.so.4
-rw-r--r--. 1 jan jan 108040 Jul 28 21:32 libgcc_s.so.1
-rw-r--r--. 1 jan jan 279760 Jul 28 21:32 libGLEW.so.1.5
lrwxrwxrwx. 1 root root 23 Jul 29 17:44 libmikmod.so.2 -> /usr/lib/libmikmod.so.3
-rw-r--r--. 1 jan jan 149392 Jul 28 21:32 libm.so.6
-rw-r--r--. 1 jan jan 2689884 Jul 28 21:32 libQtCore.so.4
-rw-r--r--. 1 jan jan 10985332 Jul 28 21:32 libQtGui.so.4
-rw-r--r--. 1 jan jan 391984 Jul 28 21:32 libSDL-1.2.so.0
-rw-r--r--. 1 jan jan 46528 Jul 28 21:32 libSDL_image-1.2.so.0
-rw-r--r--. 1 jan jan 182604 Jul 28 21:32 libSDL_mixer-1.2.so.0
lrwxrwxrwx. 1 root root 21 Jul 29 17:38 libssl.so.0.9.8 -> /usr/lib/libssl.so.10
-rw-r--r--. 1 jan jan 930044 Jul 28 21:32 libstdc++.so.6
lrwxrwxrwx. 1 jan jan 21 Jul 29 17:42 libtiff.so.4 -> /usr/lib/libtiff.so.3
-rw-r--r--. 1 jan jan 1151776 Jul 28 21:32 libX11.so.6
Quote:
[jan@localhost CrayonPhysicsDeluxe]$ ./launcher
./launcher: /usr/lib/libldap_r-2.4.so.2: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./launcher: /usr/lib/liblber-2.4.so.2: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./launcher: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcrypto.so.0.9.8: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./launcher: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libssl.so.0.9.8: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4)
./launcher: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcrypto.so.0.9.8)
Reply With Quote
  #17  
Old 30th July 2011, 09:24 PM
ajtucker Offline
Registered User
 
Join Date: Sep 2005
Posts: 6
linuxchrome
Re: Humble Indie Bundle 3

Hmm, this now looks like libstdc++ isn't installed, which I'd have thought would have been pulled in by other libraries already. Try:

Code:
sudo yum install libstdc++.i686
Another thing to try is:

Code:
ldd ./crayon | grep "not found"
to see if any other required libraries are missing. You can ignore the lines saying "no version information available"

Alex.
Reply With Quote
  #18  
Old 30th July 2011, 09:33 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

Quote:
Package libstdc++-4.6.0-9.fc15.i686 already installed and latest version
Nothing to do
As for second command:
Quote:
[jan@localhost CrayonPhysicsDeluxe]$ ldd ./crayon | grep "not found"
./crayon: /usr/lib/libldap_r-2.4.so.2: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libcurl.so.4)
./crayon: /usr/lib/liblber-2.4.so.2: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libcurl.so.4)
./crayon: /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libcrypto.so.0.9.8: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libcurl.so.4)
./crayon: /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libssl.so.0.9.8: no version information available (required by /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libcurl.so.4)
./crayon: /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by /home/jan/Games/CrayonPhysicsDeluxe/./lib32/libcrypto.so.0.9.8)
Reply With Quote
  #19  
Old 30th July 2011, 09:44 PM
ajtucker Offline
Registered User
 
Join Date: Sep 2005
Posts: 6
linuxchrome
Re: Humble Indie Bundle 3

Ok, I didn't see that it was looking in lib32/libstdc++.so.6 rather than /usr/lib/libstdc++.so.6.

You could try moving lib32/libstdc++.so.6 out of the way, e.g.:

Code:
sudo mv lib32/libstdc++.so.6 lib32/libstdc++.so.6.orig
Alex.
Reply With Quote
  #20  
Old 30th July 2011, 09:56 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

Ok. Now I get:
Quote:
./crayon: relocation error: /home/jan/Games/CrayonPhysicsDeluxe/lib32/libcurl.so.4: symbol MD5_Init, version OPENSSL_0.9.8 not defined in file libcrypto.so.0.9.8 with link time reference
Reply With Quote
  #21  
Old 31st July 2011, 10:34 AM
ajtucker Offline
Registered User
 
Join Date: Sep 2005
Posts: 6
linuxchrome
Re: Humble Indie Bundle 3

Ok, so try:

Code:
sudo yum install -y libcurl.i686
ln -sf /usr/lib/libcurl.so.4 lib32/libcurl.so.4
Alex.
Reply With Quote
  #22  
Old 31st July 2011, 02:05 PM
jan1024188 Offline
Registered User
 
Join Date: Nov 2006
Posts: 110
linuxfirefox
Re: Humble Indie Bundle 3

finally, got it to work. Thanks.
Reply With Quote
  #23  
Old 16th December 2011, 07:32 AM
Thriff Offline
Registered User
 
Join Date: Dec 2011
Location: Stockholm
Posts: 2
linuxfirefox
Re: Humble Indie Bundle 3

Since I use x86_64 I had to do this instead to get VVVVVV going:
Code:
ln -s /usr/lib64/libtiff.so.3 /usr/lib64/libtiff.so.4
A bit obvious if you think about it but since it took me an hour or so to get it myself... I figured I'd share it.
Reply With Quote
Reply

Tags
bundle, humble, indie

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Humble Bundle #3 Miikka Gamers' Lounge 0 26th July 2011 07:40 PM
New Humble Bundle pete_1967 Gamers' Lounge 6 14th April 2011 11:24 AM
Humble Indie Bundle - Braid MitraMai Using Fedora 6 19th December 2010 04:22 PM
Humble Indie 1 million dollars. BugRocks1 Linux Chat 3 13th May 2010 12:22 AM
Time to Eat Humble Pie! Paul_Vandenberg Linux Chat 2 21st July 2005 02:33 PM


Current GMT-time: 16:27 (Thursday, 23-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat