1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21 22# 23# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26 27# This file provides exceptions to the usual rules applied to sharable 28# objects by intf_cmp. All strings are Perl regular expressions that 29# are compared to file, version, and symbol names. In addition to the 30# standard Perl syntax, there is one extension: 31# 32# MACH(dir) 33# 34# is expanded into a regular expression that matches the given 35# directory, or a 64-bit subdirectory of the directory with the 36# name of a 64-bit architecture. For example, MACH(lib) will match 37# any of the following: 38# 39# lib 40# lib/amd64 41# lib/sparcv9 42# 43 44 45## libbsm 46# 47# - Removed interfaces: setauclassfile, setaueventfile setauuserfile testac 48# 4686423 undocumented interfaces are not used 49# - Removed interfaces: auditsvc 50# 6638707 implement the removal of auditsvc(2) as noted in PSARC/2002/665 51# 52DELSYM ^(auditsvc|setauclassfile|setaueventfile|setauuserfile|testac)$ \ 53 ^SUNW_(0\.[7-8]|1\.[1-2])$ \ 54 ^MACH(lib)/libbsm\.so\.1$ 55 56 57## libmalloc / libmapmalloc 58# 59# - Objects that provide malloc implementations had functions intentionally 60# removed by: 61# 6464344 malloc library cleanup 62# PSARC 2006/477 malloc library cleanup 63# 64DELSYM ^(_cfree|_mallinfo|_mallopt)$ \ 65 ^SUNW_1\.1$ \ 66 ^usr/MACH(lib)/libmalloc\.so\.1$ 67DELSYM ^(mallinfo|mallopt)$ \ 68 ^SUNW_(0\.7|1\.1)$ \ 69 ^usr/MACH(lib)/libmapmalloc\.so\.1$ 70DELSYM ^(_cfree|_?mallinfo|_?mallopt|_memalign|_valloc)$ \ 71 ^SUNW_1\.1$ \ 72 ^usr/MACH(lib)/watchmalloc\.so\.1$ 73 74 75## libc 76# 77# - In Solaris 10, libc version SUNW_1.23 was incorrectly defined. In a 78# subsequent update, those symbols were properly transfered to SUNW_1.22.4. 79# However, SUNW_1.23 had to remain in place as an empty version to satisfy 80# executables already in the field that were bound to it. 81# 6763000 libc versioning needs a little tlc in Solaris 10 82# The following excludes an empty top version SUNW_1.23 from triggering 83# a flood of "added interface" errors. 84# 85EMPTY_TOPVERSION ^SUNW_1\.23$ ^MACH(lib)/libc\.so\.1$ 86EMPTY_TOPVERSION ^SUNW_1\.23$ ^usr/lib/libc/libc_hwcap\d+\.so\.1$ 87 88 89## libnsl 90# 91# - The function _inet_aton was removed from libnsl.so.1 as part of 92# 6700179 expunge synonyms.h 93# PSARC 2008/309 expunge synonyms.h 94# - Version SUN_1.10 was vacated when inet_aton was backported into SUNW_1.9.1 95# 4944187 getaddrinfo doesn't convert broadcast address if dns 96# isn't in nsswitch.conf 97# 6747055 Solaris 10 apps using recent version of libnsl.so do 98# not run on Nevada 99# 100DELSYM ^_inet_aton$ ^SUNW_1\.9\.1$ ^MACH(lib)/libnsl\.so\.1$ 101EMPTY_TOPVERSION ^SUNW_1\.10$ ^MACH(lib)/libnsl\.so\.1$ 102 103 104## libpapi 105# 106# - FSG_1.0 is a label for the Free Standards Group, version 1 of this library 107# 6346505 print commands should use PAPI for service interaction 108# (LSARC/2003/547) 109# 110EMPTY_TOPVERSION ^FSG_1\.0$ ^usr/lib/libpapi.so.0$ 111 112 113## libresolv2 114# 115# - Version SUNW_2.3 is empty 116# 6689937 libresolv2's mapfile-vers needs updating to line up 117# with S10 changes 118# 119EMPTY_TOPVERSION ^SUNW_2\.3$ ^MACH(lib)/libresolv\.so\.2$ 120 121 122## librtld_db 123# 124# - rd_fix_phdrs() was introduced into Solaris 10 to support branded zones, 125# and was removed as part of: 126# 6599700 librtld_db needs better plugin support 127# 128DELSYM ^rd_fix_phdrs$ ^SUNW_1\.1$ ^MACH(lib)/librtld_db\.so\.1$ 129 130 131## libtecla 132# 133# - gl_completion_action() was renamed pca_path_completions() 134# - gl_set_term_size was moved from tecla_1.4 to tecla_l.5 135# - The version tecla_l.5 (note the "el" (l) instead of a one (1) is 136# intentional. See the libtecla mapfile for details. 137# 138DELSYM ^gl_completion_action$ \ 139 ^tecla_1\.[2-4]$ \ 140 ^usr/MACH(lib)/libtecla\.so\.1$ 141DELSYM ^gl_set_term_size$ \ 142 ^tecla_1\.4$ \ 143 ^usr/MACH(lib)/libtecla\.so\.1$ 144ADDSYM ^pca_path_completions$ \ 145 ^(tecla_1\.[2346]|tecla_l\.5)$ \ 146 ^usr/MACH(lib)/libtecla\.so\.1$ 147