~davewalker/ubuntu/maverick/asterisk/lp_705014

« back to all changes in this revision

Viewing changes to dlfcn.c

  • Committer: Bazaar Package Importer
  • Author(s): Kilian Krause
  • Date: 2005-03-09 22:09:05 UTC
  • mto: (1.2.1 upstream) (8.2.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050309220905-9afy6hcpw96xbr6j
Tags: upstream-1.0.6
ImportĀ upstreamĀ versionĀ 1.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
 * trying to locate a module. We first look at the values of LD_LIBRARY_PATH
271
271
 * and DYLD_LIBRARY_PATH, and then finally fall back to looking into
272
272
 * /usr/lib and /lib. Since both of the environments variables can contain a
273
 
 * list of colon seperated paths, we simply concat them and the two other paths
 
273
 * list of colon separated paths, we simply concat them and the two other paths
274
274
 * into one big string, which we then can easily parse.
275
275
 * Splitting this string into the actual path list is done by getSearchPath()
276
276
 */