Browse thread
Style and organization of code
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2007-03-15 (13:38) |
From: | Vu Ngoc San <san.vu-ngoc@u...> |
Subject: | dynamically finding libraries |
I have a program compiled to native code on a linux machine, which uses some more-or-less "standard" library like libpangocairo-1.0.so.0. Since this library is not universally present on all linux boxes, I suspect it might be not so easy for an average user to install it. Moreover, it's very small. Therefore I decide to ship it with my software. The question is: is there a way to decide, at run-time, whether the user already has this library or not ? If so, I can ignore (and even delete) the version I shipped, and use the user's library. If not, I fall back on "my" version. San