Dynamic loading of shared objects using dlopen()

Posted by Andy on Stack Overflow See other posts from Stack Overflow or by Andy
Published on 2010-05-13T13:36:01Z Indexed on 2010/05/13 13:44 UTC
Read the original article Hit count: 245

Filed under:
|
|

Hi,

I'm working on a plain X11 app. By default, my app only requires libX11.so and the standard gcc C and math libs. My app has also support for extensions like Xfixes and Xrender and the ALSA sound system. But this feature shall be made optional, i.e. if Xfixes/Xrender/ALSA is installed on the host system, my app will offer extended functionality. If Xfixes or Xrender or ALSA is not there, my app will still run but some functionality will not be available.

To achieve this behaviour, I'm not linking dynamically against -lXfixes, -lXrender and -lasound. Instead, I'm opening these libraries manually using dlopen(). By doing it this way, I can be sure that my app won't fail in case one of these optional components is not present.

Now to my question: What library names should I use when calling dlopen()? I've seen that these differ from distro to distro. For example, on openSUSE 11, they're named the following:

libXfixes.so libXrender.so libasound.so

On Ubuntu, however, the names have a version number attached, like this:

libXfixes.so.3 libXrender.so.1 libasound.so.2

So trying to open "libXfixes.so" would fail on Ubuntu, although the lib is obviously there. It just has a version number attached. So how should my app handle this? Should I let my app scan /usr/lib/ first manually to see which libs we have and then choose an appropriate one? Or does anyone have a better idea?

Thanks guys,

Andy

© Stack Overflow or respective owner

Related posts about x11

Related posts about linux