From f28b09f887870c10c8c611beee3c17eaa9ef74f3 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Mon, 9 Jun 2014 14:38:31 +0200 Subject: BUILD: Add version symbol files for public libraries. Version symbol files will help package systems to catch backward compatible changes (newly added functions) into library. The difference between libraries libsss_nss_idmap_test.so and libsss_nss_idmap.so is that the 1st library will not be installed and has more exported functions, which are necessary for mocking with cmocka for test sss_nss_idmap-test. Resolves: https://fedorahosted.org/sssd/ticket/2194 Reviewed-by: Sumit Bose Reviewed-by: Jakub Hrozek --- src/providers/ipa/ipa_hbac.exports | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/providers/ipa/ipa_hbac.exports (limited to 'src/providers/ipa/ipa_hbac.exports') diff --git a/src/providers/ipa/ipa_hbac.exports b/src/providers/ipa/ipa_hbac.exports new file mode 100644 index 000000000..0115084e2 --- /dev/null +++ b/src/providers/ipa/ipa_hbac.exports @@ -0,0 +1,15 @@ +IPA_HBAC_0.0.1 { + + # public functions + global: + + hbac_evaluate; + hbac_result_string; + hbac_error_string; + hbac_free_info; + hbac_rule_is_complete; + + # everything else is local + local: + *; +}; -- cgit