author | Don Pellegrino <don@drexel.edu> | 2009-09-01 23:32:41 (GMT) |
---|---|---|
committer | Don Pellegrino <don@drexel.edu> | 2009-09-01 23:32:41 (GMT) |
commit | 2bec1ac40b97628030e7cb8388dfbdeff58af63a (patch) (unidiff) | |
tree | e93fc79f9a438eb93930bfc5d39cbe149651f3b9 | |
parent | 92054a490c4dce4a70ea58b4d14e205dd515ba12 (diff) | |
download | exp005-2bec1ac40b97628030e7cb8388dfbdeff58af63a.zip exp005-2bec1ac40b97628030e7cb8388dfbdeff58af63a.tar.gz exp005-2bec1ac40b97628030e7cb8388dfbdeff58af63a.tar.bz2 |
Added analysis of the library dependencies for the web browser plugin. These can cause difficulties with deployments that do not provide them.
-rw-r--r-- | src/plugin/README_plugin.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/plugin/README_plugin.txt b/src/plugin/README_plugin.txt index f7e6818..91100ed 100644 --- a/src/plugin/README_plugin.txt +++ b/src/plugin/README_plugin.txt | |||
@@ -7,3 +7,31 @@ technologies used here: | |||
7 | "Shipping a plugin as an extension," Mozilla Developer Center, last | 7 | "Shipping a plugin as an extension," Mozilla Developer Center, last |
8 | modified June 2, 2008, | 8 | modified June 2, 2008, |
9 | https://developer.mozilla.org/en/Shipping_a_plugin_as_an_extension. | 9 | https://developer.mozilla.org/en/Shipping_a_plugin_as_an_extension. |
10 | |||
11 | Analysis of current library dependencies for the web browser plugin: | ||
12 | $ ldd libflumapplugin.so.0.0.0 | ||
13 | |||
14 | Basic Linux Runtime | ||
15 | ------------------- | ||
16 | /lib/ld-linux.so.2 | ||
17 | libgcc_s.so.1 => /lib/libgcc_s.so.1 | ||
18 | libstdc++.so.5 => /usr/lib/libstdc++.so.5 | ||
19 | linux-gate.so.1 => | ||
20 | libc.so.6 => /lib/i686/cmov/libc.so.6 | ||
21 | libcrypt.so.1 => /lib/i686/cmov/libcrypt.so.1 | ||
22 | libdl.so.2 => /lib/i686/cmov/libdl.so.2 | ||
23 | libm.so.6 => /lib/i686/cmov/libm.so.6 | ||
24 | libpthread.so.0 => /lib/i686/cmov/libpthread.so.0 | ||
25 | librt.so.1 => /lib/i686/cmov/librt.so.1 | ||
26 | |||
27 | IBM DB2 Client | ||
28 | -------------- | ||
29 | libdb2.so.1 => /home/db2inst1/sqllib/lib32/libdb2.so.1 | ||
30 | libdb2dascmn.so.1 => /home/db2inst1/sqllib/lib32/libdb2dascmn.so.1 | ||
31 | libdb2g11n.so.1 => /home/db2inst1/sqllib/lib32/libdb2g11n.so.1 | ||
32 | libdb2genreg.so.1 => /home/db2inst1/sqllib/lib32/libdb2genreg.so.1 | ||
33 | libdb2install.so.1 => /home/db2inst1/sqllib/lib32/libdb2install.so.1 | ||
34 | libdb2locale.so.1 => /home/db2inst1/sqllib/lib32/libdb2locale.so.1 | ||
35 | libdb2osse.so.1 => /home/db2inst1/sqllib/lib32/libdb2osse.so.1 | ||
36 | libdb2osse_db2.so.1 => /home/db2inst1/sqllib/lib32/libdb2osse_db2.so.1 | ||
37 | libdb2trcapi.so.1 => /home/db2inst1/sqllib/lib32/libdb2trcapi.so.1 | ||