LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-05-2014, 02:11 PM   #1
danielxs
Member
 
Registered: Feb 2014
Posts: 44

Rep: Reputation: Disabled
gnome mplayer error


Hi! My gnome mplayer no longer starts in slackware 14.1 32-bit. I have installed pulseaudio but I still have this error:
gnome-mplayer: error while loading shared libraries: libpulsecommon-0.9.21.so: cannot open shared object file: No such file or directory
I have searched and I found pulseaudio 2.0 is installed. Why gnome-mplayer is not compilling with libpulsecommon-2.0.so instead libpulsecommon-0.9.21.so?
Thanks in advance!
 
Old 03-05-2014, 02:28 PM   #2
notKlaatu
Senior Member
 
Registered: Sep 2010
Location: Lawrence, New Zealand
Distribution: Slackware
Posts: 1,077

Rep: Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732
Did you manually compile Gnome Mplayer against libpulsecommon-2.0.so ? if not, why would it look to libpulsecommon-2.0.so ?

I can see you going one of two ways on this:
- uninstall pulse 2.0 and install pulse 1.9(.21) [and then GnomeMplayer will be able to find the libpulsecommon-0.9.21.so it is seeking]
OR..
- re-compile Gnome Mplayer against your new libpulsecommon.2.0.so [which will make GnomeMplayer look for libpulsecommon-2.0.so insteaad]

A third option would be to recompile Gnome Mplayer WITHOUT pulse depencies (if that's an option)

A fourth option is to use something like SMplayer or KMplayer instead.
 
Old 03-05-2014, 03:45 PM   #3
danielxs
Member
 
Registered: Feb 2014
Posts: 44

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by notKlaatu View Post
Did you manually compile Gnome Mplayer against libpulsecommon-2.0.so ? if not, why would it look to libpulsecommon-2.0.so ?

I can see you going one of two ways on this:
- uninstall pulse 2.0 and install pulse 1.9(.21) [and then GnomeMplayer will be able to find the libpulsecommon-0.9.21.so it is seeking]
OR..
- re-compile Gnome Mplayer against your new libpulsecommon.2.0.so [which will make GnomeMplayer look for libpulsecommon-2.0.so insteaad]

A third option would be to recompile Gnome Mplayer WITHOUT pulse depencies (if that's an option)

A fourth option is to use something like SMplayer or KMplayer instead.
I compilled gnome mplayer against libpulsecommon.2.0 from slackbuilds source code but I have the same error, and I don't know why. The point is I was able to run gnome-mplayer untill yesterday. I must have been installed something wrong, and now compilling pulseaudio again doesn't solve the problem. I also don't know how to compile gnome mplayer without pulse audio. I think I really have to uninstall pulseaudio and not using it anymore.... it would be fain if i can build gnom-mplayer without pulse.

Last edited by danielxs; 03-05-2014 at 03:56 PM.
 
Old 03-05-2014, 03:54 PM   #4
notKlaatu
Senior Member
 
Registered: Sep 2010
Location: Lawrence, New Zealand
Distribution: Slackware
Posts: 1,077

Rep: Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732Reputation: 732
If you download the sources of Gnome Mplayer and run:

Code:
./configure --help
it says you can compile without pulse using this flag:
Code:
--without-pulseaudio
I am not sure why your Gnome Mplayer would be looking for pulse 0.9.21 if you compiled and installed against pulse-2.0 but maybe the pulse numbering scheme is not what it appears to be.

I would uninstall Gnome Mplayer, then re-compile Gnome Mplayer with the --without-pulseaudio flag (unless you WANT pulse audio) and see if that works. It should.

If not, then do an
Code:
ls /usr/lib/*pulse*
and let's see what exactly is going on in your lib directory...
 
Old 03-06-2014, 03:33 AM   #5
danielxs
Member
 
Registered: Feb 2014
Posts: 44

Original Poster
Rep: Reputation: Disabled
@notKlaatu Thank you for your answer. I uninstalled pulseaudio and I tryied to compile gnome-mplayer with the "--without-pulseaudio" flag, but I have this error:
/usr/lib/gcc/i486-slackware-linux/4.8.2/../../../libgmlib.so: undefined reference to `pa_context_set_subscribe_callback@PULSE_0'
Now.... if pulseaudio is unisntalled but I still have a library located in gcc library which tells gnome-mplayer that pulseaudio is still on the system, should I just delete that file, or this will crush my system?
Maybe I should rebuild gcc, or edit libgmlib.so somehow?!...

Last edited by danielxs; 03-06-2014 at 03:36 AM.
 
Old 03-06-2014, 05:05 AM   #6
danielxs
Member
 
Registered: Feb 2014
Posts: 44

Original Poster
Rep: Reputation: Disabled
I have to correct the above post, becouse I didn't mentioned the entire error compilling gnome mplayer:
/usr/lib/gcc/i486-slackware-linux/4.8.2/../../../../i486-slackware-linux/bin/ld: warning: libpulse-mainloop-glib.so.0, needed by /usr/lib/gcc/i486-slackware-linux/4.8.2/../../../libgmlib.so, not found (try using -rpath or -rpath-link)
/usr/lib/gcc/i486-slackware-linux/4.8.2/../../../../i486-slackware-linux/bin/ld: warning: libpulse.so.0, needed by /usr/lib/gcc/i486-slackware-linux/4.8.2/../../../libgmlib.so, not found (try using -rpath or -rpath-link)
/usr/lib/gcc/i486-slackware-linux/4.8.2/../../../../i486-slackware-linux/bin/ld: warning: libpulsecommon-0.9.21.so, needed by /usr/lib/gcc/i486-slackware-linux/4.8.2/../../../libgmlib.so, not found (try using -rpath or -rpath-link)
I don't know what's wrong. I compilled gnome-mplayer like this: ./configure --without-pulseaudio; make; --- when I try to make it I get the above errors

Last edited by danielxs; 03-06-2014 at 05:10 AM.
 
Old 03-06-2014, 06:04 AM   #7
danielxs
Member
 
Registered: Feb 2014
Posts: 44

Original Poster
Rep: Reputation: Disabled
Nevermind. I solved this problem my self. I found this reference link: http://www.murga-linux.com/puppy/vie...c3831c39613edf The problem was in building and installing gmtk package with pulseaudio installed. So I reinstalled gmtk, and after that I had an error with libpangocairo dependence file which is a part of pangomm. After uninstalling and reinstalling pangomm gonme-mplayer could be build and installed again.
Thanks for your postings!
 
  


Reply



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
gnome-mplayer and vlc dbus error wont play video fogpipe Gentoo 3 05-29-2012 01:48 AM
[SOLVED] GNOME MPlayer error MTK358 Linux - Software 8 07-05-2011 07:22 PM
MPlayer GUI (gmplayer - NOT gnome-mplayer) single instance fix... poweredbydodge Linux - Desktop 5 04-12-2011 03:34 PM
LXer: SMPlayer and GNOME Mplayer - Two Incredibly Good Mplayer Based Media Players For Ubuntu LXer Syndicated Linux News 0 07-13-2010 02:10 AM
gnome-mplayer cccc Debian 1 05-31-2010 11:19 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:40 AM.

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