diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2013-01-05 09:59:23 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-01-21 10:23:19 -0500 |
commit | cb44e7c8911cc5a9637c774da0081eb9aa8e2810 (patch) | |
tree | 625de102337b05364907bd1d70e2231f458935f5 /src/libudev/libudev.sym | |
parent | 7c9974f31a10154b6c9c68b100dc62482c93a5b1 (diff) |
Make all udev tools dynamically link to libudev.so
Move libudev.so back to $(rootlibdir) for lvm2 support, and have
all udev tools dynamically link to it. The symbol versioning and
hidden-visibility on libudev were modified accordingly: we rebase
against the public LIBUDEV_196 symbol versioning, and marked all
other symbols (which used to be local) as LIBUDEV_internal.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/libudev.sym')
-rw-r--r-- | src/libudev/libudev.sym | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/libudev/libudev.sym b/src/libudev/libudev.sym index df6a1aeddf..261df13ed3 100644 --- a/src/libudev/libudev.sym +++ b/src/libudev/libudev.sym @@ -92,8 +92,6 @@ global: udev_set_userdata; udev_unref; udev_util_encode_string; -local: - *; }; LIBUDEV_189 { @@ -108,3 +106,8 @@ global: udev_hwdb_unref; udev_hwdb_get_properties_list_entry; } LIBUDEV_189; + +LIBUDEV_internal { +global: + *; +} LIBUDEV_196; |