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