mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
ipa-kdb: add exports file
limit exported symbols only to the ones actually needed by krb5kdc
This commit is contained in:
parent
bac6f2dd13
commit
579a159915
@ -26,7 +26,8 @@ ipadb_la_SOURCES = \
|
|||||||
|
|
||||||
ipadb_la_LDFLAGS = \
|
ipadb_la_LDFLAGS = \
|
||||||
-avoid-version \
|
-avoid-version \
|
||||||
-module
|
-module \
|
||||||
|
-Wl,--version-script,$(srcdir)/ipa_kdb.exports
|
||||||
|
|
||||||
ipadb_la_LIBADD = \
|
ipadb_la_LIBADD = \
|
||||||
$(KRB5_LIBS) \
|
$(KRB5_LIBS) \
|
||||||
@ -34,6 +35,8 @@ ipadb_la_LIBADD = \
|
|||||||
$(LDAP_LIBS) \
|
$(LDAP_LIBS) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
dist_noinst_DATA = ipa_kdb.exports
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
README \
|
README \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
10
daemons/ipa-kdb/ipa_kdb.exports
Normal file
10
daemons/ipa-kdb/ipa_kdb.exports
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
EXPORTED {
|
||||||
|
|
||||||
|
# public symbols
|
||||||
|
global:
|
||||||
|
kdb_function_table;
|
||||||
|
|
||||||
|
# everything else is local
|
||||||
|
local:
|
||||||
|
*;
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user