summaryrefslogtreecommitdiffstats
path: root/lib/libutil/Symbols.map (follow)
Commit message (Collapse)AuthorAgeFilesLines
* The ber_* namespace is used by liblber since time immemorial,tb2019-10-241-45/+45
| | | | | | | | | | | | so move our BER API to the unused ober_* prefix to avoid some breakage in ports. Problem diagnosed by jmatthew with ber_free() in samba, but there are many others as pointed out by sthen. tests & ok rob ok sthen (who had an almost identical diff for libutil) "go head hit it" deraadt
* The BER API is currently used by ldap, ldapd, ldapctl, ypldap, snmpd, androb2019-05-111-0/+45
| | | | | | | | | | | | snmpctl. Separate copies of ber.[ch] have existed and been maintained in sync in ldap, ldapd, ypldap and snmpd. This commit moves the BER API into /usr/lib/libutil. All current consumers already link libutil. ldapd and snmpd regress passes, and release builds. With help from tb@ and guenther@. ok deraadt@, tb@
* Make a few internal symbols static and add a Symbols.map version scriptkettenis2017-12-141-0/+92
to control which symbols are exported from the shared library. ok guenther@, deraadt@, jca@