Library Expansion
Be forewarned: Flash Player 10 for Linux will have more external library dependencies. These are very new requirements that were not required in either of the 2 released FP10 beta builds publicly released so far.
- cURL
- Mozilla's Network Security Services (NSS)
- Further, glibc >= 2.4
To what end? Most notably, the Linux Flash Player binary will no longer need to rely on a separate module called flashsupport in order to support secure connections. Supporting OpenSSL was the original motivation for creating the flashsupport library. We are moving to Mozilla's NSS which ought to be installed alongside Mozilla.
Will libflashsupport continue to be supported? Partially. Flash Player 10 will no longer care what libflashsupport.so has to say about SSL. However, it will still pay attention to the sound output functions (fpx_soundoutput_*) so that end users can continue to implement support for an ever-growing number of Linux audio APIs. The camera input functions (fpx_videoinput_*) were never implemented and that will not change now. Hopefully, the revised Video4Linux camera support in Flash Player 10 will solve many Linux camera problems (V4L1 will be supported in the final and V4L2 will no longer chew up all the CPU time).
Thanks to the many people who reported camera information in my last blog post. I guess YUYV is the most important colorspace out there. Here's another end user query: What glibc version do you have on your current Linux system(s)? And what distro is it? And how on earth did you figure out what glibc version you have? For such an important part of the system, it sure is hard to find a consistent method to query this information. A little searching has revealed these 2 methods:
- DEB-based systems: 'dpkg -l | grep libc6'
- RPM-based systems: 'rpm -q glibc'
Comments
Will there be a beta 3 before the final release? I'd like to be able to see if my UVC compliant Logitech Quickcam 9000 Pro will work before the final release. Also, inb4 64-bit request.
As for your query:
glibc-2.8
Fedora 9 x86_64
rpm -q glibc
Instead of relying on 3rd party programs to detect glibc versions, I recommend a file name lookup. Each glibc shared object has the version in its name, example:
/lib64/libc-2.8.so
This is on my glibc 2.8 64-bit system. I only run 64-bit systems.
/lib64/libc-2.4.so
This would be a glibc 2.4 version.
Posted by: Michael | August 8, 2008 1:31 PM
jamesw@dos:~$ /lib/libc.so.6
GNU C Library development release version 2.8.90, by Roland McGrath et al.
Distro: Ubuntu Intrepid
Thanks Mike for all your hard work on making Flash Player rock on Linux!
-James
[ Hey, I never knew you could just "run" a library to find its version. Thanks. -Mike M. ]
Posted by: James Ward | August 8, 2008 1:38 PM
There is a portable way to find out the glibc version:
/lib/libc.so.6
Yes, that library can be executed!
[ Glad I asked. -Mike M. ]
Posted by: Bernhard Walle | August 8, 2008 1:39 PM
I use glibc 2.7.
Posted by: Dâniel Fraga | August 8, 2008 1:40 PM
dpkg -l | grep libc6
ii libc6 2.7-10ubuntu3 GNU C Library: Shared libraries
ii libc6-dev 2.7-10ubuntu3 GNU C Library: Development Libraries and Hea
ii libc6-i686 2.7-10ubuntu3 GNU C Library: Shared libraries [i686 optimi
Ubuntu hardy Heron
Good luck for Flash Player 10!
Posted by: hype | August 8, 2008 1:46 PM
"We are moving to Mozilla's NSS which ought to be installed alongside Mozilla."
So if you're an Opera user it won't be enough to just run the Flash installer anymore; you have to install NSS too.
"And how on earth did you figure out what glibc version you have?"
Start /lib/libc.so.6 as an executable. I'm not kidding. :)
Posted by: SvdB | August 8, 2008 1:47 PM
You can ask glibc what version it is ... sample code
http://www.wienand.org/junkcode/checknptl/glibc-version.c
Posted by: Ian | August 8, 2008 1:47 PM
glibc-2.8_p20080602
gentoo
genlop glibc
Posted by: brenn | August 8, 2008 1:58 PM
Simplest way to find the glibc version if you are not interested in distribution patchlevels:
execute /lib/libc.so.6
The used glibc versions on the machines around me range from 2.3.6 (debian etch) to 2.7 (debian unstable), where the etch machines are mostly servers.
And your dpkg statement above:
dpkg-query -W -f '${Version}\n' libc6
outputs exactly the version of the libc6 package, without big parsing-needs.
Posted by: Haegar | August 8, 2008 2:03 PM
2.7-10ubuntu3
Ubuntu Hardy Heron
Posted by: Asa | August 8, 2008 2:16 PM
glibc version 2.7-10
distro: Debian unstable
Posted by: David R | August 8, 2008 2:26 PM
slithy@mentat ~ $ /lib/libc.so.6
GNU C Library stable release version 2.6.1, by Roland McGrath et al.
Posted by: slithy | August 8, 2008 2:33 PM
Here's a portable way to find the libc version:
$ /lib/libc.so.6
GNU C Library stable release version 2.7, by Roland McGrath et al.
Copyright (C) 2007 Free Software Foundation, Inc.
[...]
Yes, you can execute libc as an executable :)
Posted by: bd_ | August 8, 2008 2:42 PM
running ubuntu hardy here.
Posted by: hannes | August 8, 2008 2:46 PM
ii libc6 2.7-10ubuntu3 GNU C Library: Shared libraries
ii libc6-dev 2.7-10ubuntu3 GNU C Library: Development Libraries and Header Files
ii libc6-i386 2.7-10ubuntu3 GNU C Library: 32bit shared libraries for AMD64
64-bit support ?
Posted by: IceWil | August 8, 2008 3:42 PM
/lib/libc.so.6
GNU C Library stable release version 2.8
ALSO:
Available extensions:
C stubs add-on version 2.1.2
crypt add-on version 2.1 by Michael Glad and others
Gentoo snapshot 20080602
Gentoo patchset 2
GNU Libidn by Simon Josefsson
Native POSIX Threads Library by Ulrich Drepper et al
Support for some architectures added on, not maintained in glibc core.
BIND-8.2.3-T5B
Distro: Gentoo
Nice to see a "disclaimer" about the post, but pleeease, an AMD64 version :)
Posted by: LuisManson | August 8, 2008 4:18 PM
Hey Mike, I think I read somewhere that you can just launch the library to get the version info ;-)
"GNU C Library stable release version 2.7, by Roland McGrath et al."
Posted by: andrew | August 8, 2008 4:20 PM
Version 2.7 - Slackware 12.1
Posted by: Polar | August 8, 2008 5:21 PM
[neil@lx-dt:~]$ /lib/libc.so.6 (08-08 21:06)
GNU C Library stable release version 2.7, by Roland McGrath et al.
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
Compiled by GNU CC version 4.2.3 (Ubuntu 4.2.3-2ubuntu7).
Compiled on a Linux >>2.6.24-14-server Available extensions:
crypt add-on version 2.1 by Michael Glad and others
GNU Libidn by Simon Josefsson
Native POSIX Threads Library by Ulrich Drepper et al
BIND-8.2.3-T5B
For bug reporting instructions, please see:
.
Posted by: Neil | August 8, 2008 6:08 PM
There's also a somewhat more intuitive portable approach: ldd --version .
Posted by: Aaron M. Ucko | August 8, 2008 6:55 PM
scorcher@uss-enterprise:~$ apt-cache show libc6 | grep Ver
Version: 2.7-10ubuntu3
Distro: Ubuntu 8.04.1
Posted by: scorcher | August 8, 2008 7:00 PM
glibc version 2.7
Slackware 12.1
Initially I just did a locate on glibc which showed docs for glibc-2.7, which I then verified by running /lib/libc.so.6
Great job on the work and on keeping us updated on the progress.
Posted by: bassmadrigal | August 8, 2008 8:10 PM
I'm using debian lenny amd64 kde4.1
ii libc6 2.7-13 GNU C Library: Shared libraries
ii libc6-dev 2.7-13 GNU C Library: Development Libraries and Header Files
ii libc6-i386 2.7-13 GNU C Library: 32bit shared libraries for AMD64
Posted by: amir | August 8, 2008 9:23 PM
Fedora9:
[jordan@localhost ~]$ rpm -q glibc
glibc-2.8-8.x86_64
glibc-2.8-8.i386
Posted by: JordanN | August 8, 2008 9:59 PM
Using the "/lib/libc.so.6" method, I have version 2.7 on Fedora 8.
Does this cleaning up of glibc possibly mena less crashes? On all 3 of my computers (Fedora 8 Latop, 9 Work PC and 10 alpha home PC) Firefox is unusable as Flash brings it down on a regular basis. For some reason Opera seems to cope better :-(
Posted by: Anonymous | August 8, 2008 10:47 PM
Minimyth 0.21.0-56
GNU C Library stable release version 2.8
Posted by: Trevor | August 8, 2008 11:33 PM
GNU C Library stable release version 2.7, by Roland McGrath et al.
Mandriva 2008 Spring.
Posted by: rawthorne | August 9, 2008 1:16 AM
libc6 : 2.7-10ubuntu3
and
libc6-i386 2.7-10ubuntu3 (32bit shared libraries for AMD64)
I'm running ubuntu 8.04 64bits
Posted by: XioNoX | August 9, 2008 2:05 AM
glibc: 2.8
distro: Arch Linux
Posted by: phini | August 9, 2008 2:27 AM
Distro : debian sid
$ dpkg -l | grep libc6
ii libc6 2.7-13
Posted by: Michael | August 9, 2008 3:38 AM
Hopefully Pulseaudio will be supported flawlessly out of the box. That's what all the distributions have switched into using. Also, I hope there will be 64-bit version so I don't have to use the Gnash anymore...
Posted by: rawsausage | August 9, 2008 4:07 AM
Ubuntu Intrepid Ibex (8.10):
ii libc6 2.8~20080505-0ubuntu6 GNU C Library: Shared libraries
ii libc6-dev 2.8~20080505-0ubuntu6 GNU C Library: Development Libraries and Hea
ii libc6-i686 2.8~20080505-0ubuntu6 GNU C Library: Shared libraries [i686 optimi
Posted by: miltiad | August 9, 2008 4:26 AM
Here you can find all the versions of glibc in Debian: http://packages.debian.org/search?keywords=libc6
Posted by: Dom | August 9, 2008 7:32 AM
Running Fedora 9 here:
rpm -q glibc
glibc-2.8-8.i686
glibc-2.8-8.x86_64
Looking forward to Flash 10 on Linux ;-)
Regards,
Andre
Posted by: Andre Costa | August 9, 2008 8:28 AM
GNU C Library stable release version 2.8, by Roland McGrath et al.
gentoo
Posted by: Mark | August 9, 2008 9:10 AM
ii libc6 2.7-10ubuntu3 GNU C Library: Shared libraries
ii libc6-dev 2.7-10ubuntu3 GNU C Library: Development Libraries and Header Files
ii libc6-i686 2.7-10ubuntu3 GNU C Library: Shared libraries [i686 optimized]
DISTRO: Linux Mint Elyssa
Im having lots of problems with SWFObject or similar methods not detecting my flashplayer as version 8+ :(
It doesnt work with sIFR (Fonts in websites) nor with tubemogul.com flash reports, there are more sites that doesn't detect my flash version properly but those I remember right now.
[ Are you sure you don't have a rogue copy of Flash Player 7 running around your system? 'locate libflashplayer.so' to hunt it down. -Mike M. ]
Posted by: Ana | August 9, 2008 11:08 AM
Sorry but I have to ask: why are you constantly relying to Mozilla stuff (first Mozilla-specific xembed which isn't the real xembed and now another mozilla library).
Ok, mozilla is probably in most cases in default install but still it is stupid to rely on stuff which comes from _one_ of many browser manufacturers...
You're just making flash support damn hard for other browser manufacturers and that might kill whole flash.
[ Do you have a better proposal for SSL support? -Mike M. ]
Posted by: E. Perduel | August 9, 2008 12:09 PM
2.7
Debian unstable
Posted by: tmy | August 9, 2008 12:25 PM
glibc version 2.7
Slackware 12.1
Initially I just did a locate on glibc which showed docs for glibc-2.7, which I then verified by running /lib/libc.so.6
Great job on the work and on keeping us updated on the progress.
Posted by: bassmadrigal | August 9, 2008 2:32 PM
marko@earth:~$ /lib/libc.so.6
GNU C Library stable release version 2.7, by Roland McGrath et al.
Compiled by GNU CC version 4.2.3 (Ubuntu 4.2.3-2ubuntu7).
Compiled on a Linux >>2.6.24-15-server Available extensions:
crypt add-on version 2.1 by Michael Glad and others
GNU Libidn by Simon Josefsson
Native POSIX Threads Library by Ulrich Drepper et al
BIND-8.2.3-T5B
For bug reporting instructions, please see:
.
Any word on a 64 bit-version? I would like to show my friends how great linux is, but as long as I have to download Youtube-movies to play with VLC, nobody cares :-S
Posted by: Marko | August 9, 2008 4:01 PM
Slackware 12.0
$ /lib/libc.so.6
GNU C Library stable release version 2.5, by Roland McGrath et al.
Posted by: trey | August 9, 2008 11:28 PM
glibc version 2.8-2
Distro: Arch Linux
Posted by: Tim Goh | August 10, 2008 3:02 AM
glibc version 2.7
Slackware 12.1
Initially I just did a locate on glibc which showed docs for glibc-2.7, which I then verified by running /lib/libc.so.6
Great job on the work and on keeping us updated on the progress.
Posted by: bassmadrigal | August 10, 2008 6:02 AM
Hello,
Good luck on the flashplayer 10 for Linux!
Very much need that, hope you can release the final soon.
Hhere is my glibc version:
"glib-2.14.2" "glib 2.14.2: C support library" on "BuildingBlock 944K" \ │
"glibc-2.6.1-1" "glibc 2.6.1-1:
And i am using Puppy Linux!
Best regards,
Johan
Posted by: Johan | August 10, 2008 6:13 AM
/lib/libc.so.6
GNU C Library stable release version 2.7, by Roland McGrath et al.
Slackware 12.1
Posted by: Nille | August 10, 2008 7:01 AM
Running Mandriva 2008.1:
/lib/libc.so.6
GNU C Library stable release version 2.7, by Roland McGrath et al.
Compiled by GNU CC version 4.2.3 (4.2.3-6mnb1).
Available extensions:
Posted by: nathan | August 10, 2008 8:19 AM
Posted by: FieserKiller | August 10, 2008 8:52 AM
Hello,
I'd suggest 'apt-cache policy libc6' for deb-based systems. My version is 2.8+20080809-1 and I'm using debian unstable + some packs from experimental (libc6 too, it seems to be updates often there).
BTW Thanks for all the effort you put into Flash version for linux.
I'm currently testing Flash 10 and it works great for me.
Posted by: neqael | August 10, 2008 8:59 AM
glibc-2.6.1-4.1mdv2008.0
Mandriva 2008.0
This issue with Flash and Mandriva 2008.1 is why I reverted to Mandriva 2008.0. I followed the advice in the errata and wasn't able to fix the sound issue. In short, having Flash run properly with sound was more important to me than running the latest version of my distro.
Posted by: Steven James | August 10, 2008 9:11 AM
Distro: OpenSUSE 11.0 x86_64
$/lib64/libc.so.6
GNU C Library stable release version 2.8 (20080425)
Posted by: Dawid H. | August 10, 2008 12:29 PM
glibc-2.8-14.1
opensuse 11
Posted by: Harkai | August 10, 2008 3:53 PM
I use glibc 2.7 too, in Slackware -current
Posted by: ulij | August 10, 2008 4:56 PM
Is there a chance to include fpx_sound"in"put_XXX to flashsupport in order to select other microphones in flash? At the moment only the standard microphone is listed and other devices are being ignored. thx alot for the support.
[ Nice idea, but it is not planned for the short term. -Mike M. ]
Posted by: buzz | August 10, 2008 5:47 PM
On my up-to-date Gentoo box:
$ /lib/libc.so.6
GNU C Library stable release version 2.6.1, by Roland McGrath et al.
Posted by: Chris | August 10, 2008 6:46 PM
glibc 2.7-2
Distro: Linpus Linux Lite v1.0.3.E (Fedora8 derivative, installed by default on the Acer AspireOne netbooks).
Posted by: maks | August 10, 2008 8:41 PM
just a quick question:
Does anyone have issues with flash + certain sites?
As a regression from the first beta?
for example on my 32bit ubuntu hardy machine at home, the site www.facebook.com would always peg the CPU at 100% on beta 2 (once logged in,) so I had to downgrade to beta 1... just wondering if anyone else had something similar or (likely) it's just an ubuntu issue?
cheers,
Gaspard
Posted by: Gaspard Leon | August 10, 2008 10:01 PM
glibc 2.8
Pardus 2008 here...
Posted by: ekin | August 10, 2008 11:37 PM
glibc version: 2.7-13
Distro: Debian lenny
Posted by: Gustavo | August 11, 2008 12:11 AM
OpenSuse 10.3:
glibc-2.6.1-18.3
Posted by: Michele | August 11, 2008 1:11 AM
OpenSuse 10.3
glibc-2.6.1-18.3
Posted by: Michele | August 11, 2008 1:16 AM
I use a 64 bits 2.7 libc:
$ /lib/libc.so.6
GNU C Library stable release version 2.7, by Roland McGrath et al.
Posted by: Laurent Raufaste | August 11, 2008 1:41 AM
glibc v2.6.1-18.3
OpenSuSE 10.3
It was easy for me to run 'rpm -q glibc', I don't see was it's 'hard to find a consistent method', once you've figured out if the system is .deb or .rpm based, and others have posted less end-user oriented ways for code to figure it out too.
Posted by: Tom Chiverton | August 11, 2008 3:00 AM
webjdm@archlinux# pacman -Si glibc
Version : 2.8-2
Posted by: webjdm | August 11, 2008 7:49 AM
vadi@ubuntu-laptop:~$ dpkg -l | grep libc6
ii libc6 2.7-10ubuntu3 GNU C Library: Shared libraries
ii libc6-dev 2.7-10ubuntu3 GNU C Library: Development Libraries and Hea
ii libc6-dev-i386 2.7-10ubuntu3 GNU C Library: 32bit development libraries f
ii libc6-i386 2.7-10ubuntu3 GNU C Library: 32bit shared libraries for AM
vadi@ubuntu-laptop:~$
Ubuntu 8.04, 64bit
You probably can use one of the LSB tools (Linux Application Checker) to check flash's compatibility
But be warned that it lies for some of the odd libraries atm
Posted by: Vadim P. | August 11, 2008 4:25 PM
libc.so.6 ver 2.7
lunar-linux
Posted by: Zbigniew L. | August 11, 2008 4:37 PM
Installation fails on Fedora 9, which uses libcurl.so.4 instead of libcurl.so.3:
sudo rpm -Uvh flashplayer10_install_linux_081108.i386.rpm
error: Failed dependencies:
libcurl.so.3 is needed by flash-plugin-10.0.0.569-release.i386
rpm -q libcurl
libcurl-7.18.2-1.fc9.x86_64
libcurl-7.18.2-1.fc9.i386
rpm -ql libcurl
/usr/lib64/libcurl.so.4
/usr/lib64/libcurl.so.4.1.0
/usr/lib/libcurl.so.4
/usr/lib/libcurl.so.4.1.0
Posted by: Andre Costa | August 11, 2008 6:08 PM
OpenSuSE 11.0
glibc-2.8-14.1
Posted by: Maurice | August 11, 2008 7:05 PM
Are you relying on libcurl to provide the SSL support? If so then the crypto library used depends on how libcurl was built. In Fedora it is built against NSS. On other distros I'm assuming they still use OpenSSL.
[ It's complicated. I may need to draw a picture in a separate blog post to explain the various paths. -Mike M. ]
Posted by: Rob Crittenden | August 13, 2008 5:34 AM
PLD/Linux Th
curl-7.18.2-3.i686
nss-3.12-3.i686
glibc-2.8-7.i686
note that curl.so.3 is damn old (last release is 7.15.5, all newer releases have soname curl.so.4)
Posted by: arekm | August 13, 2008 2:02 PM
Running Fedora 9: except for the curl.so.3 issue mentioned above, libflashplayer is linked to libcrypto.so.0.9.8 and libssl.so.0.9.8 which are not present. It seems the so needs to be linked to libcrypto.so.7 and libssl.so.7 that are links to the correct lib*.0.9.8* libraries on this system.
Posted by: peter | August 17, 2008 7:44 PM
dpkg -l | grep libc6
ii libc6 2.8~20080505-0ubuntu6 GNU C Library: Shared libraries
ii libc6-dev 2.8~20080505-0ubuntu6 GNU C Library: Development Libraries and Hea
ii libc6-i686 2.8~20080505-0ubuntu6 GNU C Library: Shared libraries [i686 optimi
Posted by: feiy | August 17, 2008 7:44 PM
The glibc version can be displayed
by using the getconf command:
getconf GNU_LIBC_VERSION
Using getconf -a results in a dump
of all the configuration variables.
Posted by: Tim Fesig | August 18, 2008 12:14 AM
$ /lib/libc.so.6
GNU C Library stable release version 2.8, by Roland McGrath et al.
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
Compiled by GNU CC version 4.3.1.
Compiled on a Linux >>2.6.25-gentoo-r5 Available extensions:
C stubs add-on version 2.1.2
crypt add-on version 2.1 by Michael Glad and others
Gentoo snapshot 20080602
Gentoo patchset 2
GNU Libidn by Simon Josefsson
Native POSIX Threads Library by Ulrich Drepper et al
Support for some architectures added on, not maintained in glibc core.
BIND-8.2.3-T5B
For bug reporting instructions, please see:
.
Posted by: Anonymous | August 18, 2008 11:26 AM
Thanks for the help, but RC2 doesnt work even with this version
2.7-10ubuntu3
:( how can i solve this? Installing FP is becoming as easy as coding c++ for a newb like me
Posted by: jcastelain | August 20, 2008 2:55 AM
I managed to fix this error by making a symbolic link of the libssl3.so.0d and naming it libssl3.so, and same think for the libnss3.so file
sudo ln -s /usr/lib/libssl3.so.0d /usr/lib/libssl3.so
sudo ln -s /usr/lib/libnss3.so.1d /usr/lib/libnss3.so
Worked for me on Ubuntu 8.04, if that can help anyone
Must be "basic" linux knowledge, anyway guess I learned something
Posted by: julien | August 22, 2008 2:21 AM
glibc 2.8
$ ls /lib/libc-*
gentoo 2008.0 amd64
Posted by: Tyler | August 24, 2008 6:16 PM
Hm, did I miss it, or did you not say why exactly you cant/don't want to use OpenSSL?
I use Firefox myself, but I somehow think using OpenSSL would be a more universal way, which would also please guys that use Opera or Konqueror.
Posted by: RQ | August 27, 2008 6:18 AM
I guess this is the first time I'll wait a while until I upgrade.
I don't use a package manager to install Firefox, so I also manually copy over the plugin.
I don't (think I) have NSS installed.
And I read about crash issues which I did experience when testing the beta versions. And apparently that's because of PulseAudio. But that's simply what is used these days.
Now you tell me I actually have to use the package manager to make sure I have all the dependencies? That's not the way I like it.
Also, I really, really hope you'll bring 64bit support soon. Though I don't like Silverlight at all, you have to keep an edge over them. 64bit support would bring you a lot further.
[ Since you're an 'advanced' user, you could try this method: Download the .tar.gz, unpack libflashplayer.so, and run 'ld' against it to ferret out any unresolved library dependencies. -Mike M. ]
Posted by: ArmEagle | October 15, 2008 3:53 AM
/lib/libc.so.6
GNU C Library stable release version 2.8, by Roland McGrath et al
...
Compiled on a Linux >>2.6.26-ARCH ...
I hoping for x86_64 flash also, so good luck with it.
Posted by: partizan | October 15, 2008 10:47 AM
Does it mean that new Flash won't work in Opera? Damn, they made Flash 9 working and now I'll have to wait few more months for Flash 10 & Opera to work? You should cooperate more.
Posted by: Maciek | October 15, 2008 3:19 PM
Sorry, but the plugin and the standalone player crash on Fedora 8 (x86_64 with nspluginwrapper). For the standalone player the kernel message is:
flashplayer[15379]: segfault at 0 ip 0 sp ffec7bbc error 4 in libexpat.so.1.5.2[2b9000+1f000] .
thanks
Posted by: Vincenzo | October 16, 2008 12:53 PM
@partizan: it will work on opera if you install both curl and nss packages
(at least it worked this way for me... using Archlinux)
Posted by: Ed | October 21, 2008 9:01 AM
glibc 2.6.1 - gentoo
I use KDE, please make plugin gtk-free.
Thanks You
Posted by: arlekan | October 27, 2008 1:03 PM