1# 2# $FreeBSD$ 3# 4# This file lists old files (OLD_FILES), libraries (OLD_LIBS, MOVED_LIBS) 5# and directories (OLD_DIRS) which should get removed after an update. 6# Recently removed entries should be listed first (with the date as a 7# comment). OLD_LIBS and MOVED_LIBS should only list dynamic libraries. 8# Static libraries, links to dynamic libraries (lib*.so), and linker scripts 9# should be listed in OLD_FILES. OLD_LIBS and MOVED_LIBS are removed by the 10# delete-old-libs target, whereas OLD_FILES and OLD_DIRS are removed by the 11# delete-old target. This separation allows users to avoid deleting old 12# dynamic libraries still required by existing binaries. 13# 14# MOVED_LIBS should be used instead of OLD_LIBS when a library is moved 15# from usr/lib to lib or vice versa. This avoids removing libraries for 16# alternate ABIs (such as lib32) which store all libraries in a single 17# directory (e.g. usr/lib32). 18# 19# For files listed in OLD_FILES, OLD_LIBS, and MOVED_LIBS, the check-old* 20# and delete-old* targets will also delete associated debug symbols from 21# usr/lib/debug. 22# 23# In case of a complete directory hierarchy the sorting is in depth first 24# order. 25# 26# Files that are installed or removed depending on some build option 27# should be listed in /usr/src/tools/build/mk/OptionalObsoleteFiles.inc 28# instead of in this file. 29# 30# Before you commit changes to this file please check if any entries in 31# tools/build/mk/OptionalObsoleteFiles.inc can be removed. The following 32# command tells which files are listed more than once regardless of some 33# architecture specific conditionals, so you can not blindly trust the 34# output: 35# ( grep '+=' /usr/src/ObsoleteFiles.inc | sort -u ; \ 36# grep '+=' /usr/src/tools/build/mk/OptionalObsoleteFiles.inc | sort -u) | \ 37# sort | uniq -d 38# 39# To find regular duplicates not dependent on optional components, you can 40# also use something that will not give you false positives, e.g.: 41# for t in `make -V TARGETS universe`; do 42# __MAKE_CONF=/dev/null make -f Makefile.inc1 TARGET=$t \ 43# -V OLD_FILES -V OLD_LIBS -V MOVED_LIBS -V OLD_DIRS check-old | \ 44# xargs -n1 | sort | uniq -d; 45# done 46# 47# For optional components, you can use the following to see if some entries 48# in OptionalObsoleteFiles.inc have been obsoleted by ObsoleteFiles.inc 49# for o in tools/build/options/WITH*; do 50# __MAKE_CONF=/dev/null make -f Makefile.inc1 -D${o##*/} \ 51# -V OLD_FILES -V OLD_LIBS -V MOVED_LIBS -V OLD_DIRS check-old | \ 52# xargs -n1 | sort | uniq -d; 53# done 54 55# 20230803: Removal of support for cloning pseudo interfaces from iflib(9) 56OLD_FILES+=usr/include/net/iflib_private.h 57 58# 20230802: Remove a copy of libdtrace.so installed to the wrong path 59OLD_FILES+=usr/lib/libdtrace.so.2 60 61# 20230726: Removal of support for the VTOC8 partitioning scheme 62OLD_FILES+=usr/include/sys/disk/vtoc.h 63OLD_FILES+=usr/include/sys/vtoc.h 64 65# 20230724: Remove unneeded arm headers 66.if ${TARGET_ARCH} == "arm" 67OLD_FILES+=usr/include/machine/atomic-v6.h 68OLD_FILES+=usr/include/machine/cpu-v6.h 69OLD_FILES+=usr/include/machine/pmap-v6.h 70OLD_FILES+=usr/include/machine/pte-v6.h 71OLD_FILES+=usr/include/machine/swi.h 72.endif 73 74# 20230714: gsignal 75OLD_FILES+=usr/share/man/man9/gsignal.9.gz 76 77# 20230626: Only install sys/dev/nvme/nvme.h to /usr/include 78OLD_FILES+=usr/include/dev/nvme/nvme_private.h 79 80# 20230623: OpenSSL 3.0.9 81OLD_LIBS+=lib/libcrypto.so.111 82OLD_FILES+=usr/include/openssl/rand_drbg.h 83OLD_LIBS+=usr/lib/engines/capi.so 84OLD_LIBS+=usr/lib/engines/padlock.so 85OLD_LIBS+=usr/lib/libssl.so.111 86OLD_DIRS+=usr/lib/engines 87.for libcompat in ${_ALL_libcompats} 88OLD_DIRS+=usr/lib${libcompat}/engines 89.endfor 90OLD_FILES+=usr/share/man/man1/list.1 91OLD_FILES+=usr/share/man/man1/openssl-tsget.1 92OLD_FILES+=usr/share/man/man3/ECDH_get_ex_data.3 93OLD_FILES+=usr/share/man/man3/ECDH_get_ex_new_index.3 94OLD_FILES+=usr/share/man/man3/ECDH_set_ex_data.3 95OLD_FILES+=usr/share/man/man3/ERR_GET_FUNC.3 96OLD_FILES+=usr/share/man/man3/EVP_PKEY_CTX_hkdf_mode.3 97OLD_FILES+=usr/share/man/man3/EVP_PKEY_set_alias_type.3 98OLD_FILES+=usr/share/man/man3/EVP_aes.3 99OLD_FILES+=usr/share/man/man3/EVP_aria.3 100OLD_FILES+=usr/share/man/man3/EVP_camellia.3 101OLD_FILES+=usr/share/man/man3/EVP_des.3 102OLD_FILES+=usr/share/man/man3/RAND_DRBG_bytes.3 103OLD_FILES+=usr/share/man/man3/RAND_DRBG_cleanup_entropy_fn.3 104OLD_FILES+=usr/share/man/man3/RAND_DRBG_cleanup_nonce_fn.3 105OLD_FILES+=usr/share/man/man3/RAND_DRBG_free.3 106OLD_FILES+=usr/share/man/man3/RAND_DRBG_generate.3 107OLD_FILES+=usr/share/man/man3/RAND_DRBG_get0_master.3 108OLD_FILES+=usr/share/man/man3/RAND_DRBG_get0_private.3 109OLD_FILES+=usr/share/man/man3/RAND_DRBG_get0_public.3 110OLD_FILES+=usr/share/man/man3/RAND_DRBG_get_entropy_fn.3 111OLD_FILES+=usr/share/man/man3/RAND_DRBG_get_ex_data.3 112OLD_FILES+=usr/share/man/man3/RAND_DRBG_get_ex_new_index.3 113OLD_FILES+=usr/share/man/man3/RAND_DRBG_get_nonce_fn.3 114OLD_FILES+=usr/share/man/man3/RAND_DRBG_instantiate.3 115OLD_FILES+=usr/share/man/man3/RAND_DRBG_new.3 116OLD_FILES+=usr/share/man/man3/RAND_DRBG_reseed.3 117OLD_FILES+=usr/share/man/man3/RAND_DRBG_secure_new.3 118OLD_FILES+=usr/share/man/man3/RAND_DRBG_set.3 119OLD_FILES+=usr/share/man/man3/RAND_DRBG_set_callbacks.3 120OLD_FILES+=usr/share/man/man3/RAND_DRBG_set_defaults.3 121OLD_FILES+=usr/share/man/man3/RAND_DRBG_set_ex_data.3 122OLD_FILES+=usr/share/man/man3/RAND_DRBG_set_reseed_defaults.3 123OLD_FILES+=usr/share/man/man3/RAND_DRBG_set_reseed_interval.3 124OLD_FILES+=usr/share/man/man3/RAND_DRBG_set_reseed_time_interval.3 125OLD_FILES+=usr/share/man/man3/RAND_DRBG_uninstantiate.3 126OLD_FILES+=usr/share/man/man3/RSA_padding_add_SSLv23.3 127OLD_FILES+=usr/share/man/man3/RSA_padding_check_SSLv23.3 128OLD_FILES+=usr/share/man/man7/RAND_DRBG.7 129OLD_FILES+=usr/share/man/man7/scrypt.7 130 131# 20230622: new clang import which bumps version from 15.0.7 to 16.0.1 132OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_builtin_vars.h 133OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_cmath.h 134OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_complex_builtins.h 135OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_device_functions.h 136OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_intrinsics.h 137OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_libdevice_declares.h 138OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_math.h 139OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_math_forward_declares.h 140OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_runtime_wrapper.h 141OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_cuda_texture_intrinsics.h 142OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_hip_cmath.h 143OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_hip_libdevice_declares.h 144OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_hip_math.h 145OLD_FILES+=usr/lib/clang/15.0.7/include/__clang_hip_runtime_wrapper.h 146OLD_FILES+=usr/lib/clang/15.0.7/include/__stddef_max_align_t.h 147OLD_FILES+=usr/lib/clang/15.0.7/include/__wmmintrin_aes.h 148OLD_FILES+=usr/lib/clang/15.0.7/include/__wmmintrin_pclmul.h 149OLD_FILES+=usr/lib/clang/15.0.7/include/adxintrin.h 150OLD_FILES+=usr/lib/clang/15.0.7/include/altivec.h 151OLD_FILES+=usr/lib/clang/15.0.7/include/ammintrin.h 152OLD_FILES+=usr/lib/clang/15.0.7/include/amxintrin.h 153OLD_FILES+=usr/lib/clang/15.0.7/include/arm64intr.h 154OLD_FILES+=usr/lib/clang/15.0.7/include/arm_acle.h 155OLD_FILES+=usr/lib/clang/15.0.7/include/arm_bf16.h 156OLD_FILES+=usr/lib/clang/15.0.7/include/arm_cde.h 157OLD_FILES+=usr/lib/clang/15.0.7/include/arm_cmse.h 158OLD_FILES+=usr/lib/clang/15.0.7/include/arm_fp16.h 159OLD_FILES+=usr/lib/clang/15.0.7/include/arm_mve.h 160OLD_FILES+=usr/lib/clang/15.0.7/include/arm_neon.h 161OLD_FILES+=usr/lib/clang/15.0.7/include/arm_neon_sve_bridge.h 162OLD_FILES+=usr/lib/clang/15.0.7/include/arm_sve.h 163OLD_FILES+=usr/lib/clang/15.0.7/include/armintr.h 164OLD_FILES+=usr/lib/clang/15.0.7/include/avx2intrin.h 165OLD_FILES+=usr/lib/clang/15.0.7/include/avx512bf16intrin.h 166OLD_FILES+=usr/lib/clang/15.0.7/include/avx512bitalgintrin.h 167OLD_FILES+=usr/lib/clang/15.0.7/include/avx512bwintrin.h 168OLD_FILES+=usr/lib/clang/15.0.7/include/avx512cdintrin.h 169OLD_FILES+=usr/lib/clang/15.0.7/include/avx512dqintrin.h 170OLD_FILES+=usr/lib/clang/15.0.7/include/avx512erintrin.h 171OLD_FILES+=usr/lib/clang/15.0.7/include/avx512fintrin.h 172OLD_FILES+=usr/lib/clang/15.0.7/include/avx512fp16intrin.h 173OLD_FILES+=usr/lib/clang/15.0.7/include/avx512ifmaintrin.h 174OLD_FILES+=usr/lib/clang/15.0.7/include/avx512ifmavlintrin.h 175OLD_FILES+=usr/lib/clang/15.0.7/include/avx512pfintrin.h 176OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vbmi2intrin.h 177OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vbmiintrin.h 178OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vbmivlintrin.h 179OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlbf16intrin.h 180OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlbitalgintrin.h 181OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlbwintrin.h 182OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlcdintrin.h 183OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vldqintrin.h 184OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlfp16intrin.h 185OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlintrin.h 186OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlvbmi2intrin.h 187OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlvnniintrin.h 188OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vlvp2intersectintrin.h 189OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vnniintrin.h 190OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vp2intersectintrin.h 191OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vpopcntdqintrin.h 192OLD_FILES+=usr/lib/clang/15.0.7/include/avx512vpopcntdqvlintrin.h 193OLD_FILES+=usr/lib/clang/15.0.7/include/avxintrin.h 194OLD_FILES+=usr/lib/clang/15.0.7/include/avxvnniintrin.h 195OLD_FILES+=usr/lib/clang/15.0.7/include/bmi2intrin.h 196OLD_FILES+=usr/lib/clang/15.0.7/include/bmiintrin.h 197OLD_FILES+=usr/lib/clang/15.0.7/include/builtins.h 198OLD_FILES+=usr/lib/clang/15.0.7/include/cet.h 199OLD_FILES+=usr/lib/clang/15.0.7/include/cetintrin.h 200OLD_FILES+=usr/lib/clang/15.0.7/include/cldemoteintrin.h 201OLD_FILES+=usr/lib/clang/15.0.7/include/clflushoptintrin.h 202OLD_FILES+=usr/lib/clang/15.0.7/include/clwbintrin.h 203OLD_FILES+=usr/lib/clang/15.0.7/include/clzerointrin.h 204OLD_FILES+=usr/lib/clang/15.0.7/include/cpuid.h 205OLD_FILES+=usr/lib/clang/15.0.7/include/crc32intrin.h 206OLD_FILES+=usr/lib/clang/15.0.7/include/cuda_wrappers/algorithm 207OLD_FILES+=usr/lib/clang/15.0.7/include/cuda_wrappers/complex 208OLD_FILES+=usr/lib/clang/15.0.7/include/cuda_wrappers/new 209OLD_DIRS+=usr/lib/clang/15.0.7/include/cuda_wrappers 210OLD_FILES+=usr/lib/clang/15.0.7/include/emmintrin.h 211OLD_FILES+=usr/lib/clang/15.0.7/include/enqcmdintrin.h 212OLD_FILES+=usr/lib/clang/15.0.7/include/f16cintrin.h 213OLD_FILES+=usr/lib/clang/15.0.7/include/float.h 214OLD_FILES+=usr/lib/clang/15.0.7/include/fma4intrin.h 215OLD_FILES+=usr/lib/clang/15.0.7/include/fmaintrin.h 216OLD_FILES+=usr/lib/clang/15.0.7/include/fuzzer/FuzzedDataProvider.h 217OLD_DIRS+=usr/lib/clang/15.0.7/include/fuzzer 218OLD_FILES+=usr/lib/clang/15.0.7/include/fxsrintrin.h 219OLD_FILES+=usr/lib/clang/15.0.7/include/gfniintrin.h 220OLD_FILES+=usr/lib/clang/15.0.7/include/hexagon_circ_brev_intrinsics.h 221OLD_FILES+=usr/lib/clang/15.0.7/include/hexagon_protos.h 222OLD_FILES+=usr/lib/clang/15.0.7/include/hexagon_types.h 223OLD_FILES+=usr/lib/clang/15.0.7/include/hlsl/hlsl_basic_types.h 224OLD_FILES+=usr/lib/clang/15.0.7/include/hlsl/hlsl_intrinsics.h 225OLD_DIRS+=usr/lib/clang/15.0.7/include/hlsl 226OLD_FILES+=usr/lib/clang/15.0.7/include/hlsl.h 227OLD_FILES+=usr/lib/clang/15.0.7/include/hresetintrin.h 228OLD_FILES+=usr/lib/clang/15.0.7/include/htmintrin.h 229OLD_FILES+=usr/lib/clang/15.0.7/include/htmxlintrin.h 230OLD_FILES+=usr/lib/clang/15.0.7/include/hvx_hexagon_protos.h 231OLD_FILES+=usr/lib/clang/15.0.7/include/ia32intrin.h 232OLD_FILES+=usr/lib/clang/15.0.7/include/immintrin.h 233OLD_FILES+=usr/lib/clang/15.0.7/include/intrin.h 234OLD_FILES+=usr/lib/clang/15.0.7/include/inttypes.h 235OLD_FILES+=usr/lib/clang/15.0.7/include/invpcidintrin.h 236OLD_FILES+=usr/lib/clang/15.0.7/include/iso646.h 237OLD_FILES+=usr/lib/clang/15.0.7/include/keylockerintrin.h 238OLD_FILES+=usr/lib/clang/15.0.7/include/limits.h 239OLD_FILES+=usr/lib/clang/15.0.7/include/lwpintrin.h 240OLD_FILES+=usr/lib/clang/15.0.7/include/lzcntintrin.h 241OLD_FILES+=usr/lib/clang/15.0.7/include/mm3dnow.h 242OLD_FILES+=usr/lib/clang/15.0.7/include/mm_malloc.h 243OLD_FILES+=usr/lib/clang/15.0.7/include/mmintrin.h 244OLD_FILES+=usr/lib/clang/15.0.7/include/module.modulemap 245OLD_FILES+=usr/lib/clang/15.0.7/include/movdirintrin.h 246OLD_FILES+=usr/lib/clang/15.0.7/include/msa.h 247OLD_FILES+=usr/lib/clang/15.0.7/include/mwaitxintrin.h 248OLD_FILES+=usr/lib/clang/15.0.7/include/nmmintrin.h 249OLD_FILES+=usr/lib/clang/15.0.7/include/omp-tools.h 250OLD_FILES+=usr/lib/clang/15.0.7/include/omp.h 251OLD_FILES+=usr/lib/clang/15.0.7/include/ompt.h 252OLD_FILES+=usr/lib/clang/15.0.7/include/opencl-c-base.h 253OLD_FILES+=usr/lib/clang/15.0.7/include/opencl-c.h 254OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/__clang_openmp_device_functions.h 255OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/cmath 256OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/complex 257OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/complex.h 258OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/complex_cmath.h 259OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/math.h 260OLD_FILES+=usr/lib/clang/15.0.7/include/openmp_wrappers/new 261OLD_DIRS+=usr/lib/clang/15.0.7/include/openmp_wrappers 262OLD_FILES+=usr/lib/clang/15.0.7/include/pconfigintrin.h 263OLD_FILES+=usr/lib/clang/15.0.7/include/pkuintrin.h 264OLD_FILES+=usr/lib/clang/15.0.7/include/pmmintrin.h 265OLD_FILES+=usr/lib/clang/15.0.7/include/popcntintrin.h 266OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/bmi2intrin.h 267OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/bmiintrin.h 268OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/emmintrin.h 269OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/immintrin.h 270OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/mm_malloc.h 271OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/mmintrin.h 272OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/pmmintrin.h 273OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/smmintrin.h 274OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/tmmintrin.h 275OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/x86gprintrin.h 276OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/x86intrin.h 277OLD_FILES+=usr/lib/clang/15.0.7/include/ppc_wrappers/xmmintrin.h 278OLD_DIRS+=usr/lib/clang/15.0.7/include/ppc_wrappers 279OLD_FILES+=usr/lib/clang/15.0.7/include/prfchwintrin.h 280OLD_FILES+=usr/lib/clang/15.0.7/include/profile/InstrProfData.inc 281OLD_FILES+=usr/lib/clang/15.0.7/include/profile/MemProfData.inc 282OLD_DIRS+=usr/lib/clang/15.0.7/include/profile 283OLD_FILES+=usr/lib/clang/15.0.7/include/ptwriteintrin.h 284OLD_FILES+=usr/lib/clang/15.0.7/include/rdpruintrin.h 285OLD_FILES+=usr/lib/clang/15.0.7/include/rdseedintrin.h 286OLD_FILES+=usr/lib/clang/15.0.7/include/riscv_vector.h 287OLD_FILES+=usr/lib/clang/15.0.7/include/rtmintrin.h 288OLD_FILES+=usr/lib/clang/15.0.7/include/s390intrin.h 289OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/allocator_interface.h 290OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/asan_interface.h 291OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/common_interface_defs.h 292OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/coverage_interface.h 293OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/dfsan_interface.h 294OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/hwasan_interface.h 295OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/linux_syscall_hooks.h 296OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/lsan_interface.h 297OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/memprof_interface.h 298OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/msan_interface.h 299OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/netbsd_syscall_hooks.h 300OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/scudo_interface.h 301OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/tsan_interface.h 302OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/tsan_interface_atomic.h 303OLD_FILES+=usr/lib/clang/15.0.7/include/sanitizer/ubsan_interface.h 304OLD_DIRS+=usr/lib/clang/15.0.7/include/sanitizer 305OLD_FILES+=usr/lib/clang/15.0.7/include/serializeintrin.h 306OLD_FILES+=usr/lib/clang/15.0.7/include/sgxintrin.h 307OLD_FILES+=usr/lib/clang/15.0.7/include/shaintrin.h 308OLD_FILES+=usr/lib/clang/15.0.7/include/smmintrin.h 309OLD_FILES+=usr/lib/clang/15.0.7/include/stdalign.h 310OLD_FILES+=usr/lib/clang/15.0.7/include/stdarg.h 311OLD_FILES+=usr/lib/clang/15.0.7/include/stdatomic.h 312OLD_FILES+=usr/lib/clang/15.0.7/include/stdbool.h 313OLD_FILES+=usr/lib/clang/15.0.7/include/stddef.h 314OLD_FILES+=usr/lib/clang/15.0.7/include/stdint.h 315OLD_FILES+=usr/lib/clang/15.0.7/include/stdnoreturn.h 316OLD_FILES+=usr/lib/clang/15.0.7/include/tbmintrin.h 317OLD_FILES+=usr/lib/clang/15.0.7/include/tgmath.h 318OLD_FILES+=usr/lib/clang/15.0.7/include/tmmintrin.h 319OLD_FILES+=usr/lib/clang/15.0.7/include/tsxldtrkintrin.h 320OLD_FILES+=usr/lib/clang/15.0.7/include/uintrintrin.h 321OLD_FILES+=usr/lib/clang/15.0.7/include/unwind.h 322OLD_FILES+=usr/lib/clang/15.0.7/include/vadefs.h 323OLD_FILES+=usr/lib/clang/15.0.7/include/vaesintrin.h 324OLD_FILES+=usr/lib/clang/15.0.7/include/varargs.h 325OLD_FILES+=usr/lib/clang/15.0.7/include/vecintrin.h 326OLD_FILES+=usr/lib/clang/15.0.7/include/velintrin.h 327OLD_FILES+=usr/lib/clang/15.0.7/include/velintrin_approx.h 328OLD_FILES+=usr/lib/clang/15.0.7/include/velintrin_gen.h 329OLD_FILES+=usr/lib/clang/15.0.7/include/vpclmulqdqintrin.h 330OLD_FILES+=usr/lib/clang/15.0.7/include/waitpkgintrin.h 331OLD_FILES+=usr/lib/clang/15.0.7/include/wasm_simd128.h 332OLD_FILES+=usr/lib/clang/15.0.7/include/wbnoinvdintrin.h 333OLD_FILES+=usr/lib/clang/15.0.7/include/wmmintrin.h 334OLD_FILES+=usr/lib/clang/15.0.7/include/x86gprintrin.h 335OLD_FILES+=usr/lib/clang/15.0.7/include/x86intrin.h 336OLD_FILES+=usr/lib/clang/15.0.7/include/xmmintrin.h 337OLD_FILES+=usr/lib/clang/15.0.7/include/xopintrin.h 338OLD_FILES+=usr/lib/clang/15.0.7/include/xray/xray_interface.h 339OLD_FILES+=usr/lib/clang/15.0.7/include/xray/xray_log_interface.h 340OLD_FILES+=usr/lib/clang/15.0.7/include/xray/xray_records.h 341OLD_DIRS+=usr/lib/clang/15.0.7/include/xray 342OLD_FILES+=usr/lib/clang/15.0.7/include/xsavecintrin.h 343OLD_FILES+=usr/lib/clang/15.0.7/include/xsaveintrin.h 344OLD_FILES+=usr/lib/clang/15.0.7/include/xsaveoptintrin.h 345OLD_FILES+=usr/lib/clang/15.0.7/include/xsavesintrin.h 346OLD_FILES+=usr/lib/clang/15.0.7/include/xtestintrin.h 347OLD_DIRS+=usr/lib/clang/15.0.7/include 348OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-aarch64.a 349OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-aarch64.so 350OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-arm.a 351OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-arm.so 352OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-armhf.a 353OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-armhf.so 354OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-i386.a 355OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-i386.so 356OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 357OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-preinit-arm.a 358OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-preinit-armhf.a 359OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-preinit-i386.a 360OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 361OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-x86_64.a 362OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan-x86_64.so 363OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 364OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_cxx-arm.a 365OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_cxx-armhf.a 366OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_cxx-i386.a 367OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 368OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_static-i386.a 369OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.asan_static-x86_64.a 370OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi-aarch64.a 371OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi-arm.a 372OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi-armhf.a 373OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi-i386.a 374OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi-x86_64.a 375OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 376OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi_diag-arm.a 377OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi_diag-armhf.a 378OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi_diag-i386.a 379OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 380OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.dd-aarch64.a 381OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.dd-x86_64.a 382OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.fuzzer-aarch64.a 383OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.fuzzer-x86_64.a 384OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.fuzzer_interceptors-x86_64.a 385OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 386OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 387OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.msan-aarch64.a 388OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.msan-x86_64.a 389OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 390OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 391OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-aarch64.a 392OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-arm.a 393OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-armhf.a 394OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-i386.a 395OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-powerpc.a 396OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-powerpc64.a 397OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-powerpc64le.a 398OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.profile-x86_64.a 399OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.safestack-aarch64.a 400OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.safestack-i386.a 401OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.safestack-x86_64.a 402OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats-aarch64.a 403OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats-arm.a 404OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats-armhf.a 405OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats-i386.a 406OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats-x86_64.a 407OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats_client-aarch64.a 408OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats_client-arm.a 409OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats_client-armhf.a 410OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats_client-i386.a 411OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.stats_client-x86_64.a 412OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.tsan-aarch64.a 413OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.tsan-x86_64.a 414OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 415OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 416OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 417OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 418OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 419OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 420OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 421OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 422OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 423OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 424OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 425OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 426OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 427OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 428OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 429OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 430OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 431OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-aarch64.a 432OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-arm.a 433OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-armhf.a 434OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-basic-aarch64.a 435OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-basic-arm.a 436OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-basic-armhf.a 437OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-basic-x86_64.a 438OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 439OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-fdr-arm.a 440OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-fdr-armhf.a 441OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 442OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 443OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-profiling-arm.a 444OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-profiling-armhf.a 445OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 446OLD_FILES+=usr/lib/clang/15.0.7/lib/freebsd/libclang_rt.xray-x86_64.a 447OLD_DIRS+=usr/lib/clang/15.0.7/lib/freebsd 448OLD_DIRS+=usr/lib/clang/15.0.7/lib 449OLD_FILES+=usr/lib/clang/15.0.7/share/asan_ignorelist.txt 450OLD_FILES+=usr/lib/clang/15.0.7/share/cfi_ignorelist.txt 451OLD_FILES+=usr/lib/clang/15.0.7/share/msan_ignorelist.txt 452OLD_DIRS+=usr/lib/clang/15.0.7/share 453OLD_DIRS+=usr/lib/clang/15.0.7 454 455# 20230622: new libc++ import which bumps version from 15.0.7 to 16.0.1 456OLD_FILES+=usr/include/c++/v1/__bits 457OLD_FILES+=usr/include/c++/v1/__tuple 458OLD_FILES+=usr/include/c++/v1/__utility/transaction.h 459 460# 20230614: caroot bundle updated 461OLD_FILES+=usr/share/certs/trusted/Cybertrust_Global_Root.pem 462OLD_FILES+=usr/share/certs/trusted/DST_Root_CA_X3.pem 463OLD_FILES+=usr/share/certs/trusted/GlobalSign_Root_CA_-_R2.pem 464OLD_FILES+=usr/share/certs/trusted/Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem 465OLD_FILES+=usr/share/certs/trusted/Network_Solutions_Certificate_Authority.pem 466OLD_FILES+=usr/share/certs/trusted/Staat_der_Nederlanden_EV_Root_CA.pem 467OLD_FILES+=usr/share/certs/trusted/TrustCor_ECA-1.pem 468OLD_FILES+=usr/share/certs/trusted/TrustCor_RootCert_CA-1.pem 469OLD_FILES+=usr/share/certs/trusted/TrustCor_RootCert_CA-2.pem 470 471# 20230505: md5 tests are now self-contained 472OLD_FILES+=usr/tests/sbin/md5/1.inp 473OLD_FILES+=usr/tests/sbin/md5/1.sha512-p.chk 474OLD_FILES+=usr/tests/sbin/md5/1.sha512sum-p.chk 475OLD_FILES+=usr/tests/sbin/md5/2.inp 476OLD_FILES+=usr/tests/sbin/md5/2.sha512-p.chk 477OLD_FILES+=usr/tests/sbin/md5/2.sha512sum-p.chk 478OLD_FILES+=usr/tests/sbin/md5/3.inp 479OLD_FILES+=usr/tests/sbin/md5/3.sha512-p.chk 480OLD_FILES+=usr/tests/sbin/md5/3.sha512sum-p.chk 481OLD_FILES+=usr/tests/sbin/md5/4.inp 482OLD_FILES+=usr/tests/sbin/md5/4.sha512-p.chk 483OLD_FILES+=usr/tests/sbin/md5/4.sha512sum-p.chk 484OLD_FILES+=usr/tests/sbin/md5/5.inp 485OLD_FILES+=usr/tests/sbin/md5/5.sha512-p.chk 486OLD_FILES+=usr/tests/sbin/md5/5.sha512sum-p.chk 487OLD_FILES+=usr/tests/sbin/md5/6.inp 488OLD_FILES+=usr/tests/sbin/md5/6.sha512-p.chk 489OLD_FILES+=usr/tests/sbin/md5/6.sha512sum-p.chk 490OLD_FILES+=usr/tests/sbin/md5/7.inp 491OLD_FILES+=usr/tests/sbin/md5/7.sha512-p.chk 492OLD_FILES+=usr/tests/sbin/md5/7.sha512sum-p.chk 493OLD_FILES+=usr/tests/sbin/md5/8.inp 494OLD_FILES+=usr/tests/sbin/md5/8.sha512-p.chk 495OLD_FILES+=usr/tests/sbin/md5/8.sha512sum-p.chk 496OLD_FILES+=usr/tests/sbin/md5/algorithms.txt 497OLD_FILES+=usr/tests/sbin/md5/bsd-c-test 498OLD_FILES+=usr/tests/sbin/md5/bsd-p-test 499OLD_FILES+=usr/tests/sbin/md5/bsd-s-test 500OLD_FILES+=usr/tests/sbin/md5/coreutils-c-test 501OLD_FILES+=usr/tests/sbin/md5/md5.digest 502OLD_FILES+=usr/tests/sbin/md5/md5sum.digest 503OLD_FILES+=usr/tests/sbin/md5/rmd160.digest 504OLD_FILES+=usr/tests/sbin/md5/rmd160sum.digest 505OLD_FILES+=usr/tests/sbin/md5/self-test 506OLD_FILES+=usr/tests/sbin/md5/self-test.md5.chk 507OLD_FILES+=usr/tests/sbin/md5/self-test.rmd160.chk 508OLD_FILES+=usr/tests/sbin/md5/self-test.sh_inp 509OLD_FILES+=usr/tests/sbin/md5/self-test.sha1.chk 510OLD_FILES+=usr/tests/sbin/md5/self-test.sha224.chk 511OLD_FILES+=usr/tests/sbin/md5/self-test.sha256.chk 512OLD_FILES+=usr/tests/sbin/md5/self-test.sha384.chk 513OLD_FILES+=usr/tests/sbin/md5/self-test.sha512.chk 514OLD_FILES+=usr/tests/sbin/md5/self-test.sha512t224.chk 515OLD_FILES+=usr/tests/sbin/md5/self-test.sha512t256.chk 516OLD_FILES+=usr/tests/sbin/md5/self-test.skein1024.chk 517OLD_FILES+=usr/tests/sbin/md5/self-test.skein256.chk 518OLD_FILES+=usr/tests/sbin/md5/self-test.skein512.chk 519OLD_FILES+=usr/tests/sbin/md5/sha1.digest 520OLD_FILES+=usr/tests/sbin/md5/sha1sum.digest 521OLD_FILES+=usr/tests/sbin/md5/sha224.digest 522OLD_FILES+=usr/tests/sbin/md5/sha224sum.digest 523OLD_FILES+=usr/tests/sbin/md5/sha256.digest 524OLD_FILES+=usr/tests/sbin/md5/sha256sum.digest 525OLD_FILES+=usr/tests/sbin/md5/sha384.digest 526OLD_FILES+=usr/tests/sbin/md5/sha384sum.digest 527OLD_FILES+=usr/tests/sbin/md5/sha512.digest 528OLD_FILES+=usr/tests/sbin/md5/sha512sum.digest 529OLD_FILES+=usr/tests/sbin/md5/sha512t224.digest 530OLD_FILES+=usr/tests/sbin/md5/sha512t224sum.digest 531OLD_FILES+=usr/tests/sbin/md5/sha512t256.digest 532OLD_FILES+=usr/tests/sbin/md5/sha512t256sum.digest 533OLD_FILES+=usr/tests/sbin/md5/skein1024.digest 534OLD_FILES+=usr/tests/sbin/md5/skein1024sum.digest 535OLD_FILES+=usr/tests/sbin/md5/skein256.digest 536OLD_FILES+=usr/tests/sbin/md5/skein256sum.digest 537OLD_FILES+=usr/tests/sbin/md5/skein512.digest 538OLD_FILES+=usr/tests/sbin/md5/skein512sum.digest 539OLD_FILES+=usr/tests/sbin/md5/sum_a.in 540OLD_FILES+=usr/tests/sbin/md5/sum_b.in 541OLD_FILES+=usr/tests/sbin/md5/sum_c.in 542OLD_FILES+=usr/tests/sbin/md5/sum_sums.digest 543 544# 20230420: portsnap.8 removed 545OLD_FILES+=etc/portsnap.conf 546OLD_FILES+=usr/libexec/make_index 547OLD_FILES+=usr/sbin/portsnap 548OLD_FILES+=usr/share/examples/etc/portsnap.conf 549OLD_FILES+=usr/share/man/man8/portsnap.8.gz 550 551# 20230331: libpcap updated to 1.10.3 552OLD_FILES+=usr/include/fmtutils.h 553 554# 20230329: libcasper libraries moved to /lib 555MOVED_LIBS+=lib/casper/libcap_dns.so.2 556MOVED_LIBS+=lib/casper/libcap_fileargs.so.1 557MOVED_LIBS+=lib/casper/libcap_grp.so.1 558MOVED_LIBS+=lib/casper/libcap_net.so.1 559MOVED_LIBS+=lib/casper/libcap_netdb.so.1 560MOVED_LIBS+=lib/casper/libcap_pwd.so.1 561MOVED_LIBS+=lib/casper/libcap_sysctl.so.1 562MOVED_LIBS+=lib/casper/libcap_sysctl.so.2 563MOVED_LIBS+=lib/casper/libcap_syslog.so.1 564OLD_DIRS+=lib/casper 565 566# 20230324: libvmmapi shlib version bumped to 6 567OLD_LIBS+=usr/lib/libvmmapi.so.5 568 569# 20230323: tzdata 2023a imported 570OLD_FILES+=usr/share/zoneinfo/posixrules 571 572# 20230320: vcount.9 removed 573OLD_FILES+=usr/share/man/man9/count_dev.9.gz 574OLD_FILES+=usr/share/man/man9/vcount.9.gz 575 576# 20230320: case-sensitive conflicts removed 577OLD_FILES+=usr/tests/bin/pkill/pgrep-F_test 578OLD_FILES+=usr/tests/bin/pkill/pgrep-LF_test 579OLD_FILES+=usr/tests/bin/pkill/pgrep-P_test 580OLD_FILES+=usr/tests/bin/pkill/pgrep-U_test 581OLD_FILES+=usr/tests/bin/pkill/pkill-F_test 582OLD_FILES+=usr/tests/bin/pkill/pkill-LF_test 583OLD_FILES+=usr/tests/bin/pkill/pkill-P_test 584OLD_FILES+=usr/tests/bin/pkill/pkill-U_test 585 586# 20230309: remove remaining ATM support 587OLD_FILES+=usr/bin/sscop 588OLD_FILES+=usr/include/netgraph/atm/ng_ccatm.h 589OLD_FILES+=usr/include/netgraph/atm/ng_sscfu.h 590OLD_FILES+=usr/include/netgraph/atm/ng_sscop.h 591OLD_FILES+=usr/include/netgraph/atm/ng_uni.h 592OLD_FILES+=usr/include/netgraph/atm/ngatmbase.h 593OLD_FILES+=usr/include/netgraph/ng_atmllc.h 594OLD_FILES+=usr/include/netnatm/addr.h 595OLD_FILES+=usr/include/netnatm/api/atmapi.h 596OLD_FILES+=usr/include/netnatm/api/ccatm.h 597OLD_FILES+=usr/include/netnatm/api/unisap.h 598OLD_DIRS+=usr/include/netnatm/api 599OLD_FILES+=usr/include/netnatm/msg/uni_config.h 600OLD_FILES+=usr/include/netnatm/msg/uni_hdr.h 601OLD_FILES+=usr/include/netnatm/msg/uni_ie.h 602OLD_FILES+=usr/include/netnatm/msg/uni_msg.h 603OLD_FILES+=usr/include/netnatm/msg/unimsglib.h 604OLD_FILES+=usr/include/netnatm/msg/uniprint.h 605OLD_FILES+=usr/include/netnatm/msg/unistruct.h 606OLD_DIRS+=usr/include/netnatm/msg 607OLD_FILES+=usr/include/netnatm/saal/sscfu.h 608OLD_FILES+=usr/include/netnatm/saal/sscfudef.h 609OLD_FILES+=usr/include/netnatm/saal/sscop.h 610OLD_FILES+=usr/include/netnatm/saal/sscopdef.h 611OLD_DIRS+=usr/include/netnatm/saal 612OLD_FILES+=usr/include/netnatm/sig/uni.h 613OLD_FILES+=usr/include/netnatm/sig/unidef.h 614OLD_FILES+=usr/include/netnatm/sig/unisig.h 615OLD_DIRS+=usr/include/netnatm/sig 616OLD_FILES+=usr/include/netnatm/unimsg.h 617OLD_DIRS+=usr/include/netnatm 618OLD_FILES+=usr/lib/libngatm.a 619OLD_FILES+=usr/lib/libngatm.so 620OLD_LIBS+=usr/lib/libngatm.so.4 621OLD_FILES+=usr/lib/libngatm_p.a 622OLD_FILES+=usr/share/man/man1/sscop.1.gz 623OLD_FILES+=usr/share/man/man3/libngatm.3.gz 624OLD_FILES+=usr/share/man/man3/uniaddr.3.gz 625OLD_FILES+=usr/share/man/man3/unifunc.3.gz 626OLD_FILES+=usr/share/man/man3/unimsg.3.gz 627OLD_FILES+=usr/share/man/man3/unisap.3.gz 628OLD_FILES+=usr/share/man/man3/unistruct.3.gz 629OLD_FILES+=usr/share/man/man4/ng_atmllc.4.gz 630OLD_FILES+=usr/share/man/man4/ng_ccatm.4.gz 631OLD_FILES+=usr/share/man/man4/ng_sscfu.4.gz 632OLD_FILES+=usr/share/man/man4/ng_sscop.4.gz 633OLD_FILES+=usr/share/man/man4/ng_uni.4.gz 634OLD_FILES+=usr/share/man/man4/ngatmbase.4.gz 635 636# 20230308: machine-id merged into hostid_save 637OLD_FILES+=etc/rc.d/machine-id 638 639# 20230306: remove tzsetwall(3) 640OLD_FILES+=usr/share/man/man3/tzsetwall.3.gz 641 642# 20230208: new clang import which bumps version from 14.0.5 to 15.0.7 643OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/algorithm 644OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/complex 645OLD_FILES+=usr/lib/clang/14.0.5/include/cuda_wrappers/new 646OLD_DIRS+=usr/lib/clang/14.0.5/include/cuda_wrappers 647OLD_FILES+=usr/lib/clang/14.0.5/include/fuzzer/FuzzedDataProvider.h 648OLD_DIRS+=usr/lib/clang/14.0.5/include/fuzzer 649OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/__clang_openmp_device_functions.h 650OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/cmath 651OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/complex 652OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/complex.h 653OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/complex_cmath.h 654OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/math.h 655OLD_FILES+=usr/lib/clang/14.0.5/include/openmp_wrappers/new 656OLD_DIRS+=usr/lib/clang/14.0.5/include/openmp_wrappers 657OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/emmintrin.h 658OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/mm_malloc.h 659OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/mmintrin.h 660OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/pmmintrin.h 661OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/smmintrin.h 662OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/tmmintrin.h 663OLD_FILES+=usr/lib/clang/14.0.5/include/ppc_wrappers/xmmintrin.h 664OLD_DIRS+=usr/lib/clang/14.0.5/include/ppc_wrappers 665OLD_FILES+=usr/lib/clang/14.0.5/include/profile/InstrProfData.inc 666OLD_FILES+=usr/lib/clang/14.0.5/include/profile/MemProfData.inc 667OLD_DIRS+=usr/lib/clang/14.0.5/include/profile 668OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/allocator_interface.h 669OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/asan_interface.h 670OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/common_interface_defs.h 671OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/coverage_interface.h 672OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/dfsan_interface.h 673OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/hwasan_interface.h 674OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/linux_syscall_hooks.h 675OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/lsan_interface.h 676OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/memprof_interface.h 677OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/msan_interface.h 678OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/netbsd_syscall_hooks.h 679OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/scudo_interface.h 680OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/tsan_interface.h 681OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/tsan_interface_atomic.h 682OLD_FILES+=usr/lib/clang/14.0.5/include/sanitizer/ubsan_interface.h 683OLD_DIRS+=usr/lib/clang/14.0.5/include/sanitizer 684OLD_FILES+=usr/lib/clang/14.0.5/include/xray/xray_interface.h 685OLD_FILES+=usr/lib/clang/14.0.5/include/xray/xray_log_interface.h 686OLD_FILES+=usr/lib/clang/14.0.5/include/xray/xray_records.h 687OLD_DIRS+=usr/lib/clang/14.0.5/include/xray 688OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_builtin_vars.h 689OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_cmath.h 690OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_complex_builtins.h 691OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_device_functions.h 692OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_intrinsics.h 693OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_libdevice_declares.h 694OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_math.h 695OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_math_forward_declares.h 696OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_runtime_wrapper.h 697OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_cuda_texture_intrinsics.h 698OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_hip_cmath.h 699OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_hip_libdevice_declares.h 700OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_hip_math.h 701OLD_FILES+=usr/lib/clang/14.0.5/include/__clang_hip_runtime_wrapper.h 702OLD_FILES+=usr/lib/clang/14.0.5/include/__stddef_max_align_t.h 703OLD_FILES+=usr/lib/clang/14.0.5/include/__wmmintrin_aes.h 704OLD_FILES+=usr/lib/clang/14.0.5/include/__wmmintrin_pclmul.h 705OLD_FILES+=usr/lib/clang/14.0.5/include/adxintrin.h 706OLD_FILES+=usr/lib/clang/14.0.5/include/altivec.h 707OLD_FILES+=usr/lib/clang/14.0.5/include/ammintrin.h 708OLD_FILES+=usr/lib/clang/14.0.5/include/amxintrin.h 709OLD_FILES+=usr/lib/clang/14.0.5/include/arm64intr.h 710OLD_FILES+=usr/lib/clang/14.0.5/include/arm_acle.h 711OLD_FILES+=usr/lib/clang/14.0.5/include/arm_bf16.h 712OLD_FILES+=usr/lib/clang/14.0.5/include/arm_cde.h 713OLD_FILES+=usr/lib/clang/14.0.5/include/arm_cmse.h 714OLD_FILES+=usr/lib/clang/14.0.5/include/arm_fp16.h 715OLD_FILES+=usr/lib/clang/14.0.5/include/arm_mve.h 716OLD_FILES+=usr/lib/clang/14.0.5/include/arm_neon.h 717OLD_FILES+=usr/lib/clang/14.0.5/include/arm_neon_sve_bridge.h 718OLD_FILES+=usr/lib/clang/14.0.5/include/arm_sve.h 719OLD_FILES+=usr/lib/clang/14.0.5/include/armintr.h 720OLD_FILES+=usr/lib/clang/14.0.5/include/avx2intrin.h 721OLD_FILES+=usr/lib/clang/14.0.5/include/avx512bf16intrin.h 722OLD_FILES+=usr/lib/clang/14.0.5/include/avx512bitalgintrin.h 723OLD_FILES+=usr/lib/clang/14.0.5/include/avx512bwintrin.h 724OLD_FILES+=usr/lib/clang/14.0.5/include/avx512cdintrin.h 725OLD_FILES+=usr/lib/clang/14.0.5/include/avx512dqintrin.h 726OLD_FILES+=usr/lib/clang/14.0.5/include/avx512erintrin.h 727OLD_FILES+=usr/lib/clang/14.0.5/include/avx512fintrin.h 728OLD_FILES+=usr/lib/clang/14.0.5/include/avx512fp16intrin.h 729OLD_FILES+=usr/lib/clang/14.0.5/include/avx512ifmaintrin.h 730OLD_FILES+=usr/lib/clang/14.0.5/include/avx512ifmavlintrin.h 731OLD_FILES+=usr/lib/clang/14.0.5/include/avx512pfintrin.h 732OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vbmi2intrin.h 733OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vbmiintrin.h 734OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vbmivlintrin.h 735OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlbf16intrin.h 736OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlbitalgintrin.h 737OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlbwintrin.h 738OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlcdintrin.h 739OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vldqintrin.h 740OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlfp16intrin.h 741OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlintrin.h 742OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlvbmi2intrin.h 743OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlvnniintrin.h 744OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vlvp2intersectintrin.h 745OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vnniintrin.h 746OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vp2intersectintrin.h 747OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vpopcntdqintrin.h 748OLD_FILES+=usr/lib/clang/14.0.5/include/avx512vpopcntdqvlintrin.h 749OLD_FILES+=usr/lib/clang/14.0.5/include/avxintrin.h 750OLD_FILES+=usr/lib/clang/14.0.5/include/avxvnniintrin.h 751OLD_FILES+=usr/lib/clang/14.0.5/include/bmi2intrin.h 752OLD_FILES+=usr/lib/clang/14.0.5/include/bmiintrin.h 753OLD_FILES+=usr/lib/clang/14.0.5/include/builtins.h 754OLD_FILES+=usr/lib/clang/14.0.5/include/cet.h 755OLD_FILES+=usr/lib/clang/14.0.5/include/cetintrin.h 756OLD_FILES+=usr/lib/clang/14.0.5/include/cldemoteintrin.h 757OLD_FILES+=usr/lib/clang/14.0.5/include/clflushoptintrin.h 758OLD_FILES+=usr/lib/clang/14.0.5/include/clwbintrin.h 759OLD_FILES+=usr/lib/clang/14.0.5/include/clzerointrin.h 760OLD_FILES+=usr/lib/clang/14.0.5/include/cpuid.h 761OLD_FILES+=usr/lib/clang/14.0.5/include/crc32intrin.h 762OLD_FILES+=usr/lib/clang/14.0.5/include/emmintrin.h 763OLD_FILES+=usr/lib/clang/14.0.5/include/enqcmdintrin.h 764OLD_FILES+=usr/lib/clang/14.0.5/include/f16cintrin.h 765OLD_FILES+=usr/lib/clang/14.0.5/include/float.h 766OLD_FILES+=usr/lib/clang/14.0.5/include/fma4intrin.h 767OLD_FILES+=usr/lib/clang/14.0.5/include/fmaintrin.h 768OLD_FILES+=usr/lib/clang/14.0.5/include/fxsrintrin.h 769OLD_FILES+=usr/lib/clang/14.0.5/include/gfniintrin.h 770OLD_FILES+=usr/lib/clang/14.0.5/include/hexagon_circ_brev_intrinsics.h 771OLD_FILES+=usr/lib/clang/14.0.5/include/hexagon_protos.h 772OLD_FILES+=usr/lib/clang/14.0.5/include/hexagon_types.h 773OLD_FILES+=usr/lib/clang/14.0.5/include/hresetintrin.h 774OLD_FILES+=usr/lib/clang/14.0.5/include/htmintrin.h 775OLD_FILES+=usr/lib/clang/14.0.5/include/htmxlintrin.h 776OLD_FILES+=usr/lib/clang/14.0.5/include/hvx_hexagon_protos.h 777OLD_FILES+=usr/lib/clang/14.0.5/include/ia32intrin.h 778OLD_FILES+=usr/lib/clang/14.0.5/include/immintrin.h 779OLD_FILES+=usr/lib/clang/14.0.5/include/intrin.h 780OLD_FILES+=usr/lib/clang/14.0.5/include/inttypes.h 781OLD_FILES+=usr/lib/clang/14.0.5/include/invpcidintrin.h 782OLD_FILES+=usr/lib/clang/14.0.5/include/iso646.h 783OLD_FILES+=usr/lib/clang/14.0.5/include/keylockerintrin.h 784OLD_FILES+=usr/lib/clang/14.0.5/include/limits.h 785OLD_FILES+=usr/lib/clang/14.0.5/include/lwpintrin.h 786OLD_FILES+=usr/lib/clang/14.0.5/include/lzcntintrin.h 787OLD_FILES+=usr/lib/clang/14.0.5/include/mm3dnow.h 788OLD_FILES+=usr/lib/clang/14.0.5/include/mm_malloc.h 789OLD_FILES+=usr/lib/clang/14.0.5/include/mmintrin.h 790OLD_FILES+=usr/lib/clang/14.0.5/include/module.modulemap 791OLD_FILES+=usr/lib/clang/14.0.5/include/movdirintrin.h 792OLD_FILES+=usr/lib/clang/14.0.5/include/msa.h 793OLD_FILES+=usr/lib/clang/14.0.5/include/mwaitxintrin.h 794OLD_FILES+=usr/lib/clang/14.0.5/include/nmmintrin.h 795OLD_FILES+=usr/lib/clang/14.0.5/include/omp-tools.h 796OLD_FILES+=usr/lib/clang/14.0.5/include/omp.h 797OLD_FILES+=usr/lib/clang/14.0.5/include/ompt.h 798OLD_FILES+=usr/lib/clang/14.0.5/include/opencl-c-base.h 799OLD_FILES+=usr/lib/clang/14.0.5/include/opencl-c.h 800OLD_FILES+=usr/lib/clang/14.0.5/include/pconfigintrin.h 801OLD_FILES+=usr/lib/clang/14.0.5/include/pkuintrin.h 802OLD_FILES+=usr/lib/clang/14.0.5/include/pmmintrin.h 803OLD_FILES+=usr/lib/clang/14.0.5/include/popcntintrin.h 804OLD_FILES+=usr/lib/clang/14.0.5/include/prfchwintrin.h 805OLD_FILES+=usr/lib/clang/14.0.5/include/ptwriteintrin.h 806OLD_FILES+=usr/lib/clang/14.0.5/include/rdseedintrin.h 807OLD_FILES+=usr/lib/clang/14.0.5/include/riscv_vector.h 808OLD_FILES+=usr/lib/clang/14.0.5/include/rtmintrin.h 809OLD_FILES+=usr/lib/clang/14.0.5/include/s390intrin.h 810OLD_FILES+=usr/lib/clang/14.0.5/include/serializeintrin.h 811OLD_FILES+=usr/lib/clang/14.0.5/include/sgxintrin.h 812OLD_FILES+=usr/lib/clang/14.0.5/include/shaintrin.h 813OLD_FILES+=usr/lib/clang/14.0.5/include/smmintrin.h 814OLD_FILES+=usr/lib/clang/14.0.5/include/stdalign.h 815OLD_FILES+=usr/lib/clang/14.0.5/include/stdarg.h 816OLD_FILES+=usr/lib/clang/14.0.5/include/stdatomic.h 817OLD_FILES+=usr/lib/clang/14.0.5/include/stdbool.h 818OLD_FILES+=usr/lib/clang/14.0.5/include/stddef.h 819OLD_FILES+=usr/lib/clang/14.0.5/include/stdint.h 820OLD_FILES+=usr/lib/clang/14.0.5/include/stdnoreturn.h 821OLD_FILES+=usr/lib/clang/14.0.5/include/tbmintrin.h 822OLD_FILES+=usr/lib/clang/14.0.5/include/tgmath.h 823OLD_FILES+=usr/lib/clang/14.0.5/include/tmmintrin.h 824OLD_FILES+=usr/lib/clang/14.0.5/include/tsxldtrkintrin.h 825OLD_FILES+=usr/lib/clang/14.0.5/include/uintrintrin.h 826OLD_FILES+=usr/lib/clang/14.0.5/include/unwind.h 827OLD_FILES+=usr/lib/clang/14.0.5/include/vadefs.h 828OLD_FILES+=usr/lib/clang/14.0.5/include/vaesintrin.h 829OLD_FILES+=usr/lib/clang/14.0.5/include/varargs.h 830OLD_FILES+=usr/lib/clang/14.0.5/include/vecintrin.h 831OLD_FILES+=usr/lib/clang/14.0.5/include/vpclmulqdqintrin.h 832OLD_FILES+=usr/lib/clang/14.0.5/include/waitpkgintrin.h 833OLD_FILES+=usr/lib/clang/14.0.5/include/wasm_simd128.h 834OLD_FILES+=usr/lib/clang/14.0.5/include/wbnoinvdintrin.h 835OLD_FILES+=usr/lib/clang/14.0.5/include/wmmintrin.h 836OLD_FILES+=usr/lib/clang/14.0.5/include/x86gprintrin.h 837OLD_FILES+=usr/lib/clang/14.0.5/include/x86intrin.h 838OLD_FILES+=usr/lib/clang/14.0.5/include/xmmintrin.h 839OLD_FILES+=usr/lib/clang/14.0.5/include/xopintrin.h 840OLD_FILES+=usr/lib/clang/14.0.5/include/xsavecintrin.h 841OLD_FILES+=usr/lib/clang/14.0.5/include/xsaveintrin.h 842OLD_FILES+=usr/lib/clang/14.0.5/include/xsaveoptintrin.h 843OLD_FILES+=usr/lib/clang/14.0.5/include/xsavesintrin.h 844OLD_FILES+=usr/lib/clang/14.0.5/include/xtestintrin.h 845OLD_DIRS+=usr/lib/clang/14.0.5/include 846OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-aarch64.a 847OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-aarch64.so 848OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-arm.a 849OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-arm.so 850OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-armhf.a 851OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-armhf.so 852OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-i386.a 853OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-i386.so 854OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-powerpc64.a 855OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-powerpc64.so 856OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-powerpc64le.a 857OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-powerpc64le.so 858OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 859OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-arm.a 860OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-armhf.a 861OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-i386.a 862OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-powerpc64.a 863OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-powerpc64le.a 864OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 865OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-x86_64.a 866OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan-x86_64.so 867OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 868OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-arm.a 869OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-armhf.a 870OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-i386.a 871OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-powerpc64.a 872OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-powerpc64le.a 873OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 874OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_static-i386.a 875OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_static-powerpc64.a 876OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_static-powerpc64le.a 877OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.asan_static-x86_64.a 878OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi-aarch64.a 879OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi-arm.a 880OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi-armhf.a 881OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi-i386.a 882OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi-x86_64.a 883OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 884OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi_diag-arm.a 885OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi_diag-armhf.a 886OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi_diag-i386.a 887OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 888OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.dd-aarch64.a 889OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.dd-x86_64.a 890OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.fuzzer-aarch64.a 891OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.fuzzer-x86_64.a 892OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.fuzzer_interceptors-x86_64.a 893OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 894OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 895OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan-aarch64.a 896OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan-powerpc64.a 897OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan-powerpc64le.a 898OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan-x86_64.a 899OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 900OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan_cxx-powerpc64.a 901OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan_cxx-powerpc64le.a 902OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 903OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-aarch64.a 904OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-arm.a 905OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-armhf.a 906OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-i386.a 907OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-powerpc.a 908OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-powerpc64.a 909OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-powerpc64le.a 910OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.profile-x86_64.a 911OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.safestack-aarch64.a 912OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.safestack-i386.a 913OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.safestack-x86_64.a 914OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-aarch64.a 915OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-arm.a 916OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-armhf.a 917OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-i386.a 918OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-powerpc64.a 919OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-powerpc64le.a 920OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats-x86_64.a 921OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-aarch64.a 922OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-arm.a 923OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-armhf.a 924OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-i386.a 925OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-powerpc64.a 926OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-powerpc64le.a 927OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.stats_client-x86_64.a 928OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan-aarch64.a 929OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan-powerpc64.a 930OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan-powerpc64le.a 931OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan-x86_64.a 932OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 933OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan_cxx-powerpc64.a 934OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan_cxx-powerpc64le.a 935OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 936OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 937OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 938OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 939OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 940OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-powerpc64.a 941OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-powerpc64le.a 942OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 943OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 944OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 945OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 946OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 947OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-powerpc64.a 948OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-powerpc64le.a 949OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 950OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 951OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 952OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 953OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 954OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-powerpc64.a 955OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-powerpc64le.a 956OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 957OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-aarch64.a 958OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-arm.a 959OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-armhf.a 960OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-basic-aarch64.a 961OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-basic-arm.a 962OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-basic-armhf.a 963OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-basic-powerpc64le.a 964OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-basic-x86_64.a 965OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 966OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-fdr-arm.a 967OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-fdr-armhf.a 968OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-fdr-powerpc64le.a 969OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 970OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-powerpc64le.a 971OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 972OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-profiling-arm.a 973OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-profiling-armhf.a 974OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-profiling-powerpc64le.a 975OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 976OLD_FILES+=usr/lib/clang/14.0.5/lib/freebsd/libclang_rt.xray-x86_64.a 977OLD_DIRS+=usr/lib/clang/14.0.5/lib/freebsd 978OLD_DIRS+=usr/lib/clang/14.0.5/lib 979OLD_FILES+=usr/lib/clang/14.0.5/share/asan_ignorelist.txt 980OLD_FILES+=usr/lib/clang/14.0.5/share/cfi_ignorelist.txt 981OLD_FILES+=usr/lib/clang/14.0.5/share/msan_ignorelist.txt 982OLD_DIRS+=usr/lib/clang/14.0.5/share 983OLD_DIRS+=usr/lib/clang/14.0.5 984 985# 20230208: new libc++ import which bumps version from 14.0.5 to 15.0.7 986OLD_FILES+=usr/include/c++/v1/__functional_base 987OLD_FILES+=usr/include/c++/v1/__libcpp_version 988OLD_FILES+=usr/include/c++/v1/__nullptr 989OLD_FILES+=usr/include/c++/v1/__string 990OLD_FILES+=usr/include/c++/v1/experimental/filesystem 991 992# 20230203: loader help files renamed 993OLD_FILES+=boot/loader.help 994 995# 20230201: timeout moved from /usr/bin to /bin 996OLD_FILES+=usr/tests/usr.bin/timeout/Kyuafile 997OLD_FILES+=usr/tests/usr.bin/timeout/timeout_test 998 999# 20230124: rtalloc.9 removed 1000OLD_FILES+=usr/share/man/man9/rtalloc.9.gz 1001OLD_FILES+=usr/share/man/man9/rtalloc_fib.9.gz 1002OLD_FILES+=usr/share/man/man9/rtalloc_ign.9.gz 1003OLD_FILES+=usr/share/man/man9/rtalloc_ign_fib.9.gz 1004OLD_FILES+=usr/share/man/man9/rtalloc1.9.gz 1005OLD_FILES+=usr/share/man/man9/rtalloc1_fib.9.gz 1006OLD_FILES+=usr/share/man/man9/rtfree.9.gz 1007OLD_FILES+=usr/share/man/man9/RT_ADDREF.9.gz 1008OLD_FILES+=usr/share/man/man9/RT_LOCK.9.gz 1009OLD_FILES+=usr/share/man/man9/RT_REMREF.9.gz 1010OLD_FILES+=usr/share/man/man9/RT_RTFREE.9.gz 1011OLD_FILES+=usr/share/man/man9/RT_UNLOCK.9.gz 1012OLD_FILES+=usr/share/man/man9/RTFREE.9.gz 1013OLD_FILES+=usr/share/man/man9/RTFREE_LOCKED.9.gz 1014 1015# 20230123: PCBGROUP.9 removed 1016OLD_FILES+=usr/share/man/man9/PCBGROUP.9.gz 1017OLD_FILES+=usr/share/man/man9/in_pcbgroup_byhash.9.gz 1018OLD_FILES+=usr/share/man/man9/in_pcbgroup_byinpcb.9.gz 1019OLD_FILES+=usr/share/man/man9/in_pcbgroup_destroy.9.gz 1020OLD_FILES+=usr/share/man/man9/in_pcbgroup_enabled.9.gz 1021OLD_FILES+=usr/share/man/man9/in_pcbgroup_init.9.gz 1022OLD_FILES+=usr/share/man/man9/in_pcbgroup_remove.9.gz 1023OLD_FILES+=usr/share/man/man9/in_pcbgroup_update.9.gz 1024OLD_FILES+=usr/share/man/man9/in_pcbgroup_update_mbuf.9.gz 1025OLD_FILES+=usr/share/man/man9/in6_pcbgroup_byhash.9.gz 1026 1027# 20221214: TCPDEBUG removed 1028OLD_FILES+=usr/include/netinet/tcp_debug.h 1029 1030# 20221213: remove sync serial drivers and utilities 1031OLD_FILES+=sbin/sconfig 1032OLD_FILES+=usr/share/man/man4/ce.4 1033OLD_FILES+=usr/share/man/man4/cp.4 1034OLD_FILES+=usr/share/man/man8/sconfig.8.gz 1035 1036# 20221202: remove trpt(8) 1037OLD_FILES+=usr/sbin/trpt 1038OLD_FILES+=usr/share/man/man8/trpt.8.gz 1039 1040# 20221117: remove typo'd man page link 1041OLD_FILES+=usr/share/man/man9/vm_map_wire_mapped.9.gz 1042 1043# 20221114: remove othermta 1044OLD_FILES+=etc/rc.d/othermta 1045 1046# 20221109: remove rc.sendmail(8) 1047OLD_FILES+=etc/rc.sendmail 1048OLD_FILES+=usr/share/man/man8/rc.sendmail.8.gz 1049 1050# 20221015: update the ithread(9) man page 1051OLD_FILES+=usr/share/man/man9/ithread.9.gz 1052OLD_FILES+=usr/share/man/man9/ithread_add_handler.9.gz 1053OLD_FILES+=usr/share/man/man9/ithread_create.9.gz 1054OLD_FILES+=usr/share/man/man9/ithread_destroy.9.gz 1055OLD_FILES+=usr/share/man/man9/ithread_priority.9.gz 1056OLD_FILES+=usr/share/man/man9/ithread_remove_handler.9.gz 1057OLD_FILES+=usr/share/man/man9/ithread_schedule.9.gz 1058 1059# 20221012: remove nls support from sort 1060OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/sort.cat 1061 1062# 20221003: ip6protosw.h removed 1063OLD_FILES+=usr/include/netinet6/ip6protosw.h 1064 1065# 20221001: deorbit opie 1066OLD_FILES+=etc/opieaccess 1067OLD_FILES+=etc/opiekeys 1068OLD_FILES+=usr/bin/opieinfo 1069OLD_FILES+=usr/bin/opiekey 1070OLD_FILES+=usr/bin/opiepasswd 1071OLD_FILES+=usr/bin/otp-md4 1072OLD_FILES+=usr/bin/otp-md5 1073OLD_FILES+=usr/bin/otp-sha1 1074OLD_FILES+=usr/include/opie.h 1075OLD_FILES+=usr/lib/libopie.a 1076OLD_FILES+=usr/lib/libopie.so 1077OLD_LIBS+=usr/lib/libopie.so.8 1078OLD_FILES+=usr/lib/libopie_p.a 1079OLD_FILES+=usr/lib/pam_opie.so 1080OLD_LIBS+=usr/lib/pam_opie.so.6 1081OLD_FILES+=usr/lib/pam_opieaccess.so 1082OLD_LIBS+=usr/lib/pam_opieaccess.so.6 1083OLD_FILES+=usr/share/man/man1/opieinfo.1.gz 1084OLD_FILES+=usr/share/man/man1/opiekey.1.gz 1085OLD_FILES+=usr/share/man/man1/opiepasswd.1.gz 1086OLD_FILES+=usr/share/man/man1/otp-md4.1.gz 1087OLD_FILES+=usr/share/man/man1/otp-md5.1.gz 1088OLD_FILES+=usr/share/man/man1/otp-sha1.1.gz 1089OLD_FILES+=usr/share/man/man4/opie.4.gz 1090OLD_FILES+=usr/share/man/man4/skey.4.gz 1091OLD_FILES+=usr/share/man/man5/opieaccess.5.gz 1092OLD_FILES+=usr/share/man/man5/opiekeys.5.gz 1093OLD_FILES+=usr/share/man/man8/pam_opie.8.gz 1094OLD_FILES+=usr/share/man/man8/pam_opieaccess.8.gz 1095 1096# 20220928: telnetd(8) removed 1097OLD_FILES+=etc/pam.d/telnetd 1098OLD_FILES+=usr/libexec/telnetd 1099OLD_FILES+=usr/share/man/man8/telnetd.8.gz 1100 1101# 20220914: domain(9) updated 1102OLD_FILES+=usr/share/man/man9/domain_init.9.gz 1103OLD_FILES+=usr/share/man/man9/pfctlinput.9.gz 1104OLD_FILES+=usr/share/man/man9/pffinddomain.9.gz 1105OLD_FILES+=usr/share/man/man9/pffindproto.9.gz 1106OLD_FILES+=usr/share/man/man9/pffindtype.9.gz 1107 1108# 20220825: awk tests moved to subdirs 1109OLD_FILES+=usr/tests/usr.bin/awk/awk_test 1110OLD_FILES+=usr/tests/usr.bin/awk/d_assign_NF.awk 1111OLD_FILES+=usr/tests/usr.bin/awk/d_assign_NF.in 1112OLD_FILES+=usr/tests/usr.bin/awk/d_assign_NF.out 1113OLD_FILES+=usr/tests/usr.bin/awk/d_big_regexp.awk 1114OLD_FILES+=usr/tests/usr.bin/awk/d_big_regexp.in 1115OLD_FILES+=usr/tests/usr.bin/awk/d_big_regexp.out 1116OLD_FILES+=usr/tests/usr.bin/awk/d_end1.awk 1117OLD_FILES+=usr/tests/usr.bin/awk/d_end1.in 1118OLD_FILES+=usr/tests/usr.bin/awk/d_end1.out 1119OLD_FILES+=usr/tests/usr.bin/awk/d_end2.awk 1120OLD_FILES+=usr/tests/usr.bin/awk/d_end2.in 1121OLD_FILES+=usr/tests/usr.bin/awk/d_end2.out 1122OLD_FILES+=usr/tests/usr.bin/awk/d_period.awk 1123OLD_FILES+=usr/tests/usr.bin/awk/d_period.in 1124OLD_FILES+=usr/tests/usr.bin/awk/d_period.out 1125OLD_FILES+=usr/tests/usr.bin/awk/d_string1.awk 1126OLD_FILES+=usr/tests/usr.bin/awk/d_string1.out 1127OLD_FILES+=usr/tests/usr.bin/awk/d_tolower.awk 1128OLD_FILES+=usr/tests/usr.bin/awk/d_tolower.in 1129OLD_FILES+=usr/tests/usr.bin/awk/d_tolower.out 1130OLD_FILES+=usr/tests/usr.bin/awk/d_toupper.awk 1131OLD_FILES+=usr/tests/usr.bin/awk/d_toupper.in 1132OLD_FILES+=usr/tests/usr.bin/awk/d_toupper.out 1133 1134# 20220820: remove knlist_init_rw_reader() 1135OLD_FILES+=usr/share/man/man9/knlist_init_rw_reader.9.gz 1136 1137# 20220813: minigzip(1) removed in favor of gzip(1) 1138OLD_FILES+=usr/bin/minigzip 1139OLD_FILES+=usr/share/man/man1/minigzip.1.gz 1140 1141# 20220811: MP_WATCHDOG removed 1142OLD_FILES+=usr/include/machine/mp_watchdog.h 1143 1144# 20220811: new iconv encoder trait added 1145OLD_LIBS+=usr/lib/i18n/libBIG5.so.4 1146OLD_LIBS+=usr/lib/i18n/libDECHanyu.so.4 1147OLD_LIBS+=usr/lib/i18n/libEUC.so.4 1148OLD_LIBS+=usr/lib/i18n/libEUCTW.so.4 1149OLD_LIBS+=usr/lib/i18n/libGBK2K.so.4 1150OLD_LIBS+=usr/lib/i18n/libHZ.so.4 1151OLD_LIBS+=usr/lib/i18n/libISO2022.so.4 1152OLD_LIBS+=usr/lib/i18n/libJOHAB.so.4 1153OLD_LIBS+=usr/lib/i18n/libMSKanji.so.4 1154OLD_LIBS+=usr/lib/i18n/libUES.so.4 1155OLD_LIBS+=usr/lib/i18n/libUTF1632.so.4 1156OLD_LIBS+=usr/lib/i18n/libUTF7.so.4 1157OLD_LIBS+=usr/lib/i18n/libUTF8.so.4 1158OLD_LIBS+=usr/lib/i18n/libVIQR.so.4 1159OLD_LIBS+=usr/lib/i18n/libZW.so.4 1160OLD_LIBS+=usr/lib/i18n/libiconv_none.so.4 1161OLD_LIBS+=usr/lib/i18n/libiconv_std.so.4 1162OLD_LIBS+=usr/lib/i18n/libmapper_646.so.4 1163OLD_LIBS+=usr/lib/i18n/libmapper_none.so.4 1164OLD_LIBS+=usr/lib/i18n/libmapper_parallel.so.4 1165OLD_LIBS+=usr/lib/i18n/libmapper_serial.so.4 1166OLD_LIBS+=usr/lib/i18n/libmapper_std.so.4 1167OLD_LIBS+=usr/lib/i18n/libmapper_zone.so.4 1168 1169# 20220811: raw socket layer removed 1170OLD_FILES+=usr/include/net/raw_cb.h 1171 1172# 20220721: libnv version bumps 1173OLD_LIBS+=lib/libnv.so.0 1174 1175# 20220624: unix_passfd_test -> unix_passfd_stream/unix_passfd_dgram 1176OLD_FILES+=usr/tests/sys/kern/unix_passfd_test 1177 1178# 20220621: ISA sound card drivers removed 1179OLD_FILES+=usr/share/man/man4/snd_ad1816.4.gz 1180OLD_FILES+=usr/share/man/man4/snd_ess.4.gz 1181OLD_FILES+=usr/share/man/man4/snd_gusc.4.gz 1182OLD_FILES+=usr/share/man/man4/snd_mss.4.gz 1183OLD_FILES+=usr/share/man/man4/snd_sb16.4.gz 1184OLD_FILES+=usr/share/man/man4/snd_sb8.4.gz 1185OLD_FILES+=usr/share/man/man4/snd_sbc.4.gz 1186 1187# 20220612: new clang import which bumps version from 14.0.4 to 14.0.5 1188OLD_FILES+=usr/lib/clang/14.0.4/include/cuda_wrappers/algorithm 1189OLD_FILES+=usr/lib/clang/14.0.4/include/cuda_wrappers/complex 1190OLD_FILES+=usr/lib/clang/14.0.4/include/cuda_wrappers/new 1191OLD_DIRS+=usr/lib/clang/14.0.4/include/cuda_wrappers 1192OLD_FILES+=usr/lib/clang/14.0.4/include/fuzzer/FuzzedDataProvider.h 1193OLD_DIRS+=usr/lib/clang/14.0.4/include/fuzzer 1194OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/__clang_openmp_device_functions.h 1195OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/cmath 1196OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/complex 1197OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/complex.h 1198OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/complex_cmath.h 1199OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/math.h 1200OLD_FILES+=usr/lib/clang/14.0.4/include/openmp_wrappers/new 1201OLD_DIRS+=usr/lib/clang/14.0.4/include/openmp_wrappers 1202OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/emmintrin.h 1203OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/mm_malloc.h 1204OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/mmintrin.h 1205OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/pmmintrin.h 1206OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/smmintrin.h 1207OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/tmmintrin.h 1208OLD_FILES+=usr/lib/clang/14.0.4/include/ppc_wrappers/xmmintrin.h 1209OLD_DIRS+=usr/lib/clang/14.0.4/include/ppc_wrappers 1210OLD_FILES+=usr/lib/clang/14.0.4/include/profile/InstrProfData.inc 1211OLD_FILES+=usr/lib/clang/14.0.4/include/profile/MemProfData.inc 1212OLD_DIRS+=usr/lib/clang/14.0.4/include/profile 1213OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/allocator_interface.h 1214OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/asan_interface.h 1215OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/common_interface_defs.h 1216OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/coverage_interface.h 1217OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/dfsan_interface.h 1218OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/hwasan_interface.h 1219OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/linux_syscall_hooks.h 1220OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/lsan_interface.h 1221OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/memprof_interface.h 1222OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/msan_interface.h 1223OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/netbsd_syscall_hooks.h 1224OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/scudo_interface.h 1225OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/tsan_interface.h 1226OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/tsan_interface_atomic.h 1227OLD_FILES+=usr/lib/clang/14.0.4/include/sanitizer/ubsan_interface.h 1228OLD_DIRS+=usr/lib/clang/14.0.4/include/sanitizer 1229OLD_FILES+=usr/lib/clang/14.0.4/include/xray/xray_interface.h 1230OLD_FILES+=usr/lib/clang/14.0.4/include/xray/xray_log_interface.h 1231OLD_FILES+=usr/lib/clang/14.0.4/include/xray/xray_records.h 1232OLD_DIRS+=usr/lib/clang/14.0.4/include/xray 1233OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_builtin_vars.h 1234OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_cmath.h 1235OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_complex_builtins.h 1236OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_device_functions.h 1237OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_intrinsics.h 1238OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_libdevice_declares.h 1239OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_math.h 1240OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_math_forward_declares.h 1241OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_runtime_wrapper.h 1242OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_cuda_texture_intrinsics.h 1243OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_hip_cmath.h 1244OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_hip_libdevice_declares.h 1245OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_hip_math.h 1246OLD_FILES+=usr/lib/clang/14.0.4/include/__clang_hip_runtime_wrapper.h 1247OLD_FILES+=usr/lib/clang/14.0.4/include/__stddef_max_align_t.h 1248OLD_FILES+=usr/lib/clang/14.0.4/include/__wmmintrin_aes.h 1249OLD_FILES+=usr/lib/clang/14.0.4/include/__wmmintrin_pclmul.h 1250OLD_FILES+=usr/lib/clang/14.0.4/include/adxintrin.h 1251OLD_FILES+=usr/lib/clang/14.0.4/include/altivec.h 1252OLD_FILES+=usr/lib/clang/14.0.4/include/ammintrin.h 1253OLD_FILES+=usr/lib/clang/14.0.4/include/amxintrin.h 1254OLD_FILES+=usr/lib/clang/14.0.4/include/arm64intr.h 1255OLD_FILES+=usr/lib/clang/14.0.4/include/arm_acle.h 1256OLD_FILES+=usr/lib/clang/14.0.4/include/arm_bf16.h 1257OLD_FILES+=usr/lib/clang/14.0.4/include/arm_cde.h 1258OLD_FILES+=usr/lib/clang/14.0.4/include/arm_cmse.h 1259OLD_FILES+=usr/lib/clang/14.0.4/include/arm_fp16.h 1260OLD_FILES+=usr/lib/clang/14.0.4/include/arm_mve.h 1261OLD_FILES+=usr/lib/clang/14.0.4/include/arm_neon.h 1262OLD_FILES+=usr/lib/clang/14.0.4/include/arm_neon_sve_bridge.h 1263OLD_FILES+=usr/lib/clang/14.0.4/include/arm_sve.h 1264OLD_FILES+=usr/lib/clang/14.0.4/include/armintr.h 1265OLD_FILES+=usr/lib/clang/14.0.4/include/avx2intrin.h 1266OLD_FILES+=usr/lib/clang/14.0.4/include/avx512bf16intrin.h 1267OLD_FILES+=usr/lib/clang/14.0.4/include/avx512bitalgintrin.h 1268OLD_FILES+=usr/lib/clang/14.0.4/include/avx512bwintrin.h 1269OLD_FILES+=usr/lib/clang/14.0.4/include/avx512cdintrin.h 1270OLD_FILES+=usr/lib/clang/14.0.4/include/avx512dqintrin.h 1271OLD_FILES+=usr/lib/clang/14.0.4/include/avx512erintrin.h 1272OLD_FILES+=usr/lib/clang/14.0.4/include/avx512fintrin.h 1273OLD_FILES+=usr/lib/clang/14.0.4/include/avx512fp16intrin.h 1274OLD_FILES+=usr/lib/clang/14.0.4/include/avx512ifmaintrin.h 1275OLD_FILES+=usr/lib/clang/14.0.4/include/avx512ifmavlintrin.h 1276OLD_FILES+=usr/lib/clang/14.0.4/include/avx512pfintrin.h 1277OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vbmi2intrin.h 1278OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vbmiintrin.h 1279OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vbmivlintrin.h 1280OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlbf16intrin.h 1281OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlbitalgintrin.h 1282OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlbwintrin.h 1283OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlcdintrin.h 1284OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vldqintrin.h 1285OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlfp16intrin.h 1286OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlintrin.h 1287OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlvbmi2intrin.h 1288OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlvnniintrin.h 1289OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vlvp2intersectintrin.h 1290OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vnniintrin.h 1291OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vp2intersectintrin.h 1292OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vpopcntdqintrin.h 1293OLD_FILES+=usr/lib/clang/14.0.4/include/avx512vpopcntdqvlintrin.h 1294OLD_FILES+=usr/lib/clang/14.0.4/include/avxintrin.h 1295OLD_FILES+=usr/lib/clang/14.0.4/include/avxvnniintrin.h 1296OLD_FILES+=usr/lib/clang/14.0.4/include/bmi2intrin.h 1297OLD_FILES+=usr/lib/clang/14.0.4/include/bmiintrin.h 1298OLD_FILES+=usr/lib/clang/14.0.4/include/builtins.h 1299OLD_FILES+=usr/lib/clang/14.0.4/include/cet.h 1300OLD_FILES+=usr/lib/clang/14.0.4/include/cetintrin.h 1301OLD_FILES+=usr/lib/clang/14.0.4/include/cldemoteintrin.h 1302OLD_FILES+=usr/lib/clang/14.0.4/include/clflushoptintrin.h 1303OLD_FILES+=usr/lib/clang/14.0.4/include/clwbintrin.h 1304OLD_FILES+=usr/lib/clang/14.0.4/include/clzerointrin.h 1305OLD_FILES+=usr/lib/clang/14.0.4/include/cpuid.h 1306OLD_FILES+=usr/lib/clang/14.0.4/include/crc32intrin.h 1307OLD_FILES+=usr/lib/clang/14.0.4/include/emmintrin.h 1308OLD_FILES+=usr/lib/clang/14.0.4/include/enqcmdintrin.h 1309OLD_FILES+=usr/lib/clang/14.0.4/include/f16cintrin.h 1310OLD_FILES+=usr/lib/clang/14.0.4/include/float.h 1311OLD_FILES+=usr/lib/clang/14.0.4/include/fma4intrin.h 1312OLD_FILES+=usr/lib/clang/14.0.4/include/fmaintrin.h 1313OLD_FILES+=usr/lib/clang/14.0.4/include/fxsrintrin.h 1314OLD_FILES+=usr/lib/clang/14.0.4/include/gfniintrin.h 1315OLD_FILES+=usr/lib/clang/14.0.4/include/hexagon_circ_brev_intrinsics.h 1316OLD_FILES+=usr/lib/clang/14.0.4/include/hexagon_protos.h 1317OLD_FILES+=usr/lib/clang/14.0.4/include/hexagon_types.h 1318OLD_FILES+=usr/lib/clang/14.0.4/include/hresetintrin.h 1319OLD_FILES+=usr/lib/clang/14.0.4/include/htmintrin.h 1320OLD_FILES+=usr/lib/clang/14.0.4/include/htmxlintrin.h 1321OLD_FILES+=usr/lib/clang/14.0.4/include/hvx_hexagon_protos.h 1322OLD_FILES+=usr/lib/clang/14.0.4/include/ia32intrin.h 1323OLD_FILES+=usr/lib/clang/14.0.4/include/immintrin.h 1324OLD_FILES+=usr/lib/clang/14.0.4/include/intrin.h 1325OLD_FILES+=usr/lib/clang/14.0.4/include/inttypes.h 1326OLD_FILES+=usr/lib/clang/14.0.4/include/invpcidintrin.h 1327OLD_FILES+=usr/lib/clang/14.0.4/include/iso646.h 1328OLD_FILES+=usr/lib/clang/14.0.4/include/keylockerintrin.h 1329OLD_FILES+=usr/lib/clang/14.0.4/include/limits.h 1330OLD_FILES+=usr/lib/clang/14.0.4/include/lwpintrin.h 1331OLD_FILES+=usr/lib/clang/14.0.4/include/lzcntintrin.h 1332OLD_FILES+=usr/lib/clang/14.0.4/include/mm3dnow.h 1333OLD_FILES+=usr/lib/clang/14.0.4/include/mm_malloc.h 1334OLD_FILES+=usr/lib/clang/14.0.4/include/mmintrin.h 1335OLD_FILES+=usr/lib/clang/14.0.4/include/module.modulemap 1336OLD_FILES+=usr/lib/clang/14.0.4/include/movdirintrin.h 1337OLD_FILES+=usr/lib/clang/14.0.4/include/msa.h 1338OLD_FILES+=usr/lib/clang/14.0.4/include/mwaitxintrin.h 1339OLD_FILES+=usr/lib/clang/14.0.4/include/nmmintrin.h 1340OLD_FILES+=usr/lib/clang/14.0.4/include/omp-tools.h 1341OLD_FILES+=usr/lib/clang/14.0.4/include/omp.h 1342OLD_FILES+=usr/lib/clang/14.0.4/include/ompt.h 1343OLD_FILES+=usr/lib/clang/14.0.4/include/opencl-c-base.h 1344OLD_FILES+=usr/lib/clang/14.0.4/include/opencl-c.h 1345OLD_FILES+=usr/lib/clang/14.0.4/include/pconfigintrin.h 1346OLD_FILES+=usr/lib/clang/14.0.4/include/pkuintrin.h 1347OLD_FILES+=usr/lib/clang/14.0.4/include/pmmintrin.h 1348OLD_FILES+=usr/lib/clang/14.0.4/include/popcntintrin.h 1349OLD_FILES+=usr/lib/clang/14.0.4/include/prfchwintrin.h 1350OLD_FILES+=usr/lib/clang/14.0.4/include/ptwriteintrin.h 1351OLD_FILES+=usr/lib/clang/14.0.4/include/rdseedintrin.h 1352OLD_FILES+=usr/lib/clang/14.0.4/include/riscv_vector.h 1353OLD_FILES+=usr/lib/clang/14.0.4/include/rtmintrin.h 1354OLD_FILES+=usr/lib/clang/14.0.4/include/s390intrin.h 1355OLD_FILES+=usr/lib/clang/14.0.4/include/serializeintrin.h 1356OLD_FILES+=usr/lib/clang/14.0.4/include/sgxintrin.h 1357OLD_FILES+=usr/lib/clang/14.0.4/include/shaintrin.h 1358OLD_FILES+=usr/lib/clang/14.0.4/include/smmintrin.h 1359OLD_FILES+=usr/lib/clang/14.0.4/include/stdalign.h 1360OLD_FILES+=usr/lib/clang/14.0.4/include/stdarg.h 1361OLD_FILES+=usr/lib/clang/14.0.4/include/stdatomic.h 1362OLD_FILES+=usr/lib/clang/14.0.4/include/stdbool.h 1363OLD_FILES+=usr/lib/clang/14.0.4/include/stddef.h 1364OLD_FILES+=usr/lib/clang/14.0.4/include/stdint.h 1365OLD_FILES+=usr/lib/clang/14.0.4/include/stdnoreturn.h 1366OLD_FILES+=usr/lib/clang/14.0.4/include/tbmintrin.h 1367OLD_FILES+=usr/lib/clang/14.0.4/include/tgmath.h 1368OLD_FILES+=usr/lib/clang/14.0.4/include/tmmintrin.h 1369OLD_FILES+=usr/lib/clang/14.0.4/include/tsxldtrkintrin.h 1370OLD_FILES+=usr/lib/clang/14.0.4/include/uintrintrin.h 1371OLD_FILES+=usr/lib/clang/14.0.4/include/unwind.h 1372OLD_FILES+=usr/lib/clang/14.0.4/include/vadefs.h 1373OLD_FILES+=usr/lib/clang/14.0.4/include/vaesintrin.h 1374OLD_FILES+=usr/lib/clang/14.0.4/include/varargs.h 1375OLD_FILES+=usr/lib/clang/14.0.4/include/vecintrin.h 1376OLD_FILES+=usr/lib/clang/14.0.4/include/vpclmulqdqintrin.h 1377OLD_FILES+=usr/lib/clang/14.0.4/include/waitpkgintrin.h 1378OLD_FILES+=usr/lib/clang/14.0.4/include/wasm_simd128.h 1379OLD_FILES+=usr/lib/clang/14.0.4/include/wbnoinvdintrin.h 1380OLD_FILES+=usr/lib/clang/14.0.4/include/wmmintrin.h 1381OLD_FILES+=usr/lib/clang/14.0.4/include/x86gprintrin.h 1382OLD_FILES+=usr/lib/clang/14.0.4/include/x86intrin.h 1383OLD_FILES+=usr/lib/clang/14.0.4/include/xmmintrin.h 1384OLD_FILES+=usr/lib/clang/14.0.4/include/xopintrin.h 1385OLD_FILES+=usr/lib/clang/14.0.4/include/xsavecintrin.h 1386OLD_FILES+=usr/lib/clang/14.0.4/include/xsaveintrin.h 1387OLD_FILES+=usr/lib/clang/14.0.4/include/xsaveoptintrin.h 1388OLD_FILES+=usr/lib/clang/14.0.4/include/xsavesintrin.h 1389OLD_FILES+=usr/lib/clang/14.0.4/include/xtestintrin.h 1390OLD_DIRS+=usr/lib/clang/14.0.4/include 1391OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-aarch64.a 1392OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-aarch64.so 1393OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-arm.a 1394OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-arm.so 1395OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-armhf.a 1396OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-armhf.so 1397OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-i386.a 1398OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-i386.so 1399OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 1400OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-preinit-arm.a 1401OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-preinit-armhf.a 1402OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-preinit-i386.a 1403OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 1404OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-x86_64.a 1405OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan-x86_64.so 1406OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 1407OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_cxx-arm.a 1408OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_cxx-armhf.a 1409OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_cxx-i386.a 1410OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 1411OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_static-i386.a 1412OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.asan_static-x86_64.a 1413OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi-aarch64.a 1414OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi-arm.a 1415OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi-armhf.a 1416OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi-i386.a 1417OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi-x86_64.a 1418OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 1419OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi_diag-arm.a 1420OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi_diag-armhf.a 1421OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi_diag-i386.a 1422OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 1423OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.dd-aarch64.a 1424OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.dd-x86_64.a 1425OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.fuzzer-aarch64.a 1426OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.fuzzer-x86_64.a 1427OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.fuzzer_interceptors-x86_64.a 1428OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 1429OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 1430OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.msan-aarch64.a 1431OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.msan-x86_64.a 1432OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 1433OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 1434OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-aarch64.a 1435OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-arm.a 1436OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-armhf.a 1437OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-i386.a 1438OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-powerpc.a 1439OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-powerpc64.a 1440OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-powerpc64le.a 1441OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.profile-x86_64.a 1442OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.safestack-aarch64.a 1443OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.safestack-i386.a 1444OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.safestack-x86_64.a 1445OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats-aarch64.a 1446OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats-arm.a 1447OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats-armhf.a 1448OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats-i386.a 1449OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats-x86_64.a 1450OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats_client-aarch64.a 1451OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats_client-arm.a 1452OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats_client-armhf.a 1453OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats_client-i386.a 1454OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.stats_client-x86_64.a 1455OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.tsan-aarch64.a 1456OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.tsan-x86_64.a 1457OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 1458OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 1459OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 1460OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 1461OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 1462OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 1463OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 1464OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 1465OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 1466OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 1467OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 1468OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 1469OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 1470OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 1471OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 1472OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 1473OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 1474OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-aarch64.a 1475OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-arm.a 1476OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-armhf.a 1477OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-basic-aarch64.a 1478OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-basic-arm.a 1479OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-basic-armhf.a 1480OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-basic-x86_64.a 1481OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 1482OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-fdr-arm.a 1483OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-fdr-armhf.a 1484OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 1485OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 1486OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-profiling-arm.a 1487OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-profiling-armhf.a 1488OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 1489OLD_FILES+=usr/lib/clang/14.0.4/lib/freebsd/libclang_rt.xray-x86_64.a 1490OLD_DIRS+=usr/lib/clang/14.0.4/lib/freebsd 1491OLD_DIRS+=usr/lib/clang/14.0.4/lib/share 1492OLD_DIRS+=usr/lib/clang/14.0.4/lib 1493OLD_FILES+=usr/lib/clang/14.0.4/share/asan_ignorelist.txt 1494OLD_FILES+=usr/lib/clang/14.0.4/share/cfi_ignorelist.txt 1495OLD_FILES+=usr/lib/clang/14.0.4/share/msan_ignorelist.txt 1496OLD_DIRS+=usr/lib/clang/14.0.4/share 1497OLD_DIRS+=usr/lib/clang/14.0.4 1498 1499# 20220605: new clang import which bumps version from 14.0.3 to 14.0.4 1500OLD_FILES+=usr/lib/clang/14.0.3/include/cuda_wrappers/algorithm 1501OLD_FILES+=usr/lib/clang/14.0.3/include/cuda_wrappers/complex 1502OLD_FILES+=usr/lib/clang/14.0.3/include/cuda_wrappers/new 1503OLD_DIRS+=usr/lib/clang/14.0.3/include/cuda_wrappers 1504OLD_FILES+=usr/lib/clang/14.0.3/include/fuzzer/FuzzedDataProvider.h 1505OLD_DIRS+=usr/lib/clang/14.0.3/include/fuzzer 1506OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/__clang_openmp_device_functions.h 1507OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/cmath 1508OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/complex 1509OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/complex.h 1510OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/complex_cmath.h 1511OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/math.h 1512OLD_FILES+=usr/lib/clang/14.0.3/include/openmp_wrappers/new 1513OLD_DIRS+=usr/lib/clang/14.0.3/include/openmp_wrappers 1514OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/emmintrin.h 1515OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/mm_malloc.h 1516OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/mmintrin.h 1517OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/pmmintrin.h 1518OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/smmintrin.h 1519OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/tmmintrin.h 1520OLD_FILES+=usr/lib/clang/14.0.3/include/ppc_wrappers/xmmintrin.h 1521OLD_DIRS+=usr/lib/clang/14.0.3/include/ppc_wrappers 1522OLD_FILES+=usr/lib/clang/14.0.3/include/profile/InstrProfData.inc 1523OLD_FILES+=usr/lib/clang/14.0.3/include/profile/MemProfData.inc 1524OLD_DIRS+=usr/lib/clang/14.0.3/include/profile 1525OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/allocator_interface.h 1526OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/asan_interface.h 1527OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/common_interface_defs.h 1528OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/coverage_interface.h 1529OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/dfsan_interface.h 1530OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/hwasan_interface.h 1531OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/linux_syscall_hooks.h 1532OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/lsan_interface.h 1533OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/memprof_interface.h 1534OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/msan_interface.h 1535OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/netbsd_syscall_hooks.h 1536OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/scudo_interface.h 1537OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/tsan_interface.h 1538OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/tsan_interface_atomic.h 1539OLD_FILES+=usr/lib/clang/14.0.3/include/sanitizer/ubsan_interface.h 1540OLD_DIRS+=usr/lib/clang/14.0.3/include/sanitizer 1541OLD_FILES+=usr/lib/clang/14.0.3/include/xray/xray_interface.h 1542OLD_FILES+=usr/lib/clang/14.0.3/include/xray/xray_log_interface.h 1543OLD_FILES+=usr/lib/clang/14.0.3/include/xray/xray_records.h 1544OLD_DIRS+=usr/lib/clang/14.0.3/include/xray 1545OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_builtin_vars.h 1546OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_cmath.h 1547OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_complex_builtins.h 1548OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_device_functions.h 1549OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_intrinsics.h 1550OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_libdevice_declares.h 1551OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_math.h 1552OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_math_forward_declares.h 1553OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_runtime_wrapper.h 1554OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_cuda_texture_intrinsics.h 1555OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_hip_cmath.h 1556OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_hip_libdevice_declares.h 1557OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_hip_math.h 1558OLD_FILES+=usr/lib/clang/14.0.3/include/__clang_hip_runtime_wrapper.h 1559OLD_FILES+=usr/lib/clang/14.0.3/include/__stddef_max_align_t.h 1560OLD_FILES+=usr/lib/clang/14.0.3/include/__wmmintrin_aes.h 1561OLD_FILES+=usr/lib/clang/14.0.3/include/__wmmintrin_pclmul.h 1562OLD_FILES+=usr/lib/clang/14.0.3/include/adxintrin.h 1563OLD_FILES+=usr/lib/clang/14.0.3/include/altivec.h 1564OLD_FILES+=usr/lib/clang/14.0.3/include/ammintrin.h 1565OLD_FILES+=usr/lib/clang/14.0.3/include/amxintrin.h 1566OLD_FILES+=usr/lib/clang/14.0.3/include/arm64intr.h 1567OLD_FILES+=usr/lib/clang/14.0.3/include/arm_acle.h 1568OLD_FILES+=usr/lib/clang/14.0.3/include/arm_bf16.h 1569OLD_FILES+=usr/lib/clang/14.0.3/include/arm_cde.h 1570OLD_FILES+=usr/lib/clang/14.0.3/include/arm_cmse.h 1571OLD_FILES+=usr/lib/clang/14.0.3/include/arm_fp16.h 1572OLD_FILES+=usr/lib/clang/14.0.3/include/arm_mve.h 1573OLD_FILES+=usr/lib/clang/14.0.3/include/arm_neon.h 1574OLD_FILES+=usr/lib/clang/14.0.3/include/arm_neon_sve_bridge.h 1575OLD_FILES+=usr/lib/clang/14.0.3/include/arm_sve.h 1576OLD_FILES+=usr/lib/clang/14.0.3/include/armintr.h 1577OLD_FILES+=usr/lib/clang/14.0.3/include/avx2intrin.h 1578OLD_FILES+=usr/lib/clang/14.0.3/include/avx512bf16intrin.h 1579OLD_FILES+=usr/lib/clang/14.0.3/include/avx512bitalgintrin.h 1580OLD_FILES+=usr/lib/clang/14.0.3/include/avx512bwintrin.h 1581OLD_FILES+=usr/lib/clang/14.0.3/include/avx512cdintrin.h 1582OLD_FILES+=usr/lib/clang/14.0.3/include/avx512dqintrin.h 1583OLD_FILES+=usr/lib/clang/14.0.3/include/avx512erintrin.h 1584OLD_FILES+=usr/lib/clang/14.0.3/include/avx512fintrin.h 1585OLD_FILES+=usr/lib/clang/14.0.3/include/avx512fp16intrin.h 1586OLD_FILES+=usr/lib/clang/14.0.3/include/avx512ifmaintrin.h 1587OLD_FILES+=usr/lib/clang/14.0.3/include/avx512ifmavlintrin.h 1588OLD_FILES+=usr/lib/clang/14.0.3/include/avx512pfintrin.h 1589OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vbmi2intrin.h 1590OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vbmiintrin.h 1591OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vbmivlintrin.h 1592OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlbf16intrin.h 1593OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlbitalgintrin.h 1594OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlbwintrin.h 1595OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlcdintrin.h 1596OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vldqintrin.h 1597OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlfp16intrin.h 1598OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlintrin.h 1599OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlvbmi2intrin.h 1600OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlvnniintrin.h 1601OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vlvp2intersectintrin.h 1602OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vnniintrin.h 1603OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vp2intersectintrin.h 1604OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vpopcntdqintrin.h 1605OLD_FILES+=usr/lib/clang/14.0.3/include/avx512vpopcntdqvlintrin.h 1606OLD_FILES+=usr/lib/clang/14.0.3/include/avxintrin.h 1607OLD_FILES+=usr/lib/clang/14.0.3/include/avxvnniintrin.h 1608OLD_FILES+=usr/lib/clang/14.0.3/include/bmi2intrin.h 1609OLD_FILES+=usr/lib/clang/14.0.3/include/bmiintrin.h 1610OLD_FILES+=usr/lib/clang/14.0.3/include/builtins.h 1611OLD_FILES+=usr/lib/clang/14.0.3/include/cet.h 1612OLD_FILES+=usr/lib/clang/14.0.3/include/cetintrin.h 1613OLD_FILES+=usr/lib/clang/14.0.3/include/cldemoteintrin.h 1614OLD_FILES+=usr/lib/clang/14.0.3/include/clflushoptintrin.h 1615OLD_FILES+=usr/lib/clang/14.0.3/include/clwbintrin.h 1616OLD_FILES+=usr/lib/clang/14.0.3/include/clzerointrin.h 1617OLD_FILES+=usr/lib/clang/14.0.3/include/cpuid.h 1618OLD_FILES+=usr/lib/clang/14.0.3/include/crc32intrin.h 1619OLD_FILES+=usr/lib/clang/14.0.3/include/emmintrin.h 1620OLD_FILES+=usr/lib/clang/14.0.3/include/enqcmdintrin.h 1621OLD_FILES+=usr/lib/clang/14.0.3/include/f16cintrin.h 1622OLD_FILES+=usr/lib/clang/14.0.3/include/float.h 1623OLD_FILES+=usr/lib/clang/14.0.3/include/fma4intrin.h 1624OLD_FILES+=usr/lib/clang/14.0.3/include/fmaintrin.h 1625OLD_FILES+=usr/lib/clang/14.0.3/include/fxsrintrin.h 1626OLD_FILES+=usr/lib/clang/14.0.3/include/gfniintrin.h 1627OLD_FILES+=usr/lib/clang/14.0.3/include/hexagon_circ_brev_intrinsics.h 1628OLD_FILES+=usr/lib/clang/14.0.3/include/hexagon_protos.h 1629OLD_FILES+=usr/lib/clang/14.0.3/include/hexagon_types.h 1630OLD_FILES+=usr/lib/clang/14.0.3/include/hresetintrin.h 1631OLD_FILES+=usr/lib/clang/14.0.3/include/htmintrin.h 1632OLD_FILES+=usr/lib/clang/14.0.3/include/htmxlintrin.h 1633OLD_FILES+=usr/lib/clang/14.0.3/include/hvx_hexagon_protos.h 1634OLD_FILES+=usr/lib/clang/14.0.3/include/ia32intrin.h 1635OLD_FILES+=usr/lib/clang/14.0.3/include/immintrin.h 1636OLD_FILES+=usr/lib/clang/14.0.3/include/intrin.h 1637OLD_FILES+=usr/lib/clang/14.0.3/include/inttypes.h 1638OLD_FILES+=usr/lib/clang/14.0.3/include/invpcidintrin.h 1639OLD_FILES+=usr/lib/clang/14.0.3/include/iso646.h 1640OLD_FILES+=usr/lib/clang/14.0.3/include/keylockerintrin.h 1641OLD_FILES+=usr/lib/clang/14.0.3/include/limits.h 1642OLD_FILES+=usr/lib/clang/14.0.3/include/lwpintrin.h 1643OLD_FILES+=usr/lib/clang/14.0.3/include/lzcntintrin.h 1644OLD_FILES+=usr/lib/clang/14.0.3/include/mm3dnow.h 1645OLD_FILES+=usr/lib/clang/14.0.3/include/mm_malloc.h 1646OLD_FILES+=usr/lib/clang/14.0.3/include/mmintrin.h 1647OLD_FILES+=usr/lib/clang/14.0.3/include/module.modulemap 1648OLD_FILES+=usr/lib/clang/14.0.3/include/movdirintrin.h 1649OLD_FILES+=usr/lib/clang/14.0.3/include/msa.h 1650OLD_FILES+=usr/lib/clang/14.0.3/include/mwaitxintrin.h 1651OLD_FILES+=usr/lib/clang/14.0.3/include/nmmintrin.h 1652OLD_FILES+=usr/lib/clang/14.0.3/include/omp-tools.h 1653OLD_FILES+=usr/lib/clang/14.0.3/include/omp.h 1654OLD_FILES+=usr/lib/clang/14.0.3/include/ompt.h 1655OLD_FILES+=usr/lib/clang/14.0.3/include/opencl-c-base.h 1656OLD_FILES+=usr/lib/clang/14.0.3/include/opencl-c.h 1657OLD_FILES+=usr/lib/clang/14.0.3/include/pconfigintrin.h 1658OLD_FILES+=usr/lib/clang/14.0.3/include/pkuintrin.h 1659OLD_FILES+=usr/lib/clang/14.0.3/include/pmmintrin.h 1660OLD_FILES+=usr/lib/clang/14.0.3/include/popcntintrin.h 1661OLD_FILES+=usr/lib/clang/14.0.3/include/prfchwintrin.h 1662OLD_FILES+=usr/lib/clang/14.0.3/include/ptwriteintrin.h 1663OLD_FILES+=usr/lib/clang/14.0.3/include/rdseedintrin.h 1664OLD_FILES+=usr/lib/clang/14.0.3/include/riscv_vector.h 1665OLD_FILES+=usr/lib/clang/14.0.3/include/rtmintrin.h 1666OLD_FILES+=usr/lib/clang/14.0.3/include/s390intrin.h 1667OLD_FILES+=usr/lib/clang/14.0.3/include/serializeintrin.h 1668OLD_FILES+=usr/lib/clang/14.0.3/include/sgxintrin.h 1669OLD_FILES+=usr/lib/clang/14.0.3/include/shaintrin.h 1670OLD_FILES+=usr/lib/clang/14.0.3/include/smmintrin.h 1671OLD_FILES+=usr/lib/clang/14.0.3/include/stdalign.h 1672OLD_FILES+=usr/lib/clang/14.0.3/include/stdarg.h 1673OLD_FILES+=usr/lib/clang/14.0.3/include/stdatomic.h 1674OLD_FILES+=usr/lib/clang/14.0.3/include/stdbool.h 1675OLD_FILES+=usr/lib/clang/14.0.3/include/stddef.h 1676OLD_FILES+=usr/lib/clang/14.0.3/include/stdint.h 1677OLD_FILES+=usr/lib/clang/14.0.3/include/stdnoreturn.h 1678OLD_FILES+=usr/lib/clang/14.0.3/include/tbmintrin.h 1679OLD_FILES+=usr/lib/clang/14.0.3/include/tgmath.h 1680OLD_FILES+=usr/lib/clang/14.0.3/include/tmmintrin.h 1681OLD_FILES+=usr/lib/clang/14.0.3/include/tsxldtrkintrin.h 1682OLD_FILES+=usr/lib/clang/14.0.3/include/uintrintrin.h 1683OLD_FILES+=usr/lib/clang/14.0.3/include/unwind.h 1684OLD_FILES+=usr/lib/clang/14.0.3/include/vadefs.h 1685OLD_FILES+=usr/lib/clang/14.0.3/include/vaesintrin.h 1686OLD_FILES+=usr/lib/clang/14.0.3/include/varargs.h 1687OLD_FILES+=usr/lib/clang/14.0.3/include/vecintrin.h 1688OLD_FILES+=usr/lib/clang/14.0.3/include/vpclmulqdqintrin.h 1689OLD_FILES+=usr/lib/clang/14.0.3/include/waitpkgintrin.h 1690OLD_FILES+=usr/lib/clang/14.0.3/include/wasm_simd128.h 1691OLD_FILES+=usr/lib/clang/14.0.3/include/wbnoinvdintrin.h 1692OLD_FILES+=usr/lib/clang/14.0.3/include/wmmintrin.h 1693OLD_FILES+=usr/lib/clang/14.0.3/include/x86gprintrin.h 1694OLD_FILES+=usr/lib/clang/14.0.3/include/x86intrin.h 1695OLD_FILES+=usr/lib/clang/14.0.3/include/xmmintrin.h 1696OLD_FILES+=usr/lib/clang/14.0.3/include/xopintrin.h 1697OLD_FILES+=usr/lib/clang/14.0.3/include/xsavecintrin.h 1698OLD_FILES+=usr/lib/clang/14.0.3/include/xsaveintrin.h 1699OLD_FILES+=usr/lib/clang/14.0.3/include/xsaveoptintrin.h 1700OLD_FILES+=usr/lib/clang/14.0.3/include/xsavesintrin.h 1701OLD_FILES+=usr/lib/clang/14.0.3/include/xtestintrin.h 1702OLD_DIRS+=usr/lib/clang/14.0.3/include 1703OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-aarch64.a 1704OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-aarch64.so 1705OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-arm.a 1706OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-arm.so 1707OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-armhf.a 1708OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-armhf.so 1709OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-i386.a 1710OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-i386.so 1711OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 1712OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-preinit-arm.a 1713OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-preinit-armhf.a 1714OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-preinit-i386.a 1715OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 1716OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-x86_64.a 1717OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan-x86_64.so 1718OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 1719OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_cxx-arm.a 1720OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_cxx-armhf.a 1721OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_cxx-i386.a 1722OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 1723OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_static-i386.a 1724OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.asan_static-x86_64.a 1725OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi-aarch64.a 1726OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi-arm.a 1727OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi-armhf.a 1728OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi-i386.a 1729OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi-x86_64.a 1730OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 1731OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi_diag-arm.a 1732OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi_diag-armhf.a 1733OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi_diag-i386.a 1734OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 1735OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.dd-aarch64.a 1736OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.dd-x86_64.a 1737OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.fuzzer-aarch64.a 1738OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.fuzzer-x86_64.a 1739OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.fuzzer_interceptors-x86_64.a 1740OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 1741OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 1742OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.msan-aarch64.a 1743OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.msan-x86_64.a 1744OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 1745OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 1746OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-aarch64.a 1747OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-arm.a 1748OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-armhf.a 1749OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-i386.a 1750OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-powerpc.a 1751OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-powerpc64.a 1752OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-powerpc64le.a 1753OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.profile-x86_64.a 1754OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.safestack-aarch64.a 1755OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.safestack-i386.a 1756OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.safestack-x86_64.a 1757OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats-aarch64.a 1758OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats-arm.a 1759OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats-armhf.a 1760OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats-i386.a 1761OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats-x86_64.a 1762OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats_client-aarch64.a 1763OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats_client-arm.a 1764OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats_client-armhf.a 1765OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats_client-i386.a 1766OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.stats_client-x86_64.a 1767OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.tsan-aarch64.a 1768OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.tsan-x86_64.a 1769OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 1770OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 1771OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 1772OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 1773OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 1774OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 1775OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 1776OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 1777OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 1778OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 1779OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 1780OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 1781OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 1782OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 1783OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 1784OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 1785OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 1786OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-aarch64.a 1787OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-arm.a 1788OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-armhf.a 1789OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-basic-aarch64.a 1790OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-basic-arm.a 1791OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-basic-armhf.a 1792OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-basic-x86_64.a 1793OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 1794OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-fdr-arm.a 1795OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-fdr-armhf.a 1796OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 1797OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 1798OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-profiling-arm.a 1799OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-profiling-armhf.a 1800OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 1801OLD_FILES+=usr/lib/clang/14.0.3/lib/freebsd/libclang_rt.xray-x86_64.a 1802OLD_DIRS+=usr/lib/clang/14.0.3/lib/freebsd 1803OLD_DIRS+=usr/lib/clang/14.0.3/lib/share 1804OLD_DIRS+=usr/lib/clang/14.0.3/lib 1805OLD_FILES+=usr/lib/clang/14.0.3/share/asan_ignorelist.txt 1806OLD_FILES+=usr/lib/clang/14.0.3/share/cfi_ignorelist.txt 1807OLD_FILES+=usr/lib/clang/14.0.3/share/msan_ignorelist.txt 1808OLD_DIRS+=usr/lib/clang/14.0.3/share 1809OLD_DIRS+=usr/lib/clang/14.0.3 1810 1811# 20220524: libkqueue test updates 1812OLD_FILES+=usr/tests/sys/kqueue/libkqueue/kqtest 1813 1814# 20220514: new clang import which bumps version from 13.0.0 to 14.0.3 1815OLD_FILES+=usr/lib/clang/13.0.0/include/cuda_wrappers/algorithm 1816OLD_FILES+=usr/lib/clang/13.0.0/include/cuda_wrappers/complex 1817OLD_FILES+=usr/lib/clang/13.0.0/include/cuda_wrappers/new 1818OLD_DIRS+=usr/lib/clang/13.0.0/include/cuda_wrappers 1819OLD_FILES+=usr/lib/clang/13.0.0/include/fuzzer/FuzzedDataProvider.h 1820OLD_DIRS+=usr/lib/clang/13.0.0/include/fuzzer 1821OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/__clang_openmp_device_functions.h 1822OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/cmath 1823OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/complex 1824OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/complex.h 1825OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/complex_cmath.h 1826OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/math.h 1827OLD_FILES+=usr/lib/clang/13.0.0/include/openmp_wrappers/new 1828OLD_DIRS+=usr/lib/clang/13.0.0/include/openmp_wrappers 1829OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/emmintrin.h 1830OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/mm_malloc.h 1831OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/mmintrin.h 1832OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/pmmintrin.h 1833OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/smmintrin.h 1834OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/tmmintrin.h 1835OLD_FILES+=usr/lib/clang/13.0.0/include/ppc_wrappers/xmmintrin.h 1836OLD_DIRS+=usr/lib/clang/13.0.0/include/ppc_wrappers 1837OLD_FILES+=usr/lib/clang/13.0.0/include/profile/InstrProfData.inc 1838OLD_DIRS+=usr/lib/clang/13.0.0/include/profile 1839OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/allocator_interface.h 1840OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/asan_interface.h 1841OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/common_interface_defs.h 1842OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/coverage_interface.h 1843OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/dfsan_interface.h 1844OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/hwasan_interface.h 1845OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/linux_syscall_hooks.h 1846OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/lsan_interface.h 1847OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/msan_interface.h 1848OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/netbsd_syscall_hooks.h 1849OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/scudo_interface.h 1850OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/tsan_interface.h 1851OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/tsan_interface_atomic.h 1852OLD_FILES+=usr/lib/clang/13.0.0/include/sanitizer/ubsan_interface.h 1853OLD_DIRS+=usr/lib/clang/13.0.0/include/sanitizer 1854OLD_FILES+=usr/lib/clang/13.0.0/include/xray/xray_interface.h 1855OLD_FILES+=usr/lib/clang/13.0.0/include/xray/xray_log_interface.h 1856OLD_FILES+=usr/lib/clang/13.0.0/include/xray/xray_records.h 1857OLD_DIRS+=usr/lib/clang/13.0.0/include/xray 1858OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_builtin_vars.h 1859OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_cmath.h 1860OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_complex_builtins.h 1861OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_device_functions.h 1862OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_intrinsics.h 1863OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_libdevice_declares.h 1864OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_math.h 1865OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_math_forward_declares.h 1866OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_cuda_runtime_wrapper.h 1867OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_hip_cmath.h 1868OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_hip_libdevice_declares.h 1869OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_hip_math.h 1870OLD_FILES+=usr/lib/clang/13.0.0/include/__clang_hip_runtime_wrapper.h 1871OLD_FILES+=usr/lib/clang/13.0.0/include/__stddef_max_align_t.h 1872OLD_FILES+=usr/lib/clang/13.0.0/include/__wmmintrin_aes.h 1873OLD_FILES+=usr/lib/clang/13.0.0/include/__wmmintrin_pclmul.h 1874OLD_FILES+=usr/lib/clang/13.0.0/include/adxintrin.h 1875OLD_FILES+=usr/lib/clang/13.0.0/include/altivec.h 1876OLD_FILES+=usr/lib/clang/13.0.0/include/ammintrin.h 1877OLD_FILES+=usr/lib/clang/13.0.0/include/amxintrin.h 1878OLD_FILES+=usr/lib/clang/13.0.0/include/arm64intr.h 1879OLD_FILES+=usr/lib/clang/13.0.0/include/arm_acle.h 1880OLD_FILES+=usr/lib/clang/13.0.0/include/arm_bf16.h 1881OLD_FILES+=usr/lib/clang/13.0.0/include/arm_cde.h 1882OLD_FILES+=usr/lib/clang/13.0.0/include/arm_cmse.h 1883OLD_FILES+=usr/lib/clang/13.0.0/include/arm_fp16.h 1884OLD_FILES+=usr/lib/clang/13.0.0/include/arm_mve.h 1885OLD_FILES+=usr/lib/clang/13.0.0/include/arm_neon.h 1886OLD_FILES+=usr/lib/clang/13.0.0/include/arm_sve.h 1887OLD_FILES+=usr/lib/clang/13.0.0/include/armintr.h 1888OLD_FILES+=usr/lib/clang/13.0.0/include/avx2intrin.h 1889OLD_FILES+=usr/lib/clang/13.0.0/include/avx512bf16intrin.h 1890OLD_FILES+=usr/lib/clang/13.0.0/include/avx512bitalgintrin.h 1891OLD_FILES+=usr/lib/clang/13.0.0/include/avx512bwintrin.h 1892OLD_FILES+=usr/lib/clang/13.0.0/include/avx512cdintrin.h 1893OLD_FILES+=usr/lib/clang/13.0.0/include/avx512dqintrin.h 1894OLD_FILES+=usr/lib/clang/13.0.0/include/avx512erintrin.h 1895OLD_FILES+=usr/lib/clang/13.0.0/include/avx512fintrin.h 1896OLD_FILES+=usr/lib/clang/13.0.0/include/avx512ifmaintrin.h 1897OLD_FILES+=usr/lib/clang/13.0.0/include/avx512ifmavlintrin.h 1898OLD_FILES+=usr/lib/clang/13.0.0/include/avx512pfintrin.h 1899OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vbmi2intrin.h 1900OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vbmiintrin.h 1901OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vbmivlintrin.h 1902OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlbf16intrin.h 1903OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlbitalgintrin.h 1904OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlbwintrin.h 1905OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlcdintrin.h 1906OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vldqintrin.h 1907OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlintrin.h 1908OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlvbmi2intrin.h 1909OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlvnniintrin.h 1910OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vlvp2intersectintrin.h 1911OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vnniintrin.h 1912OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vp2intersectintrin.h 1913OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vpopcntdqintrin.h 1914OLD_FILES+=usr/lib/clang/13.0.0/include/avx512vpopcntdqvlintrin.h 1915OLD_FILES+=usr/lib/clang/13.0.0/include/avxintrin.h 1916OLD_FILES+=usr/lib/clang/13.0.0/include/avxvnniintrin.h 1917OLD_FILES+=usr/lib/clang/13.0.0/include/bmi2intrin.h 1918OLD_FILES+=usr/lib/clang/13.0.0/include/bmiintrin.h 1919OLD_FILES+=usr/lib/clang/13.0.0/include/builtins.h 1920OLD_FILES+=usr/lib/clang/13.0.0/include/cet.h 1921OLD_FILES+=usr/lib/clang/13.0.0/include/cetintrin.h 1922OLD_FILES+=usr/lib/clang/13.0.0/include/cldemoteintrin.h 1923OLD_FILES+=usr/lib/clang/13.0.0/include/clflushoptintrin.h 1924OLD_FILES+=usr/lib/clang/13.0.0/include/clwbintrin.h 1925OLD_FILES+=usr/lib/clang/13.0.0/include/clzerointrin.h 1926OLD_FILES+=usr/lib/clang/13.0.0/include/cpuid.h 1927OLD_FILES+=usr/lib/clang/13.0.0/include/emmintrin.h 1928OLD_FILES+=usr/lib/clang/13.0.0/include/enqcmdintrin.h 1929OLD_FILES+=usr/lib/clang/13.0.0/include/f16cintrin.h 1930OLD_FILES+=usr/lib/clang/13.0.0/include/float.h 1931OLD_FILES+=usr/lib/clang/13.0.0/include/fma4intrin.h 1932OLD_FILES+=usr/lib/clang/13.0.0/include/fmaintrin.h 1933OLD_FILES+=usr/lib/clang/13.0.0/include/fxsrintrin.h 1934OLD_FILES+=usr/lib/clang/13.0.0/include/gfniintrin.h 1935OLD_FILES+=usr/lib/clang/13.0.0/include/hexagon_circ_brev_intrinsics.h 1936OLD_FILES+=usr/lib/clang/13.0.0/include/hexagon_protos.h 1937OLD_FILES+=usr/lib/clang/13.0.0/include/hexagon_types.h 1938OLD_FILES+=usr/lib/clang/13.0.0/include/hresetintrin.h 1939OLD_FILES+=usr/lib/clang/13.0.0/include/htmintrin.h 1940OLD_FILES+=usr/lib/clang/13.0.0/include/htmxlintrin.h 1941OLD_FILES+=usr/lib/clang/13.0.0/include/hvx_hexagon_protos.h 1942OLD_FILES+=usr/lib/clang/13.0.0/include/ia32intrin.h 1943OLD_FILES+=usr/lib/clang/13.0.0/include/immintrin.h 1944OLD_FILES+=usr/lib/clang/13.0.0/include/intrin.h 1945OLD_FILES+=usr/lib/clang/13.0.0/include/inttypes.h 1946OLD_FILES+=usr/lib/clang/13.0.0/include/invpcidintrin.h 1947OLD_FILES+=usr/lib/clang/13.0.0/include/iso646.h 1948OLD_FILES+=usr/lib/clang/13.0.0/include/keylockerintrin.h 1949OLD_FILES+=usr/lib/clang/13.0.0/include/limits.h 1950OLD_FILES+=usr/lib/clang/13.0.0/include/lwpintrin.h 1951OLD_FILES+=usr/lib/clang/13.0.0/include/lzcntintrin.h 1952OLD_FILES+=usr/lib/clang/13.0.0/include/mm3dnow.h 1953OLD_FILES+=usr/lib/clang/13.0.0/include/mm_malloc.h 1954OLD_FILES+=usr/lib/clang/13.0.0/include/mmintrin.h 1955OLD_FILES+=usr/lib/clang/13.0.0/include/module.modulemap 1956OLD_FILES+=usr/lib/clang/13.0.0/include/movdirintrin.h 1957OLD_FILES+=usr/lib/clang/13.0.0/include/msa.h 1958OLD_FILES+=usr/lib/clang/13.0.0/include/mwaitxintrin.h 1959OLD_FILES+=usr/lib/clang/13.0.0/include/nmmintrin.h 1960OLD_FILES+=usr/lib/clang/13.0.0/include/omp-tools.h 1961OLD_FILES+=usr/lib/clang/13.0.0/include/omp.h 1962OLD_FILES+=usr/lib/clang/13.0.0/include/ompt.h 1963OLD_FILES+=usr/lib/clang/13.0.0/include/opencl-c-base.h 1964OLD_FILES+=usr/lib/clang/13.0.0/include/opencl-c.h 1965OLD_FILES+=usr/lib/clang/13.0.0/include/pconfigintrin.h 1966OLD_FILES+=usr/lib/clang/13.0.0/include/pkuintrin.h 1967OLD_FILES+=usr/lib/clang/13.0.0/include/pmmintrin.h 1968OLD_FILES+=usr/lib/clang/13.0.0/include/popcntintrin.h 1969OLD_FILES+=usr/lib/clang/13.0.0/include/prfchwintrin.h 1970OLD_FILES+=usr/lib/clang/13.0.0/include/ptwriteintrin.h 1971OLD_FILES+=usr/lib/clang/13.0.0/include/rdseedintrin.h 1972OLD_FILES+=usr/lib/clang/13.0.0/include/riscv_vector.h 1973OLD_FILES+=usr/lib/clang/13.0.0/include/rtmintrin.h 1974OLD_FILES+=usr/lib/clang/13.0.0/include/s390intrin.h 1975OLD_FILES+=usr/lib/clang/13.0.0/include/serializeintrin.h 1976OLD_FILES+=usr/lib/clang/13.0.0/include/sgxintrin.h 1977OLD_FILES+=usr/lib/clang/13.0.0/include/shaintrin.h 1978OLD_FILES+=usr/lib/clang/13.0.0/include/smmintrin.h 1979OLD_FILES+=usr/lib/clang/13.0.0/include/stdalign.h 1980OLD_FILES+=usr/lib/clang/13.0.0/include/stdarg.h 1981OLD_FILES+=usr/lib/clang/13.0.0/include/stdatomic.h 1982OLD_FILES+=usr/lib/clang/13.0.0/include/stdbool.h 1983OLD_FILES+=usr/lib/clang/13.0.0/include/stddef.h 1984OLD_FILES+=usr/lib/clang/13.0.0/include/stdint.h 1985OLD_FILES+=usr/lib/clang/13.0.0/include/stdnoreturn.h 1986OLD_FILES+=usr/lib/clang/13.0.0/include/tbmintrin.h 1987OLD_FILES+=usr/lib/clang/13.0.0/include/tgmath.h 1988OLD_FILES+=usr/lib/clang/13.0.0/include/tmmintrin.h 1989OLD_FILES+=usr/lib/clang/13.0.0/include/tsxldtrkintrin.h 1990OLD_FILES+=usr/lib/clang/13.0.0/include/uintrintrin.h 1991OLD_FILES+=usr/lib/clang/13.0.0/include/unwind.h 1992OLD_FILES+=usr/lib/clang/13.0.0/include/vadefs.h 1993OLD_FILES+=usr/lib/clang/13.0.0/include/vaesintrin.h 1994OLD_FILES+=usr/lib/clang/13.0.0/include/varargs.h 1995OLD_FILES+=usr/lib/clang/13.0.0/include/vecintrin.h 1996OLD_FILES+=usr/lib/clang/13.0.0/include/vpclmulqdqintrin.h 1997OLD_FILES+=usr/lib/clang/13.0.0/include/waitpkgintrin.h 1998OLD_FILES+=usr/lib/clang/13.0.0/include/wasm_simd128.h 1999OLD_FILES+=usr/lib/clang/13.0.0/include/wbnoinvdintrin.h 2000OLD_FILES+=usr/lib/clang/13.0.0/include/wmmintrin.h 2001OLD_FILES+=usr/lib/clang/13.0.0/include/x86gprintrin.h 2002OLD_FILES+=usr/lib/clang/13.0.0/include/x86intrin.h 2003OLD_FILES+=usr/lib/clang/13.0.0/include/xmmintrin.h 2004OLD_FILES+=usr/lib/clang/13.0.0/include/xopintrin.h 2005OLD_FILES+=usr/lib/clang/13.0.0/include/xsavecintrin.h 2006OLD_FILES+=usr/lib/clang/13.0.0/include/xsaveintrin.h 2007OLD_FILES+=usr/lib/clang/13.0.0/include/xsaveoptintrin.h 2008OLD_FILES+=usr/lib/clang/13.0.0/include/xsavesintrin.h 2009OLD_FILES+=usr/lib/clang/13.0.0/include/xtestintrin.h 2010OLD_DIRS+=usr/lib/clang/13.0.0/include 2011OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-aarch64.a 2012OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-aarch64.so 2013OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-arm.a 2014OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-arm.so 2015OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-armhf.a 2016OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-armhf.so 2017OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-i386.a 2018OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-i386.so 2019OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 2020OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a 2021OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-preinit-armhf.a 2022OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 2023OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 2024OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 2025OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 2026OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 2027OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a 2028OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan_cxx-armhf.a 2029OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 2030OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 2031OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi-aarch64.a 2032OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi-arm.a 2033OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi-armhf.a 2034OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi-i386.a 2035OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi-x86_64.a 2036OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 2037OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi_diag-arm.a 2038OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi_diag-armhf.a 2039OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi_diag-i386.a 2040OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 2041OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.dd-aarch64.a 2042OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.dd-x86_64.a 2043OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.fuzzer-aarch64.a 2044OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.fuzzer-x86_64.a 2045OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 2046OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 2047OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.msan-aarch64.a 2048OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.msan-x86_64.a 2049OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 2050OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 2051OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-aarch64.a 2052OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-arm.a 2053OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-armhf.a 2054OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-i386.a 2055OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-powerpc.a 2056OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-powerpc64.a 2057OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-powerpc64le.a 2058OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 2059OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.safestack-aarch64.a 2060OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.safestack-i386.a 2061OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 2062OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats-aarch64.a 2063OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats-arm.a 2064OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats-armhf.a 2065OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats-i386.a 2066OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 2067OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats_client-aarch64.a 2068OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats_client-arm.a 2069OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats_client-armhf.a 2070OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 2071OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 2072OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.tsan-aarch64.a 2073OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 2074OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 2075OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 2076OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 2077OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 2078OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 2079OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 2080OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 2081OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 2082OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 2083OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 2084OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 2085OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 2086OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 2087OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 2088OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 2089OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 2090OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 2091OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-aarch64.a 2092OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-arm.a 2093OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-armhf.a 2094OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-basic-aarch64.a 2095OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-basic-arm.a 2096OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-basic-armhf.a 2097OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-basic-x86_64.a 2098OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 2099OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-fdr-arm.a 2100OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-fdr-armhf.a 2101OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 2102OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 2103OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-profiling-arm.a 2104OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-profiling-armhf.a 2105OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 2106OLD_FILES+=usr/lib/clang/13.0.0/lib/freebsd/libclang_rt.xray-x86_64.a 2107OLD_DIRS+=usr/lib/clang/13.0.0/lib/freebsd 2108OLD_DIRS+=usr/lib/clang/13.0.0/lib 2109OLD_DIRS+=usr/lib/clang/13.0.0 2110 2111# 20220514: new libc++ import which bumps version from 13.0.0 to 14.0.3 2112OLD_FILES+=usr/include/c++/v1/__function_like.h 2113OLD_FILES+=usr/include/c++/v1/__memory/pointer_safety.h 2114OLD_FILES+=usr/include/c++/v1/__utility/__decay_copy.h 2115 2116# 20220418: uudecode merged into uuencode and renamed to bintrans 2117OLD_FILES+=usr/lib/debug/usr/bin/uuencode.debug 2118OLD_FILES+=usr/lib/debug/usr/bin/uudecode.debug 2119OLD_FILES+=usr/tests/usr.bin/uuencode/Kyuafile 2120OLD_FILES+=usr/tests/usr.bin/uuencode/legacy_test 2121OLD_FILES+=usr/tests/usr.bin/uuencode/regress.base64.in 2122OLD_FILES+=usr/tests/usr.bin/uuencode/regress.traditional.out 2123OLD_FILES+=usr/tests/usr.bin/uuencode/regress.traditional.in 2124OLD_FILES+=usr/tests/usr.bin/uuencode/regress.out 2125OLD_FILES+=usr/tests/usr.bin/uuencode/regress.sh 2126OLD_FILES+=usr/tests/usr.bin/uuencode/regress.in 2127OLD_FILES+=usr/tests/usr.bin/uuencode/regress.153276.in 2128OLD_FILES+=usr/tests/usr.bin/uuencode/regress.base64.out 2129OLD_FILES+=usr/tests/usr.bin/uuencode/regress.153276.out 2130OLD_FILES+=usr/tests/usr.bin/uudecode/regress.base64.in 2131OLD_FILES+=usr/tests/usr.bin/uudecode/Kyuafile 2132OLD_FILES+=usr/tests/usr.bin/uudecode/regress.out 2133OLD_FILES+=usr/tests/usr.bin/uudecode/regress.sh 2134OLD_FILES+=usr/tests/usr.bin/uudecode/regress.153276.out 2135OLD_FILES+=usr/tests/usr.bin/uudecode/regress.traditional.in 2136OLD_FILES+=usr/tests/usr.bin/uudecode/legacy_test 2137OLD_FILES+=usr/tests/usr.bin/uudecode/regress.153276.in 2138OLD_DIRS+=usr/tests/usr.bin/uuencode 2139OLD_DIRS+=usr/tests/usr.bin/uudecode 2140 2141# 20220318: snd_ds1 and snd_maestro drivers removed 2142OLD_FILES+=usr/share/man/man4/snd_ds1.4.gz 2143OLD_FILES+=usr/share/man/man4/snd_maestro.4.gz 2144 2145# 20220307: remove 330.news 2146OLD_FILES+=etc/periodic/daily/330.news 2147 2148# 20220210: unwind.h moved to /usr/include 2149OLD_FILES+=usr/include/c++/v1/unwind-arm.h 2150OLD_FILES+=usr/include/c++/v1/unwind-itanium.h 2151OLD_FILES+=usr/include/c++/v1/unwind.h 2152 2153# 20220128: mips pmc events removed 2154OLD_FILES+=usr/share/man/man3/pmc.mips24k.3.gz 2155OLD_FILES+=usr/share/man/man3/pmc.octeon.3.gz 2156 2157# 20220127: terasic_mtl.4 removed 2158OLD_FILES+=usr/share/man/man4/terasic_mtl.4.gz 2159 2160# 20211229: libc++ moved to /lib 2161MOVED_LIBS+=usr/lib/libc++.so.1 2162 2163# 20211221: efi_set_variables_supported.3 should be efi_variables_supported.3 2164OLD_FILES+=usr/share/man/man3/efi_set_variables_supported.3.gz 2165 2166# 20211218: meteor.4 removed, see also 20200301 entry below 2167OLD_FILES+=usr/share/man/man4/meteor.4.gz 2168 2169# 20211125: Old SCSI drivers removed 2170OLD_FILES+=usr/include/dev/ic/esp.h 2171OLD_FILES+=usr/share/man/man4/amr.4.gz 2172OLD_FILES+=usr/share/man/man4/esp.4.gz 2173OLD_FILES+=usr/share/man/man4/iir.4.gz 2174OLD_FILES+=usr/share/man/man4/mly.4.gz 2175OLD_FILES+=usr/share/man/man4/twa.4.gz 2176 2177# 20211120: kernel_vmount function removed 2178OLD_FILES+=usr/share/man/man9/kernel_vmount.9.gz 2179 2180# 20211115: vm_page busy functions removed 2181OLD_FILES+=share/man/man9/vm_page_sbusy.9.gz 2182OLD_FILES+=share/man/man9/vm_page_xbusy.9.gz 2183OLD_FILES+=share/man/man9/vm_page_sleep_if_busy.9.gz 2184 2185# 20211113: new clang import which bumps version from 12.0.1 to 13.0.0 2186OLD_FILES+=usr/lib/clang/12.0.1/include/cuda_wrappers/algorithm 2187OLD_FILES+=usr/lib/clang/12.0.1/include/cuda_wrappers/complex 2188OLD_FILES+=usr/lib/clang/12.0.1/include/cuda_wrappers/new 2189OLD_DIRS+=usr/lib/clang/12.0.1/include/cuda_wrappers 2190OLD_FILES+=usr/lib/clang/12.0.1/include/fuzzer/FuzzedDataProvider.h 2191OLD_DIRS+=usr/lib/clang/12.0.1/include/fuzzer 2192OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/__clang_openmp_device_functions.h 2193OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/cmath 2194OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/complex 2195OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/complex.h 2196OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/complex_cmath.h 2197OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/math.h 2198OLD_FILES+=usr/lib/clang/12.0.1/include/openmp_wrappers/new 2199OLD_DIRS+=usr/lib/clang/12.0.1/include/openmp_wrappers 2200OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/emmintrin.h 2201OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/mm_malloc.h 2202OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/mmintrin.h 2203OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/pmmintrin.h 2204OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/smmintrin.h 2205OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/tmmintrin.h 2206OLD_FILES+=usr/lib/clang/12.0.1/include/ppc_wrappers/xmmintrin.h 2207OLD_DIRS+=usr/lib/clang/12.0.1/include/ppc_wrappers 2208OLD_FILES+=usr/lib/clang/12.0.1/include/profile/InstrProfData.inc 2209OLD_DIRS+=usr/lib/clang/12.0.1/include/profile 2210OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/allocator_interface.h 2211OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/asan_interface.h 2212OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/common_interface_defs.h 2213OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/coverage_interface.h 2214OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/dfsan_interface.h 2215OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/hwasan_interface.h 2216OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/linux_syscall_hooks.h 2217OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/lsan_interface.h 2218OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/msan_interface.h 2219OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/netbsd_syscall_hooks.h 2220OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/scudo_interface.h 2221OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/tsan_interface.h 2222OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/tsan_interface_atomic.h 2223OLD_FILES+=usr/lib/clang/12.0.1/include/sanitizer/ubsan_interface.h 2224OLD_DIRS+=usr/lib/clang/12.0.1/include/sanitizer 2225OLD_FILES+=usr/lib/clang/12.0.1/include/xray/xray_interface.h 2226OLD_FILES+=usr/lib/clang/12.0.1/include/xray/xray_log_interface.h 2227OLD_FILES+=usr/lib/clang/12.0.1/include/xray/xray_records.h 2228OLD_DIRS+=usr/lib/clang/12.0.1/include/xray 2229OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_builtin_vars.h 2230OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_cmath.h 2231OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_complex_builtins.h 2232OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_device_functions.h 2233OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_intrinsics.h 2234OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_libdevice_declares.h 2235OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_math.h 2236OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_math_forward_declares.h 2237OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_cuda_runtime_wrapper.h 2238OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_hip_cmath.h 2239OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_hip_libdevice_declares.h 2240OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_hip_math.h 2241OLD_FILES+=usr/lib/clang/12.0.1/include/__clang_hip_runtime_wrapper.h 2242OLD_FILES+=usr/lib/clang/12.0.1/include/__stddef_max_align_t.h 2243OLD_FILES+=usr/lib/clang/12.0.1/include/__wmmintrin_aes.h 2244OLD_FILES+=usr/lib/clang/12.0.1/include/__wmmintrin_pclmul.h 2245OLD_FILES+=usr/lib/clang/12.0.1/include/adxintrin.h 2246OLD_FILES+=usr/lib/clang/12.0.1/include/altivec.h 2247OLD_FILES+=usr/lib/clang/12.0.1/include/ammintrin.h 2248OLD_FILES+=usr/lib/clang/12.0.1/include/amxintrin.h 2249OLD_FILES+=usr/lib/clang/12.0.1/include/arm64intr.h 2250OLD_FILES+=usr/lib/clang/12.0.1/include/arm_acle.h 2251OLD_FILES+=usr/lib/clang/12.0.1/include/arm_bf16.h 2252OLD_FILES+=usr/lib/clang/12.0.1/include/arm_cde.h 2253OLD_FILES+=usr/lib/clang/12.0.1/include/arm_cmse.h 2254OLD_FILES+=usr/lib/clang/12.0.1/include/arm_fp16.h 2255OLD_FILES+=usr/lib/clang/12.0.1/include/arm_mve.h 2256OLD_FILES+=usr/lib/clang/12.0.1/include/arm_neon.h 2257OLD_FILES+=usr/lib/clang/12.0.1/include/arm_sve.h 2258OLD_FILES+=usr/lib/clang/12.0.1/include/armintr.h 2259OLD_FILES+=usr/lib/clang/12.0.1/include/avx2intrin.h 2260OLD_FILES+=usr/lib/clang/12.0.1/include/avx512bf16intrin.h 2261OLD_FILES+=usr/lib/clang/12.0.1/include/avx512bitalgintrin.h 2262OLD_FILES+=usr/lib/clang/12.0.1/include/avx512bwintrin.h 2263OLD_FILES+=usr/lib/clang/12.0.1/include/avx512cdintrin.h 2264OLD_FILES+=usr/lib/clang/12.0.1/include/avx512dqintrin.h 2265OLD_FILES+=usr/lib/clang/12.0.1/include/avx512erintrin.h 2266OLD_FILES+=usr/lib/clang/12.0.1/include/avx512fintrin.h 2267OLD_FILES+=usr/lib/clang/12.0.1/include/avx512ifmaintrin.h 2268OLD_FILES+=usr/lib/clang/12.0.1/include/avx512ifmavlintrin.h 2269OLD_FILES+=usr/lib/clang/12.0.1/include/avx512pfintrin.h 2270OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vbmi2intrin.h 2271OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vbmiintrin.h 2272OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vbmivlintrin.h 2273OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlbf16intrin.h 2274OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlbitalgintrin.h 2275OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlbwintrin.h 2276OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlcdintrin.h 2277OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vldqintrin.h 2278OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlintrin.h 2279OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlvbmi2intrin.h 2280OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlvnniintrin.h 2281OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vlvp2intersectintrin.h 2282OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vnniintrin.h 2283OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vp2intersectintrin.h 2284OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vpopcntdqintrin.h 2285OLD_FILES+=usr/lib/clang/12.0.1/include/avx512vpopcntdqvlintrin.h 2286OLD_FILES+=usr/lib/clang/12.0.1/include/avxintrin.h 2287OLD_FILES+=usr/lib/clang/12.0.1/include/avxvnniintrin.h 2288OLD_FILES+=usr/lib/clang/12.0.1/include/bmi2intrin.h 2289OLD_FILES+=usr/lib/clang/12.0.1/include/bmiintrin.h 2290OLD_FILES+=usr/lib/clang/12.0.1/include/cet.h 2291OLD_FILES+=usr/lib/clang/12.0.1/include/cetintrin.h 2292OLD_FILES+=usr/lib/clang/12.0.1/include/cldemoteintrin.h 2293OLD_FILES+=usr/lib/clang/12.0.1/include/clflushoptintrin.h 2294OLD_FILES+=usr/lib/clang/12.0.1/include/clwbintrin.h 2295OLD_FILES+=usr/lib/clang/12.0.1/include/clzerointrin.h 2296OLD_FILES+=usr/lib/clang/12.0.1/include/cpuid.h 2297OLD_FILES+=usr/lib/clang/12.0.1/include/emmintrin.h 2298OLD_FILES+=usr/lib/clang/12.0.1/include/enqcmdintrin.h 2299OLD_FILES+=usr/lib/clang/12.0.1/include/f16cintrin.h 2300OLD_FILES+=usr/lib/clang/12.0.1/include/float.h 2301OLD_FILES+=usr/lib/clang/12.0.1/include/fma4intrin.h 2302OLD_FILES+=usr/lib/clang/12.0.1/include/fmaintrin.h 2303OLD_FILES+=usr/lib/clang/12.0.1/include/fxsrintrin.h 2304OLD_FILES+=usr/lib/clang/12.0.1/include/gfniintrin.h 2305OLD_FILES+=usr/lib/clang/12.0.1/include/hresetintrin.h 2306OLD_FILES+=usr/lib/clang/12.0.1/include/htmintrin.h 2307OLD_FILES+=usr/lib/clang/12.0.1/include/htmxlintrin.h 2308OLD_FILES+=usr/lib/clang/12.0.1/include/ia32intrin.h 2309OLD_FILES+=usr/lib/clang/12.0.1/include/immintrin.h 2310OLD_FILES+=usr/lib/clang/12.0.1/include/intrin.h 2311OLD_FILES+=usr/lib/clang/12.0.1/include/inttypes.h 2312OLD_FILES+=usr/lib/clang/12.0.1/include/invpcidintrin.h 2313OLD_FILES+=usr/lib/clang/12.0.1/include/iso646.h 2314OLD_FILES+=usr/lib/clang/12.0.1/include/keylockerintrin.h 2315OLD_FILES+=usr/lib/clang/12.0.1/include/limits.h 2316OLD_FILES+=usr/lib/clang/12.0.1/include/lwpintrin.h 2317OLD_FILES+=usr/lib/clang/12.0.1/include/lzcntintrin.h 2318OLD_FILES+=usr/lib/clang/12.0.1/include/mm3dnow.h 2319OLD_FILES+=usr/lib/clang/12.0.1/include/mm_malloc.h 2320OLD_FILES+=usr/lib/clang/12.0.1/include/mmintrin.h 2321OLD_FILES+=usr/lib/clang/12.0.1/include/module.modulemap 2322OLD_FILES+=usr/lib/clang/12.0.1/include/movdirintrin.h 2323OLD_FILES+=usr/lib/clang/12.0.1/include/msa.h 2324OLD_FILES+=usr/lib/clang/12.0.1/include/mwaitxintrin.h 2325OLD_FILES+=usr/lib/clang/12.0.1/include/nmmintrin.h 2326OLD_FILES+=usr/lib/clang/12.0.1/include/omp-tools.h 2327OLD_FILES+=usr/lib/clang/12.0.1/include/omp.h 2328OLD_FILES+=usr/lib/clang/12.0.1/include/ompt.h 2329OLD_FILES+=usr/lib/clang/12.0.1/include/opencl-c-base.h 2330OLD_FILES+=usr/lib/clang/12.0.1/include/opencl-c.h 2331OLD_FILES+=usr/lib/clang/12.0.1/include/pconfigintrin.h 2332OLD_FILES+=usr/lib/clang/12.0.1/include/pkuintrin.h 2333OLD_FILES+=usr/lib/clang/12.0.1/include/pmmintrin.h 2334OLD_FILES+=usr/lib/clang/12.0.1/include/popcntintrin.h 2335OLD_FILES+=usr/lib/clang/12.0.1/include/prfchwintrin.h 2336OLD_FILES+=usr/lib/clang/12.0.1/include/ptwriteintrin.h 2337OLD_FILES+=usr/lib/clang/12.0.1/include/rdseedintrin.h 2338OLD_FILES+=usr/lib/clang/12.0.1/include/rtmintrin.h 2339OLD_FILES+=usr/lib/clang/12.0.1/include/s390intrin.h 2340OLD_FILES+=usr/lib/clang/12.0.1/include/serializeintrin.h 2341OLD_FILES+=usr/lib/clang/12.0.1/include/sgxintrin.h 2342OLD_FILES+=usr/lib/clang/12.0.1/include/shaintrin.h 2343OLD_FILES+=usr/lib/clang/12.0.1/include/smmintrin.h 2344OLD_FILES+=usr/lib/clang/12.0.1/include/stdalign.h 2345OLD_FILES+=usr/lib/clang/12.0.1/include/stdarg.h 2346OLD_FILES+=usr/lib/clang/12.0.1/include/stdatomic.h 2347OLD_FILES+=usr/lib/clang/12.0.1/include/stdbool.h 2348OLD_FILES+=usr/lib/clang/12.0.1/include/stddef.h 2349OLD_FILES+=usr/lib/clang/12.0.1/include/stdint.h 2350OLD_FILES+=usr/lib/clang/12.0.1/include/stdnoreturn.h 2351OLD_FILES+=usr/lib/clang/12.0.1/include/tbmintrin.h 2352OLD_FILES+=usr/lib/clang/12.0.1/include/tgmath.h 2353OLD_FILES+=usr/lib/clang/12.0.1/include/tmmintrin.h 2354OLD_FILES+=usr/lib/clang/12.0.1/include/tsxldtrkintrin.h 2355OLD_FILES+=usr/lib/clang/12.0.1/include/uintrintrin.h 2356OLD_FILES+=usr/lib/clang/12.0.1/include/unwind.h 2357OLD_FILES+=usr/lib/clang/12.0.1/include/vadefs.h 2358OLD_FILES+=usr/lib/clang/12.0.1/include/vaesintrin.h 2359OLD_FILES+=usr/lib/clang/12.0.1/include/varargs.h 2360OLD_FILES+=usr/lib/clang/12.0.1/include/vecintrin.h 2361OLD_FILES+=usr/lib/clang/12.0.1/include/vpclmulqdqintrin.h 2362OLD_FILES+=usr/lib/clang/12.0.1/include/waitpkgintrin.h 2363OLD_FILES+=usr/lib/clang/12.0.1/include/wasm_simd128.h 2364OLD_FILES+=usr/lib/clang/12.0.1/include/wbnoinvdintrin.h 2365OLD_FILES+=usr/lib/clang/12.0.1/include/wmmintrin.h 2366OLD_FILES+=usr/lib/clang/12.0.1/include/x86gprintrin.h 2367OLD_FILES+=usr/lib/clang/12.0.1/include/x86intrin.h 2368OLD_FILES+=usr/lib/clang/12.0.1/include/xmmintrin.h 2369OLD_FILES+=usr/lib/clang/12.0.1/include/xopintrin.h 2370OLD_FILES+=usr/lib/clang/12.0.1/include/xsavecintrin.h 2371OLD_FILES+=usr/lib/clang/12.0.1/include/xsaveintrin.h 2372OLD_FILES+=usr/lib/clang/12.0.1/include/xsaveoptintrin.h 2373OLD_FILES+=usr/lib/clang/12.0.1/include/xsavesintrin.h 2374OLD_FILES+=usr/lib/clang/12.0.1/include/xtestintrin.h 2375OLD_DIRS+=usr/lib/clang/12.0.1/include 2376OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-aarch64.a 2377OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-aarch64.so 2378OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-arm.a 2379OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-arm.so 2380OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-armhf.a 2381OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-armhf.so 2382OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-i386.a 2383OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-i386.so 2384OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 2385OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-preinit-arm.a 2386OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-preinit-armhf.a 2387OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 2388OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 2389OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 2390OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 2391OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 2392OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan_cxx-arm.a 2393OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan_cxx-armhf.a 2394OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 2395OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 2396OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi-aarch64.a 2397OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi-arm.a 2398OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi-armhf.a 2399OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi-i386.a 2400OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi-x86_64.a 2401OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 2402OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi_diag-arm.a 2403OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi_diag-armhf.a 2404OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi_diag-i386.a 2405OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 2406OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.dd-aarch64.a 2407OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.dd-x86_64.a 2408OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.fuzzer-aarch64.a 2409OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.fuzzer-x86_64.a 2410OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 2411OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 2412OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.msan-aarch64.a 2413OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.msan-x86_64.a 2414OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 2415OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 2416OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-aarch64.a 2417OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-arm.a 2418OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-armhf.a 2419OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-i386.a 2420OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-powerpc.a 2421OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-powerpc64.a 2422OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-powerpc64le.a 2423OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 2424OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.safestack-aarch64.a 2425OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.safestack-i386.a 2426OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 2427OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats-aarch64.a 2428OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats-arm.a 2429OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats-armhf.a 2430OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats-i386.a 2431OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 2432OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats_client-aarch64.a 2433OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats_client-arm.a 2434OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats_client-armhf.a 2435OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 2436OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 2437OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.tsan-aarch64.a 2438OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 2439OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 2440OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 2441OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 2442OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 2443OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 2444OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 2445OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 2446OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 2447OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 2448OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 2449OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 2450OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 2451OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 2452OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 2453OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 2454OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 2455OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 2456OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-aarch64.a 2457OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-arm.a 2458OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-armhf.a 2459OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-basic-aarch64.a 2460OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-basic-arm.a 2461OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-basic-armhf.a 2462OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-basic-x86_64.a 2463OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 2464OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-fdr-arm.a 2465OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-fdr-armhf.a 2466OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 2467OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 2468OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-profiling-arm.a 2469OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-profiling-armhf.a 2470OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 2471OLD_FILES+=usr/lib/clang/12.0.1/lib/freebsd/libclang_rt.xray-x86_64.a 2472OLD_DIRS+=usr/lib/clang/12.0.1/lib/freebsd 2473OLD_DIRS+=usr/lib/clang/12.0.1/lib 2474OLD_DIRS+=usr/lib/clang/12.0.1 2475 2476# 20211113: new libc++ import which bumps version from 12.0.1 to 13.0.0 2477OLD_FILES+=usr/include/c++/v1/__functional_03 2478OLD_FILES+=usr/include/c++/v1/__functional_base_03 2479OLD_FILES+=usr/include/c++/v1/__memory/base.h 2480OLD_FILES+=usr/include/c++/v1/__memory/utilities.h 2481OLD_FILES+=usr/include/c++/v1/__sso_allocator 2482OLD_FILES+=usr/include/c++/v1/tr1/__availability 2483OLD_FILES+=usr/include/c++/v1/tr1/__bit_reference 2484OLD_FILES+=usr/include/c++/v1/tr1/__bits 2485OLD_FILES+=usr/include/c++/v1/tr1/__bsd_locale_defaults.h 2486OLD_FILES+=usr/include/c++/v1/tr1/__bsd_locale_fallbacks.h 2487OLD_FILES+=usr/include/c++/v1/tr1/__config 2488OLD_FILES+=usr/include/c++/v1/tr1/__debug 2489OLD_FILES+=usr/include/c++/v1/tr1/__errc 2490OLD_FILES+=usr/include/c++/v1/tr1/__functional_03 2491OLD_FILES+=usr/include/c++/v1/tr1/__functional_base 2492OLD_FILES+=usr/include/c++/v1/tr1/__functional_base_03 2493OLD_FILES+=usr/include/c++/v1/tr1/__hash_table 2494OLD_FILES+=usr/include/c++/v1/tr1/__libcpp_version 2495OLD_FILES+=usr/include/c++/v1/tr1/__locale 2496OLD_FILES+=usr/include/c++/v1/tr1/__mutex_base 2497OLD_FILES+=usr/include/c++/v1/tr1/__node_handle 2498OLD_FILES+=usr/include/c++/v1/tr1/__nullptr 2499OLD_FILES+=usr/include/c++/v1/tr1/__split_buffer 2500OLD_FILES+=usr/include/c++/v1/tr1/__sso_allocator 2501OLD_FILES+=usr/include/c++/v1/tr1/__std_stream 2502OLD_FILES+=usr/include/c++/v1/tr1/__string 2503OLD_FILES+=usr/include/c++/v1/tr1/__threading_support 2504OLD_FILES+=usr/include/c++/v1/tr1/__tree 2505OLD_FILES+=usr/include/c++/v1/tr1/__tuple 2506OLD_FILES+=usr/include/c++/v1/tr1/__undef_macros 2507OLD_FILES+=usr/include/c++/v1/tr1/algorithm 2508OLD_FILES+=usr/include/c++/v1/tr1/any 2509OLD_FILES+=usr/include/c++/v1/tr1/array 2510OLD_FILES+=usr/include/c++/v1/tr1/atomic 2511OLD_FILES+=usr/include/c++/v1/tr1/barrier 2512OLD_FILES+=usr/include/c++/v1/tr1/bit 2513OLD_FILES+=usr/include/c++/v1/tr1/bitset 2514OLD_FILES+=usr/include/c++/v1/tr1/cassert 2515OLD_FILES+=usr/include/c++/v1/tr1/ccomplex 2516OLD_FILES+=usr/include/c++/v1/tr1/cctype 2517OLD_FILES+=usr/include/c++/v1/tr1/cerrno 2518OLD_FILES+=usr/include/c++/v1/tr1/cfenv 2519OLD_FILES+=usr/include/c++/v1/tr1/cfloat 2520OLD_FILES+=usr/include/c++/v1/tr1/charconv 2521OLD_FILES+=usr/include/c++/v1/tr1/chrono 2522OLD_FILES+=usr/include/c++/v1/tr1/cinttypes 2523OLD_FILES+=usr/include/c++/v1/tr1/ciso646 2524OLD_FILES+=usr/include/c++/v1/tr1/climits 2525OLD_FILES+=usr/include/c++/v1/tr1/clocale 2526OLD_FILES+=usr/include/c++/v1/tr1/cmath 2527OLD_FILES+=usr/include/c++/v1/tr1/codecvt 2528OLD_FILES+=usr/include/c++/v1/tr1/compare 2529OLD_FILES+=usr/include/c++/v1/tr1/complex 2530OLD_FILES+=usr/include/c++/v1/tr1/complex.h 2531OLD_FILES+=usr/include/c++/v1/tr1/concepts 2532OLD_FILES+=usr/include/c++/v1/tr1/condition_variable 2533OLD_FILES+=usr/include/c++/v1/tr1/csetjmp 2534OLD_FILES+=usr/include/c++/v1/tr1/csignal 2535OLD_FILES+=usr/include/c++/v1/tr1/cstdarg 2536OLD_FILES+=usr/include/c++/v1/tr1/cstdbool 2537OLD_FILES+=usr/include/c++/v1/tr1/cstddef 2538OLD_FILES+=usr/include/c++/v1/tr1/cstdint 2539OLD_FILES+=usr/include/c++/v1/tr1/cstdio 2540OLD_FILES+=usr/include/c++/v1/tr1/cstdlib 2541OLD_FILES+=usr/include/c++/v1/tr1/cstring 2542OLD_FILES+=usr/include/c++/v1/tr1/ctgmath 2543OLD_FILES+=usr/include/c++/v1/tr1/ctime 2544OLD_FILES+=usr/include/c++/v1/tr1/ctype.h 2545OLD_FILES+=usr/include/c++/v1/tr1/cwchar 2546OLD_FILES+=usr/include/c++/v1/tr1/cwctype 2547OLD_FILES+=usr/include/c++/v1/tr1/deque 2548OLD_FILES+=usr/include/c++/v1/tr1/errno.h 2549OLD_FILES+=usr/include/c++/v1/tr1/exception 2550OLD_FILES+=usr/include/c++/v1/tr1/execution 2551OLD_FILES+=usr/include/c++/v1/tr1/fenv.h 2552OLD_FILES+=usr/include/c++/v1/tr1/filesystem 2553OLD_FILES+=usr/include/c++/v1/tr1/float.h 2554OLD_FILES+=usr/include/c++/v1/tr1/forward_list 2555OLD_FILES+=usr/include/c++/v1/tr1/fstream 2556OLD_FILES+=usr/include/c++/v1/tr1/functional 2557OLD_FILES+=usr/include/c++/v1/tr1/future 2558OLD_FILES+=usr/include/c++/v1/tr1/initializer_list 2559OLD_FILES+=usr/include/c++/v1/tr1/inttypes.h 2560OLD_FILES+=usr/include/c++/v1/tr1/iomanip 2561OLD_FILES+=usr/include/c++/v1/tr1/ios 2562OLD_FILES+=usr/include/c++/v1/tr1/iosfwd 2563OLD_FILES+=usr/include/c++/v1/tr1/iostream 2564OLD_FILES+=usr/include/c++/v1/tr1/istream 2565OLD_FILES+=usr/include/c++/v1/tr1/iterator 2566OLD_FILES+=usr/include/c++/v1/tr1/latch 2567OLD_FILES+=usr/include/c++/v1/tr1/limits 2568OLD_FILES+=usr/include/c++/v1/tr1/limits.h 2569OLD_FILES+=usr/include/c++/v1/tr1/list 2570OLD_FILES+=usr/include/c++/v1/tr1/locale 2571OLD_FILES+=usr/include/c++/v1/tr1/locale.h 2572OLD_FILES+=usr/include/c++/v1/tr1/map 2573OLD_FILES+=usr/include/c++/v1/tr1/math.h 2574OLD_FILES+=usr/include/c++/v1/tr1/memory 2575OLD_FILES+=usr/include/c++/v1/tr1/mutex 2576OLD_FILES+=usr/include/c++/v1/tr1/new 2577OLD_FILES+=usr/include/c++/v1/tr1/numbers 2578OLD_FILES+=usr/include/c++/v1/tr1/numeric 2579OLD_FILES+=usr/include/c++/v1/tr1/optional 2580OLD_FILES+=usr/include/c++/v1/tr1/ostream 2581OLD_FILES+=usr/include/c++/v1/tr1/queue 2582OLD_FILES+=usr/include/c++/v1/tr1/random 2583OLD_FILES+=usr/include/c++/v1/tr1/ratio 2584OLD_FILES+=usr/include/c++/v1/tr1/regex 2585OLD_FILES+=usr/include/c++/v1/tr1/scoped_allocator 2586OLD_FILES+=usr/include/c++/v1/tr1/semaphore 2587OLD_FILES+=usr/include/c++/v1/tr1/set 2588OLD_FILES+=usr/include/c++/v1/tr1/setjmp.h 2589OLD_FILES+=usr/include/c++/v1/tr1/shared_mutex 2590OLD_FILES+=usr/include/c++/v1/tr1/span 2591OLD_FILES+=usr/include/c++/v1/tr1/sstream 2592OLD_FILES+=usr/include/c++/v1/tr1/stack 2593OLD_FILES+=usr/include/c++/v1/tr1/stdbool.h 2594OLD_FILES+=usr/include/c++/v1/tr1/stddef.h 2595OLD_FILES+=usr/include/c++/v1/tr1/stdexcept 2596OLD_FILES+=usr/include/c++/v1/tr1/stdint.h 2597OLD_FILES+=usr/include/c++/v1/tr1/stdio.h 2598OLD_FILES+=usr/include/c++/v1/tr1/stdlib.h 2599OLD_FILES+=usr/include/c++/v1/tr1/streambuf 2600OLD_FILES+=usr/include/c++/v1/tr1/string 2601OLD_FILES+=usr/include/c++/v1/tr1/string.h 2602OLD_FILES+=usr/include/c++/v1/tr1/string_view 2603OLD_FILES+=usr/include/c++/v1/tr1/strstream 2604OLD_FILES+=usr/include/c++/v1/tr1/system_error 2605OLD_FILES+=usr/include/c++/v1/tr1/tgmath.h 2606OLD_FILES+=usr/include/c++/v1/tr1/thread 2607OLD_FILES+=usr/include/c++/v1/tr1/tuple 2608OLD_FILES+=usr/include/c++/v1/tr1/type_traits 2609OLD_FILES+=usr/include/c++/v1/tr1/typeindex 2610OLD_FILES+=usr/include/c++/v1/tr1/typeinfo 2611OLD_FILES+=usr/include/c++/v1/tr1/unordered_map 2612OLD_FILES+=usr/include/c++/v1/tr1/unordered_set 2613OLD_FILES+=usr/include/c++/v1/tr1/utility 2614OLD_FILES+=usr/include/c++/v1/tr1/valarray 2615OLD_FILES+=usr/include/c++/v1/tr1/variant 2616OLD_FILES+=usr/include/c++/v1/tr1/vector 2617OLD_FILES+=usr/include/c++/v1/tr1/version 2618OLD_FILES+=usr/include/c++/v1/tr1/wchar.h 2619OLD_FILES+=usr/include/c++/v1/tr1/wctype.h 2620OLD_DIRS+=usr/include/c++/v1/tr1 2621 2622# 20211027: libdialog shlib bumped to version 10 for dialog 1.3 2623OLD_LIBS+=usr/lib/libdialog.so.9 2624OLD_LIBS+=usr/lib/libdpv.so.2 2625 2626# 20211026: retire obsolete iscsi initiator 2627OLD_FILES+=sbin/iscontrol 2628OLD_FILES+=usr/share/man/man4/iscsi_initiator.4.gz 2629OLD_FILES+=usr/share/man/man8/iscontrol.8.gz 2630 2631# 20211022 2632OLD_FILES+=etc/rc.d/sppp 2633OLD_FILES+=rescue/spppcontrol 2634OLD_FILES+=sbin/spppcontrol 2635.if ${TARGET_ARCH} == "i386" 2636OLD_FILES+=usr/include/machine/cserial.h 2637.endif 2638OLD_FILES+=usr/include/net/if_sppp.h 2639OLD_FILES+=usr/include/netgraph/ng_sppp.h 2640OLD_FILES+=usr/share/man/man4/ng_sppp.4.gz 2641OLD_FILES+=usr/share/man/man4/sppp.4.gz 2642OLD_FILES+=usr/share/man/man8/spppcontrol.8.gz 2643 2644# 20211004: Removed sparc64 tests for lastcomm/sa 2645OLD_FILES+=usr/tests/usr.bin/lastcomm/v1-sparc64-acct.in 2646OLD_FILES+=usr/tests/usr.bin/lastcomm/v1-sparc64.out 2647OLD_FILES+=usr/tests/usr.bin/lastcomm/v2-sparc64-acct.in 2648OLD_FILES+=usr/tests/usr.bin/lastcomm/v2-sparc64.out 2649OLD_FILES+=usr/tests/usr.sbin/sa/v1-sparc64-sav.in 2650OLD_FILES+=usr/tests/usr.sbin/sa/v1-sparc64-sav.out 2651OLD_FILES+=usr/tests/usr.sbin/sa/v1-sparc64-u.out 2652OLD_FILES+=usr/tests/usr.sbin/sa/v1-sparc64-usr.in 2653OLD_FILES+=usr/tests/usr.sbin/sa/v1-sparc64-usr.out 2654OLD_FILES+=usr/tests/usr.sbin/sa/v2-sparc64-sav.in 2655OLD_FILES+=usr/tests/usr.sbin/sa/v2-sparc64-u.out 2656OLD_FILES+=usr/tests/usr.sbin/sa/v2-sparc64-usr.in 2657 2658# 20210929: 2659OLD_FILES+=usr/sbin/hcseriald 2660OLD_FILES+=usr/share/man/man8/hcseriald.8.gz 2661 2662# 20210929: Remove ng_h4 2663OLD_FILES+=usr/include/netgraph/bluetooth/include/ng_h4.h 2664OLD_FILES+=usr/share/man/man4/ng_h4.4.gz 2665 2666# 20210923: rename boot(9) to kern_reboot(9) 2667OLD_FILES+=usr/share/man/man9/boot.9.gz 2668 2669# 20210921: remove cloudabi 2670OLD_FILES+=usr/share/man/man4/cloudabi.4.gz 2671OLD_FILES+=usr/share/man/man4/cloudabi32.4.gz 2672OLD_FILES+=usr/share/man/man4/cloudabi64.4.gz 2673 2674# 20210906: stop installing {llvm,clang,lldb}-tblgen 2675OLD_FILES+=usr/bin/llvm-tblgen 2676OLD_FILES+=usr/bin/clang-tblgen 2677OLD_FILES+=usr/bin/lldb-tblgen 2678OLD_FILES+=usr/share/man/man1/llvm-tblgen.1.gz 2679 2680# 20210810: remove Pentium-related man pages and references 2681OLD_FILES+=usr/share/man/man3/pmc.p4.3.gz 2682OLD_FILES+=usr/share/man/man3/pmc.p5.3.gz 2683OLD_FILES+=usr/share/man/man3/pmc.p6.3.gz 2684 2685# 20210805: C.UTF-8 installed to the wrong location 2686OLD_FILES+=usr/share/C.UTF-8.LC_CTYPE 2687 2688# 20210619: new clang import which bumps version from 12.0.0 to 12.0.1 2689OLD_FILES+=usr/lib/clang/12.0.0/include/cuda_wrappers/algorithm 2690OLD_FILES+=usr/lib/clang/12.0.0/include/cuda_wrappers/complex 2691OLD_FILES+=usr/lib/clang/12.0.0/include/cuda_wrappers/new 2692OLD_DIRS+=usr/lib/clang/12.0.0/include/cuda_wrappers 2693OLD_FILES+=usr/lib/clang/12.0.0/include/fuzzer/FuzzedDataProvider.h 2694OLD_DIRS+=usr/lib/clang/12.0.0/include/fuzzer 2695OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/__clang_openmp_device_functions.h 2696OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/cmath 2697OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/complex 2698OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/complex.h 2699OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/complex_cmath.h 2700OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/math.h 2701OLD_FILES+=usr/lib/clang/12.0.0/include/openmp_wrappers/new 2702OLD_DIRS+=usr/lib/clang/12.0.0/include/openmp_wrappers 2703OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/emmintrin.h 2704OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/mm_malloc.h 2705OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/mmintrin.h 2706OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/pmmintrin.h 2707OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/smmintrin.h 2708OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/tmmintrin.h 2709OLD_FILES+=usr/lib/clang/12.0.0/include/ppc_wrappers/xmmintrin.h 2710OLD_DIRS+=usr/lib/clang/12.0.0/include/ppc_wrappers 2711OLD_FILES+=usr/lib/clang/12.0.0/include/profile/InstrProfData.inc 2712OLD_DIRS+=usr/lib/clang/12.0.0/include/profile 2713OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/allocator_interface.h 2714OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/asan_interface.h 2715OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/common_interface_defs.h 2716OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/coverage_interface.h 2717OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/dfsan_interface.h 2718OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/hwasan_interface.h 2719OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/linux_syscall_hooks.h 2720OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/lsan_interface.h 2721OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/msan_interface.h 2722OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/netbsd_syscall_hooks.h 2723OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/scudo_interface.h 2724OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/tsan_interface.h 2725OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/tsan_interface_atomic.h 2726OLD_FILES+=usr/lib/clang/12.0.0/include/sanitizer/ubsan_interface.h 2727OLD_DIRS+=usr/lib/clang/12.0.0/include/sanitizer 2728OLD_FILES+=usr/lib/clang/12.0.0/include/xray/xray_interface.h 2729OLD_FILES+=usr/lib/clang/12.0.0/include/xray/xray_log_interface.h 2730OLD_FILES+=usr/lib/clang/12.0.0/include/xray/xray_records.h 2731OLD_DIRS+=usr/lib/clang/12.0.0/include/xray 2732OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_builtin_vars.h 2733OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_cmath.h 2734OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_complex_builtins.h 2735OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_device_functions.h 2736OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_intrinsics.h 2737OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_libdevice_declares.h 2738OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_math.h 2739OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_math_forward_declares.h 2740OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_cuda_runtime_wrapper.h 2741OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_hip_cmath.h 2742OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_hip_libdevice_declares.h 2743OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_hip_math.h 2744OLD_FILES+=usr/lib/clang/12.0.0/include/__clang_hip_runtime_wrapper.h 2745OLD_FILES+=usr/lib/clang/12.0.0/include/__stddef_max_align_t.h 2746OLD_FILES+=usr/lib/clang/12.0.0/include/__wmmintrin_aes.h 2747OLD_FILES+=usr/lib/clang/12.0.0/include/__wmmintrin_pclmul.h 2748OLD_FILES+=usr/lib/clang/12.0.0/include/adxintrin.h 2749OLD_FILES+=usr/lib/clang/12.0.0/include/altivec.h 2750OLD_FILES+=usr/lib/clang/12.0.0/include/ammintrin.h 2751OLD_FILES+=usr/lib/clang/12.0.0/include/amxintrin.h 2752OLD_FILES+=usr/lib/clang/12.0.0/include/arm64intr.h 2753OLD_FILES+=usr/lib/clang/12.0.0/include/arm_acle.h 2754OLD_FILES+=usr/lib/clang/12.0.0/include/arm_bf16.h 2755OLD_FILES+=usr/lib/clang/12.0.0/include/arm_cde.h 2756OLD_FILES+=usr/lib/clang/12.0.0/include/arm_cmse.h 2757OLD_FILES+=usr/lib/clang/12.0.0/include/arm_fp16.h 2758OLD_FILES+=usr/lib/clang/12.0.0/include/arm_mve.h 2759OLD_FILES+=usr/lib/clang/12.0.0/include/arm_neon.h 2760OLD_FILES+=usr/lib/clang/12.0.0/include/arm_sve.h 2761OLD_FILES+=usr/lib/clang/12.0.0/include/armintr.h 2762OLD_FILES+=usr/lib/clang/12.0.0/include/avx2intrin.h 2763OLD_FILES+=usr/lib/clang/12.0.0/include/avx512bf16intrin.h 2764OLD_FILES+=usr/lib/clang/12.0.0/include/avx512bitalgintrin.h 2765OLD_FILES+=usr/lib/clang/12.0.0/include/avx512bwintrin.h 2766OLD_FILES+=usr/lib/clang/12.0.0/include/avx512cdintrin.h 2767OLD_FILES+=usr/lib/clang/12.0.0/include/avx512dqintrin.h 2768OLD_FILES+=usr/lib/clang/12.0.0/include/avx512erintrin.h 2769OLD_FILES+=usr/lib/clang/12.0.0/include/avx512fintrin.h 2770OLD_FILES+=usr/lib/clang/12.0.0/include/avx512ifmaintrin.h 2771OLD_FILES+=usr/lib/clang/12.0.0/include/avx512ifmavlintrin.h 2772OLD_FILES+=usr/lib/clang/12.0.0/include/avx512pfintrin.h 2773OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vbmi2intrin.h 2774OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vbmiintrin.h 2775OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vbmivlintrin.h 2776OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlbf16intrin.h 2777OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlbitalgintrin.h 2778OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlbwintrin.h 2779OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlcdintrin.h 2780OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vldqintrin.h 2781OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlintrin.h 2782OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlvbmi2intrin.h 2783OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlvnniintrin.h 2784OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vlvp2intersectintrin.h 2785OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vnniintrin.h 2786OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vp2intersectintrin.h 2787OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vpopcntdqintrin.h 2788OLD_FILES+=usr/lib/clang/12.0.0/include/avx512vpopcntdqvlintrin.h 2789OLD_FILES+=usr/lib/clang/12.0.0/include/avxintrin.h 2790OLD_FILES+=usr/lib/clang/12.0.0/include/avxvnniintrin.h 2791OLD_FILES+=usr/lib/clang/12.0.0/include/bmi2intrin.h 2792OLD_FILES+=usr/lib/clang/12.0.0/include/bmiintrin.h 2793OLD_FILES+=usr/lib/clang/12.0.0/include/cet.h 2794OLD_FILES+=usr/lib/clang/12.0.0/include/cetintrin.h 2795OLD_FILES+=usr/lib/clang/12.0.0/include/cldemoteintrin.h 2796OLD_FILES+=usr/lib/clang/12.0.0/include/clflushoptintrin.h 2797OLD_FILES+=usr/lib/clang/12.0.0/include/clwbintrin.h 2798OLD_FILES+=usr/lib/clang/12.0.0/include/clzerointrin.h 2799OLD_FILES+=usr/lib/clang/12.0.0/include/cpuid.h 2800OLD_FILES+=usr/lib/clang/12.0.0/include/emmintrin.h 2801OLD_FILES+=usr/lib/clang/12.0.0/include/enqcmdintrin.h 2802OLD_FILES+=usr/lib/clang/12.0.0/include/f16cintrin.h 2803OLD_FILES+=usr/lib/clang/12.0.0/include/float.h 2804OLD_FILES+=usr/lib/clang/12.0.0/include/fma4intrin.h 2805OLD_FILES+=usr/lib/clang/12.0.0/include/fmaintrin.h 2806OLD_FILES+=usr/lib/clang/12.0.0/include/fxsrintrin.h 2807OLD_FILES+=usr/lib/clang/12.0.0/include/gfniintrin.h 2808OLD_FILES+=usr/lib/clang/12.0.0/include/hresetintrin.h 2809OLD_FILES+=usr/lib/clang/12.0.0/include/htmintrin.h 2810OLD_FILES+=usr/lib/clang/12.0.0/include/htmxlintrin.h 2811OLD_FILES+=usr/lib/clang/12.0.0/include/ia32intrin.h 2812OLD_FILES+=usr/lib/clang/12.0.0/include/immintrin.h 2813OLD_FILES+=usr/lib/clang/12.0.0/include/intrin.h 2814OLD_FILES+=usr/lib/clang/12.0.0/include/inttypes.h 2815OLD_FILES+=usr/lib/clang/12.0.0/include/invpcidintrin.h 2816OLD_FILES+=usr/lib/clang/12.0.0/include/iso646.h 2817OLD_FILES+=usr/lib/clang/12.0.0/include/keylockerintrin.h 2818OLD_FILES+=usr/lib/clang/12.0.0/include/limits.h 2819OLD_FILES+=usr/lib/clang/12.0.0/include/lwpintrin.h 2820OLD_FILES+=usr/lib/clang/12.0.0/include/lzcntintrin.h 2821OLD_FILES+=usr/lib/clang/12.0.0/include/mm3dnow.h 2822OLD_FILES+=usr/lib/clang/12.0.0/include/mm_malloc.h 2823OLD_FILES+=usr/lib/clang/12.0.0/include/mmintrin.h 2824OLD_FILES+=usr/lib/clang/12.0.0/include/module.modulemap 2825OLD_FILES+=usr/lib/clang/12.0.0/include/movdirintrin.h 2826OLD_FILES+=usr/lib/clang/12.0.0/include/msa.h 2827OLD_FILES+=usr/lib/clang/12.0.0/include/mwaitxintrin.h 2828OLD_FILES+=usr/lib/clang/12.0.0/include/nmmintrin.h 2829OLD_FILES+=usr/lib/clang/12.0.0/include/omp-tools.h 2830OLD_FILES+=usr/lib/clang/12.0.0/include/omp.h 2831OLD_FILES+=usr/lib/clang/12.0.0/include/ompt.h 2832OLD_FILES+=usr/lib/clang/12.0.0/include/opencl-c-base.h 2833OLD_FILES+=usr/lib/clang/12.0.0/include/opencl-c.h 2834OLD_FILES+=usr/lib/clang/12.0.0/include/pconfigintrin.h 2835OLD_FILES+=usr/lib/clang/12.0.0/include/pkuintrin.h 2836OLD_FILES+=usr/lib/clang/12.0.0/include/pmmintrin.h 2837OLD_FILES+=usr/lib/clang/12.0.0/include/popcntintrin.h 2838OLD_FILES+=usr/lib/clang/12.0.0/include/prfchwintrin.h 2839OLD_FILES+=usr/lib/clang/12.0.0/include/ptwriteintrin.h 2840OLD_FILES+=usr/lib/clang/12.0.0/include/rdseedintrin.h 2841OLD_FILES+=usr/lib/clang/12.0.0/include/rtmintrin.h 2842OLD_FILES+=usr/lib/clang/12.0.0/include/s390intrin.h 2843OLD_FILES+=usr/lib/clang/12.0.0/include/serializeintrin.h 2844OLD_FILES+=usr/lib/clang/12.0.0/include/sgxintrin.h 2845OLD_FILES+=usr/lib/clang/12.0.0/include/shaintrin.h 2846OLD_FILES+=usr/lib/clang/12.0.0/include/smmintrin.h 2847OLD_FILES+=usr/lib/clang/12.0.0/include/stdalign.h 2848OLD_FILES+=usr/lib/clang/12.0.0/include/stdarg.h 2849OLD_FILES+=usr/lib/clang/12.0.0/include/stdatomic.h 2850OLD_FILES+=usr/lib/clang/12.0.0/include/stdbool.h 2851OLD_FILES+=usr/lib/clang/12.0.0/include/stddef.h 2852OLD_FILES+=usr/lib/clang/12.0.0/include/stdint.h 2853OLD_FILES+=usr/lib/clang/12.0.0/include/stdnoreturn.h 2854OLD_FILES+=usr/lib/clang/12.0.0/include/tbmintrin.h 2855OLD_FILES+=usr/lib/clang/12.0.0/include/tgmath.h 2856OLD_FILES+=usr/lib/clang/12.0.0/include/tmmintrin.h 2857OLD_FILES+=usr/lib/clang/12.0.0/include/tsxldtrkintrin.h 2858OLD_FILES+=usr/lib/clang/12.0.0/include/uintrintrin.h 2859OLD_FILES+=usr/lib/clang/12.0.0/include/unwind.h 2860OLD_FILES+=usr/lib/clang/12.0.0/include/vadefs.h 2861OLD_FILES+=usr/lib/clang/12.0.0/include/vaesintrin.h 2862OLD_FILES+=usr/lib/clang/12.0.0/include/varargs.h 2863OLD_FILES+=usr/lib/clang/12.0.0/include/vecintrin.h 2864OLD_FILES+=usr/lib/clang/12.0.0/include/vpclmulqdqintrin.h 2865OLD_FILES+=usr/lib/clang/12.0.0/include/waitpkgintrin.h 2866OLD_FILES+=usr/lib/clang/12.0.0/include/wasm_simd128.h 2867OLD_FILES+=usr/lib/clang/12.0.0/include/wbnoinvdintrin.h 2868OLD_FILES+=usr/lib/clang/12.0.0/include/wmmintrin.h 2869OLD_FILES+=usr/lib/clang/12.0.0/include/x86gprintrin.h 2870OLD_FILES+=usr/lib/clang/12.0.0/include/x86intrin.h 2871OLD_FILES+=usr/lib/clang/12.0.0/include/xmmintrin.h 2872OLD_FILES+=usr/lib/clang/12.0.0/include/xopintrin.h 2873OLD_FILES+=usr/lib/clang/12.0.0/include/xsavecintrin.h 2874OLD_FILES+=usr/lib/clang/12.0.0/include/xsaveintrin.h 2875OLD_FILES+=usr/lib/clang/12.0.0/include/xsaveoptintrin.h 2876OLD_FILES+=usr/lib/clang/12.0.0/include/xsavesintrin.h 2877OLD_FILES+=usr/lib/clang/12.0.0/include/xtestintrin.h 2878OLD_DIRS+=usr/lib/clang/12.0.0/include 2879OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-aarch64.a 2880OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-aarch64.so 2881OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-arm.a 2882OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-arm.so 2883OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-armhf.a 2884OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-armhf.so 2885OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-i386.a 2886OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-i386.so 2887OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 2888OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a 2889OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-preinit-armhf.a 2890OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 2891OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 2892OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 2893OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 2894OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 2895OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a 2896OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan_cxx-armhf.a 2897OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 2898OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 2899OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi-aarch64.a 2900OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi-arm.a 2901OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi-armhf.a 2902OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi-i386.a 2903OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi-x86_64.a 2904OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 2905OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi_diag-arm.a 2906OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi_diag-armhf.a 2907OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi_diag-i386.a 2908OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 2909OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.dd-aarch64.a 2910OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.dd-x86_64.a 2911OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.fuzzer-aarch64.a 2912OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.fuzzer-x86_64.a 2913OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 2914OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 2915OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.msan-aarch64.a 2916OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.msan-x86_64.a 2917OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 2918OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 2919OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-aarch64.a 2920OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-arm.a 2921OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-armhf.a 2922OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-i386.a 2923OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-powerpc.a 2924OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-powerpc64.a 2925OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-powerpc64le.a 2926OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 2927OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.safestack-aarch64.a 2928OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.safestack-i386.a 2929OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 2930OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats-aarch64.a 2931OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats-arm.a 2932OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats-armhf.a 2933OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats-i386.a 2934OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 2935OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats_client-aarch64.a 2936OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats_client-arm.a 2937OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats_client-armhf.a 2938OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 2939OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 2940OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.tsan-aarch64.a 2941OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 2942OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 2943OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 2944OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 2945OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 2946OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 2947OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 2948OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 2949OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 2950OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 2951OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 2952OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 2953OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 2954OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 2955OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 2956OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 2957OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 2958OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 2959OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-aarch64.a 2960OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-arm.a 2961OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-armhf.a 2962OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-basic-aarch64.a 2963OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-basic-arm.a 2964OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-basic-armhf.a 2965OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-basic-x86_64.a 2966OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 2967OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-fdr-arm.a 2968OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-fdr-armhf.a 2969OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 2970OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 2971OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-profiling-arm.a 2972OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-profiling-armhf.a 2973OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 2974OLD_FILES+=usr/lib/clang/12.0.0/lib/freebsd/libclang_rt.xray-x86_64.a 2975OLD_DIRS+=usr/lib/clang/12.0.0/lib/freebsd 2976OLD_DIRS+=usr/lib/clang/12.0.0/lib 2977OLD_DIRS+=usr/lib/clang/12.0.0 2978 2979# 20210616: Remove crypto_cursor_seg{base,len} 2980OLD_FILES+=usr/share/man/man9/crypto_cursor_segbase.9.gz 2981OLD_FILES+=usr/share/man/man9/crypto_cursor_seglen.9.gz 2982 2983# 20210618: rename of usr/share/certs/blacklisted 2984OLD_FILES+=usr/share/certs/blacklisted/AddTrust_External_Root.pem 2985OLD_FILES+=usr/share/certs/blacklisted/AddTrust_Low-Value_Services_Root.pem 2986OLD_FILES+=usr/share/certs/blacklisted/Camerfirma_Chambers_of_Commerce_Root.pem 2987OLD_FILES+=usr/share/certs/blacklisted/Camerfirma_Global_Chambersign_Root.pem 2988OLD_FILES+=usr/share/certs/blacklisted/Certum_Root_CA.pem 2989OLD_FILES+=usr/share/certs/blacklisted/Chambers_of_Commerce_Root_-_2008.pem 2990OLD_FILES+=usr/share/certs/blacklisted/D-TRUST_Root_CA_3_2013.pem 2991OLD_FILES+=usr/share/certs/blacklisted/EC-ACC.pem 2992OLD_FILES+=usr/share/certs/blacklisted/EE_Certification_Centre_Root_CA.pem 2993OLD_FILES+=usr/share/certs/blacklisted/GeoTrust_Global_CA.pem 2994OLD_FILES+=usr/share/certs/blacklisted/GeoTrust_Primary_Certification_Authority_-_G2.pem 2995OLD_FILES+=usr/share/certs/blacklisted/GeoTrust_Primary_Certification_Authority_-_G3.pem 2996OLD_FILES+=usr/share/certs/blacklisted/GeoTrust_Primary_Certification_Authority.pem 2997OLD_FILES+=usr/share/certs/blacklisted/GeoTrust_Universal_CA_2.pem 2998OLD_FILES+=usr/share/certs/blacklisted/GeoTrust_Universal_CA.pem 2999OLD_FILES+=usr/share/certs/blacklisted/Global_Chambersign_Root_-_2008.pem 3000OLD_FILES+=usr/share/certs/blacklisted/LuxTrust_Global_Root_2.pem 3001OLD_FILES+=usr/share/certs/blacklisted/OISTE_WISeKey_Global_Root_GA_CA.pem 3002OLD_FILES+=usr/share/certs/blacklisted/QuoVadis_Root_CA.pem 3003OLD_FILES+=usr/share/certs/blacklisted/Sonera_Class_2_Root_CA.pem 3004OLD_FILES+=usr/share/certs/blacklisted/Staat_der_Nederlanden_Root_CA_-_G2.pem 3005OLD_FILES+=usr/share/certs/blacklisted/Staat_der_Nederlanden_Root_CA_-_G3.pem 3006OLD_FILES+=usr/share/certs/blacklisted/SwissSign_Platinum_CA_-_G2.pem 3007OLD_FILES+=usr/share/certs/blacklisted/Symantec_Class_1_Public_Primary_Certification_Authority_-_G4.pem 3008OLD_FILES+=usr/share/certs/blacklisted/Symantec_Class_1_Public_Primary_Certification_Authority_-_G6.pem 3009OLD_FILES+=usr/share/certs/blacklisted/Symantec_Class_2_Public_Primary_Certification_Authority_-_G4.pem 3010OLD_FILES+=usr/share/certs/blacklisted/Symantec_Class_2_Public_Primary_Certification_Authority_-_G6.pem 3011OLD_FILES+=usr/share/certs/blacklisted/Taiwan_GRCA.pem 3012OLD_FILES+=usr/share/certs/blacklisted/thawte_Primary_Root_CA_-_G2.pem 3013OLD_FILES+=usr/share/certs/blacklisted/thawte_Primary_Root_CA_-_G3.pem 3014OLD_FILES+=usr/share/certs/blacklisted/thawte_Primary_Root_CA.pem 3015OLD_FILES+=usr/share/certs/blacklisted/Trustis_FPS_Root_CA.pem 3016OLD_FILES+=usr/share/certs/blacklisted/Verisign_Class_1_Public_Primary_Certification_Authority_-_G3.pem 3017OLD_FILES+=usr/share/certs/blacklisted/Verisign_Class_2_Public_Primary_Certification_Authority_-_G3.pem 3018OLD_FILES+=usr/share/certs/blacklisted/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem 3019OLD_FILES+=usr/share/certs/blacklisted/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem 3020OLD_FILES+=usr/share/certs/blacklisted/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem 3021OLD_FILES+=usr/share/certs/blacklisted/VeriSign_Universal_Root_Certification_Authority.pem 3022OLD_DIRS+=usr/share/certs/blacklisted 3023 3024# 20210613: new clang import which bumps version from 11.0.1 to 12.0.0 3025OLD_FILES+=usr/lib/clang/11.0.1/include/cuda_wrappers/algorithm 3026OLD_FILES+=usr/lib/clang/11.0.1/include/cuda_wrappers/complex 3027OLD_FILES+=usr/lib/clang/11.0.1/include/cuda_wrappers/new 3028OLD_DIRS+=usr/lib/clang/11.0.1/include/cuda_wrappers 3029OLD_FILES+=usr/lib/clang/11.0.1/include/fuzzer/FuzzedDataProvider.h 3030OLD_DIRS+=usr/lib/clang/11.0.1/include/fuzzer 3031OLD_FILES+=usr/lib/clang/11.0.1/include/openmp_wrappers/__clang_openmp_device_functions.h 3032OLD_FILES+=usr/lib/clang/11.0.1/include/openmp_wrappers/cmath 3033OLD_FILES+=usr/lib/clang/11.0.1/include/openmp_wrappers/complex 3034OLD_FILES+=usr/lib/clang/11.0.1/include/openmp_wrappers/complex.h 3035OLD_FILES+=usr/lib/clang/11.0.1/include/openmp_wrappers/math.h 3036OLD_FILES+=usr/lib/clang/11.0.1/include/openmp_wrappers/new 3037OLD_DIRS+=usr/lib/clang/11.0.1/include/openmp_wrappers 3038OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/emmintrin.h 3039OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/mm_malloc.h 3040OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/mmintrin.h 3041OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/pmmintrin.h 3042OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/smmintrin.h 3043OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/tmmintrin.h 3044OLD_FILES+=usr/lib/clang/11.0.1/include/ppc_wrappers/xmmintrin.h 3045OLD_DIRS+=usr/lib/clang/11.0.1/include/ppc_wrappers 3046OLD_FILES+=usr/lib/clang/11.0.1/include/profile/InstrProfData.inc 3047OLD_DIRS+=usr/lib/clang/11.0.1/include/profile 3048OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/allocator_interface.h 3049OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/asan_interface.h 3050OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/common_interface_defs.h 3051OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/coverage_interface.h 3052OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/dfsan_interface.h 3053OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/hwasan_interface.h 3054OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/linux_syscall_hooks.h 3055OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/lsan_interface.h 3056OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/msan_interface.h 3057OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/netbsd_syscall_hooks.h 3058OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/scudo_interface.h 3059OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/tsan_interface.h 3060OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/tsan_interface_atomic.h 3061OLD_FILES+=usr/lib/clang/11.0.1/include/sanitizer/ubsan_interface.h 3062OLD_DIRS+=usr/lib/clang/11.0.1/include/sanitizer 3063OLD_FILES+=usr/lib/clang/11.0.1/include/xray/xray_interface.h 3064OLD_FILES+=usr/lib/clang/11.0.1/include/xray/xray_log_interface.h 3065OLD_FILES+=usr/lib/clang/11.0.1/include/xray/xray_records.h 3066OLD_DIRS+=usr/lib/clang/11.0.1/include/xray 3067OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_builtin_vars.h 3068OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_cmath.h 3069OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_complex_builtins.h 3070OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_device_functions.h 3071OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_intrinsics.h 3072OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_libdevice_declares.h 3073OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_math.h 3074OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_math_forward_declares.h 3075OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_cuda_runtime_wrapper.h 3076OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_hip_libdevice_declares.h 3077OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_hip_math.h 3078OLD_FILES+=usr/lib/clang/11.0.1/include/__clang_hip_runtime_wrapper.h 3079OLD_FILES+=usr/lib/clang/11.0.1/include/__stddef_max_align_t.h 3080OLD_FILES+=usr/lib/clang/11.0.1/include/__wmmintrin_aes.h 3081OLD_FILES+=usr/lib/clang/11.0.1/include/__wmmintrin_pclmul.h 3082OLD_FILES+=usr/lib/clang/11.0.1/include/adxintrin.h 3083OLD_FILES+=usr/lib/clang/11.0.1/include/altivec.h 3084OLD_FILES+=usr/lib/clang/11.0.1/include/ammintrin.h 3085OLD_FILES+=usr/lib/clang/11.0.1/include/amxintrin.h 3086OLD_FILES+=usr/lib/clang/11.0.1/include/arm64intr.h 3087OLD_FILES+=usr/lib/clang/11.0.1/include/arm_acle.h 3088OLD_FILES+=usr/lib/clang/11.0.1/include/arm_bf16.h 3089OLD_FILES+=usr/lib/clang/11.0.1/include/arm_cde.h 3090OLD_FILES+=usr/lib/clang/11.0.1/include/arm_cmse.h 3091OLD_FILES+=usr/lib/clang/11.0.1/include/arm_fp16.h 3092OLD_FILES+=usr/lib/clang/11.0.1/include/arm_mve.h 3093OLD_FILES+=usr/lib/clang/11.0.1/include/arm_neon.h 3094OLD_FILES+=usr/lib/clang/11.0.1/include/arm_sve.h 3095OLD_FILES+=usr/lib/clang/11.0.1/include/armintr.h 3096OLD_FILES+=usr/lib/clang/11.0.1/include/avx2intrin.h 3097OLD_FILES+=usr/lib/clang/11.0.1/include/avx512bf16intrin.h 3098OLD_FILES+=usr/lib/clang/11.0.1/include/avx512bitalgintrin.h 3099OLD_FILES+=usr/lib/clang/11.0.1/include/avx512bwintrin.h 3100OLD_FILES+=usr/lib/clang/11.0.1/include/avx512cdintrin.h 3101OLD_FILES+=usr/lib/clang/11.0.1/include/avx512dqintrin.h 3102OLD_FILES+=usr/lib/clang/11.0.1/include/avx512erintrin.h 3103OLD_FILES+=usr/lib/clang/11.0.1/include/avx512fintrin.h 3104OLD_FILES+=usr/lib/clang/11.0.1/include/avx512ifmaintrin.h 3105OLD_FILES+=usr/lib/clang/11.0.1/include/avx512ifmavlintrin.h 3106OLD_FILES+=usr/lib/clang/11.0.1/include/avx512pfintrin.h 3107OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vbmi2intrin.h 3108OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vbmiintrin.h 3109OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vbmivlintrin.h 3110OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlbf16intrin.h 3111OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlbitalgintrin.h 3112OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlbwintrin.h 3113OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlcdintrin.h 3114OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vldqintrin.h 3115OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlintrin.h 3116OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlvbmi2intrin.h 3117OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlvnniintrin.h 3118OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vlvp2intersectintrin.h 3119OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vnniintrin.h 3120OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vp2intersectintrin.h 3121OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vpopcntdqintrin.h 3122OLD_FILES+=usr/lib/clang/11.0.1/include/avx512vpopcntdqvlintrin.h 3123OLD_FILES+=usr/lib/clang/11.0.1/include/avxintrin.h 3124OLD_FILES+=usr/lib/clang/11.0.1/include/bmi2intrin.h 3125OLD_FILES+=usr/lib/clang/11.0.1/include/bmiintrin.h 3126OLD_FILES+=usr/lib/clang/11.0.1/include/cet.h 3127OLD_FILES+=usr/lib/clang/11.0.1/include/cetintrin.h 3128OLD_FILES+=usr/lib/clang/11.0.1/include/cldemoteintrin.h 3129OLD_FILES+=usr/lib/clang/11.0.1/include/clflushoptintrin.h 3130OLD_FILES+=usr/lib/clang/11.0.1/include/clwbintrin.h 3131OLD_FILES+=usr/lib/clang/11.0.1/include/clzerointrin.h 3132OLD_FILES+=usr/lib/clang/11.0.1/include/cpuid.h 3133OLD_FILES+=usr/lib/clang/11.0.1/include/emmintrin.h 3134OLD_FILES+=usr/lib/clang/11.0.1/include/enqcmdintrin.h 3135OLD_FILES+=usr/lib/clang/11.0.1/include/f16cintrin.h 3136OLD_FILES+=usr/lib/clang/11.0.1/include/float.h 3137OLD_FILES+=usr/lib/clang/11.0.1/include/fma4intrin.h 3138OLD_FILES+=usr/lib/clang/11.0.1/include/fmaintrin.h 3139OLD_FILES+=usr/lib/clang/11.0.1/include/fxsrintrin.h 3140OLD_FILES+=usr/lib/clang/11.0.1/include/gfniintrin.h 3141OLD_FILES+=usr/lib/clang/11.0.1/include/htmintrin.h 3142OLD_FILES+=usr/lib/clang/11.0.1/include/htmxlintrin.h 3143OLD_FILES+=usr/lib/clang/11.0.1/include/ia32intrin.h 3144OLD_FILES+=usr/lib/clang/11.0.1/include/immintrin.h 3145OLD_FILES+=usr/lib/clang/11.0.1/include/intrin.h 3146OLD_FILES+=usr/lib/clang/11.0.1/include/inttypes.h 3147OLD_FILES+=usr/lib/clang/11.0.1/include/invpcidintrin.h 3148OLD_FILES+=usr/lib/clang/11.0.1/include/iso646.h 3149OLD_FILES+=usr/lib/clang/11.0.1/include/limits.h 3150OLD_FILES+=usr/lib/clang/11.0.1/include/lwpintrin.h 3151OLD_FILES+=usr/lib/clang/11.0.1/include/lzcntintrin.h 3152OLD_FILES+=usr/lib/clang/11.0.1/include/mm3dnow.h 3153OLD_FILES+=usr/lib/clang/11.0.1/include/mm_malloc.h 3154OLD_FILES+=usr/lib/clang/11.0.1/include/mmintrin.h 3155OLD_FILES+=usr/lib/clang/11.0.1/include/module.modulemap 3156OLD_FILES+=usr/lib/clang/11.0.1/include/movdirintrin.h 3157OLD_FILES+=usr/lib/clang/11.0.1/include/msa.h 3158OLD_FILES+=usr/lib/clang/11.0.1/include/mwaitxintrin.h 3159OLD_FILES+=usr/lib/clang/11.0.1/include/nmmintrin.h 3160OLD_FILES+=usr/lib/clang/11.0.1/include/omp-tools.h 3161OLD_FILES+=usr/lib/clang/11.0.1/include/omp.h 3162OLD_FILES+=usr/lib/clang/11.0.1/include/ompt.h 3163OLD_FILES+=usr/lib/clang/11.0.1/include/opencl-c-base.h 3164OLD_FILES+=usr/lib/clang/11.0.1/include/opencl-c.h 3165OLD_FILES+=usr/lib/clang/11.0.1/include/pconfigintrin.h 3166OLD_FILES+=usr/lib/clang/11.0.1/include/pkuintrin.h 3167OLD_FILES+=usr/lib/clang/11.0.1/include/pmmintrin.h 3168OLD_FILES+=usr/lib/clang/11.0.1/include/popcntintrin.h 3169OLD_FILES+=usr/lib/clang/11.0.1/include/prfchwintrin.h 3170OLD_FILES+=usr/lib/clang/11.0.1/include/ptwriteintrin.h 3171OLD_FILES+=usr/lib/clang/11.0.1/include/rdseedintrin.h 3172OLD_FILES+=usr/lib/clang/11.0.1/include/rtmintrin.h 3173OLD_FILES+=usr/lib/clang/11.0.1/include/s390intrin.h 3174OLD_FILES+=usr/lib/clang/11.0.1/include/serializeintrin.h 3175OLD_FILES+=usr/lib/clang/11.0.1/include/sgxintrin.h 3176OLD_FILES+=usr/lib/clang/11.0.1/include/shaintrin.h 3177OLD_FILES+=usr/lib/clang/11.0.1/include/smmintrin.h 3178OLD_FILES+=usr/lib/clang/11.0.1/include/stdalign.h 3179OLD_FILES+=usr/lib/clang/11.0.1/include/stdarg.h 3180OLD_FILES+=usr/lib/clang/11.0.1/include/stdatomic.h 3181OLD_FILES+=usr/lib/clang/11.0.1/include/stdbool.h 3182OLD_FILES+=usr/lib/clang/11.0.1/include/stddef.h 3183OLD_FILES+=usr/lib/clang/11.0.1/include/stdint.h 3184OLD_FILES+=usr/lib/clang/11.0.1/include/stdnoreturn.h 3185OLD_FILES+=usr/lib/clang/11.0.1/include/tbmintrin.h 3186OLD_FILES+=usr/lib/clang/11.0.1/include/tgmath.h 3187OLD_FILES+=usr/lib/clang/11.0.1/include/tmmintrin.h 3188OLD_FILES+=usr/lib/clang/11.0.1/include/tsxldtrkintrin.h 3189OLD_FILES+=usr/lib/clang/11.0.1/include/unwind.h 3190OLD_FILES+=usr/lib/clang/11.0.1/include/vadefs.h 3191OLD_FILES+=usr/lib/clang/11.0.1/include/vaesintrin.h 3192OLD_FILES+=usr/lib/clang/11.0.1/include/varargs.h 3193OLD_FILES+=usr/lib/clang/11.0.1/include/vecintrin.h 3194OLD_FILES+=usr/lib/clang/11.0.1/include/vpclmulqdqintrin.h 3195OLD_FILES+=usr/lib/clang/11.0.1/include/waitpkgintrin.h 3196OLD_FILES+=usr/lib/clang/11.0.1/include/wasm_simd128.h 3197OLD_FILES+=usr/lib/clang/11.0.1/include/wbnoinvdintrin.h 3198OLD_FILES+=usr/lib/clang/11.0.1/include/wmmintrin.h 3199OLD_FILES+=usr/lib/clang/11.0.1/include/x86intrin.h 3200OLD_FILES+=usr/lib/clang/11.0.1/include/xmmintrin.h 3201OLD_FILES+=usr/lib/clang/11.0.1/include/xopintrin.h 3202OLD_FILES+=usr/lib/clang/11.0.1/include/xsavecintrin.h 3203OLD_FILES+=usr/lib/clang/11.0.1/include/xsaveintrin.h 3204OLD_FILES+=usr/lib/clang/11.0.1/include/xsaveoptintrin.h 3205OLD_FILES+=usr/lib/clang/11.0.1/include/xsavesintrin.h 3206OLD_FILES+=usr/lib/clang/11.0.1/include/xtestintrin.h 3207OLD_DIRS+=usr/lib/clang/11.0.1/include 3208OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-aarch64.a 3209OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-aarch64.so 3210OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-arm.a 3211OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-arm.so 3212OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-armhf.a 3213OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-armhf.so 3214OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-i386.a 3215OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-i386.so 3216OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 3217OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-preinit-arm.a 3218OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-preinit-armhf.a 3219OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 3220OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 3221OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 3222OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 3223OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 3224OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan_cxx-arm.a 3225OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan_cxx-armhf.a 3226OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 3227OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 3228OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi-aarch64.a 3229OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi-arm.a 3230OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi-armhf.a 3231OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi-i386.a 3232OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi-x86_64.a 3233OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 3234OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi_diag-arm.a 3235OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi_diag-armhf.a 3236OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi_diag-i386.a 3237OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 3238OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.dd-aarch64.a 3239OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.dd-x86_64.a 3240OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.fuzzer-aarch64.a 3241OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.fuzzer-x86_64.a 3242OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 3243OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 3244OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.msan-aarch64.a 3245OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.msan-x86_64.a 3246OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 3247OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 3248OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-aarch64.a 3249OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-arm.a 3250OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-armhf.a 3251OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-i386.a 3252OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-powerpc.a 3253OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-powerpc64.a 3254OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-powerpc64le.a 3255OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 3256OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.safestack-aarch64.a 3257OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.safestack-i386.a 3258OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 3259OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats-aarch64.a 3260OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats-arm.a 3261OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats-armhf.a 3262OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats-i386.a 3263OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 3264OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats_client-aarch64.a 3265OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats_client-arm.a 3266OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats_client-armhf.a 3267OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 3268OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 3269OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.tsan-aarch64.a 3270OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 3271OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 3272OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 3273OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 3274OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 3275OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 3276OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 3277OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 3278OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 3279OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 3280OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 3281OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 3282OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 3283OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 3284OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 3285OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 3286OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 3287OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 3288OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-aarch64.a 3289OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-arm.a 3290OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-armhf.a 3291OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-basic-aarch64.a 3292OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-basic-arm.a 3293OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-basic-armhf.a 3294OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-basic-x86_64.a 3295OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 3296OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-fdr-arm.a 3297OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-fdr-armhf.a 3298OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 3299OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 3300OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-profiling-arm.a 3301OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-profiling-armhf.a 3302OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 3303OLD_FILES+=usr/lib/clang/11.0.1/lib/freebsd/libclang_rt.xray-x86_64.a 3304OLD_DIRS+=usr/lib/clang/11.0.1/lib/freebsd 3305OLD_DIRS+=usr/lib/clang/11.0.1/lib 3306OLD_DIRS+=usr/lib/clang/11.0.1 3307 3308# 20210613: Rename OpenZFS manual pages 3309OLD_FILES+=usr/share/man/man5/spl-module-parameters.5.gz 3310OLD_FILES+=usr/share/man/man5/zfs-events.5.gz 3311OLD_FILES+=usr/share/man/man5/zfs-module-parameters.5.gz 3312OLD_FILES+=usr/share/man/man8/zfsconcepts.8.gz 3313OLD_FILES+=usr/share/man/man8/zfsprops.8.gz 3314OLD_FILES+=usr/share/man/man5/zpool-features.5.gz 3315OLD_FILES+=usr/share/man/man8/zpoolconcepts.8.gz 3316OLD_FILES+=usr/share/man/man8/zpoolprops.8.gz 3317 3318# 20210611: Remove svn and svnlite 3319OLD_FILES+=usr/bin/svn 3320OLD_FILES+=usr/bin/svnadmin 3321OLD_FILES+=usr/bin/svnbench 3322OLD_FILES+=usr/bin/svndumpfilter 3323OLD_FILES+=usr/bin/svnfsfs 3324OLD_FILES+=usr/bin/svnlite 3325OLD_FILES+=usr/bin/svnliteadmin 3326OLD_FILES+=usr/bin/svnlitebench 3327OLD_FILES+=usr/bin/svnlitedumpfilter 3328OLD_FILES+=usr/bin/svnlitefsfs 3329OLD_FILES+=usr/bin/svnlitelook 3330OLD_FILES+=usr/bin/svnlitemucc 3331OLD_FILES+=usr/bin/svnliterdump 3332OLD_FILES+=usr/bin/svnliteserve 3333OLD_FILES+=usr/bin/svnlitesync 3334OLD_FILES+=usr/bin/svnliteversion 3335OLD_FILES+=usr/bin/svnlook 3336OLD_FILES+=usr/bin/svnmucc 3337OLD_FILES+=usr/bin/svnrdump 3338OLD_FILES+=usr/bin/svnserve 3339OLD_FILES+=usr/bin/svnsync 3340OLD_FILES+=usr/bin/svnversion 3341OLD_FILES+=usr/share/man/man1/svnlite.1.gz 3342 3343# 20210607: remove ancontrol(8) related programs 3344OLD_FILES+=usr/sbin/ancontrol 3345OLD_FILES+=usr/share/man/man8/ancontrol.8.gz 3346 3347# 20210607: remove an(4) 3348OLD_FILES+=usr/include/dev/an/if_aironet_ieee.h 3349OLD_FILES+=usr/include/dev/an/if_anreg.h 3350OLD_FILES+=usr/share/man/man4/an.4.gz 3351 3352# 20210426: remove unused libexec/rc.d/addswap 3353OLD_FILES+=etc/rc.d/addswap 3354 3355# 20210413: Remove pfctlinput2 3356OLD_FILES+=usr/share/man/man9/pfctlinput2.9.gz 3357 3358# 20210412: Remove kernel asymmetric crypto 3359OLD_FILES+=usr/share/man/man9/crypto_asym.9.gz 3360OLD_FILES+=usr/share/man/man9/crypto_kdispatch.9.gz 3361OLD_FILES+=usr/share/man/man9/crypto_kdone.9.gz 3362OLD_FILES+=usr/share/man/man9/crypto_kregister.9.gz 3363OLD_FILES+=usr/share/man/man9/CRYPTODEV_KPROCESS.9.gz 3364 3365# 20210410: remove unused libexec/rc.d/archdep 3366OLD_FILES+=etc/rc.d/archdep 3367 3368# 20210408: remove tcp_hostcache.h 3369OLD_FILES+=usr/include/netinet/tcp_hostcache.h 3370 3371# 20210403: remove kgmon(8) 3372OLD_FILES+=usr/sbin/kgmon 3373OLD_FILES+=usr/share/man/man8/kgmon.8.gz 3374 3375# 20210401: remove bt(4) man page 3376OLD_FILES+=usr/share/man/man4/bt.4.gz 3377 3378# 20210322: retire mn(4) sync serial driver 3379OLD_FILES+=usr/share/man/man4/if_mn.4.gz 3380OLD_FILES+=usr/share/man/man4/mn.4.gz 3381 3382# 20210318: remove the terminfo database 3383OLD_FILES+=usr/share/terminfo/1/1178 3384OLD_FILES+=usr/share/terminfo/1/1730-lm 3385OLD_DIRS+=usr/share/terminfo/1 3386OLD_FILES+=usr/share/terminfo/2/2621 3387OLD_FILES+=usr/share/terminfo/2/2621-wl 3388OLD_FILES+=usr/share/terminfo/2/2621A 3389OLD_FILES+=usr/share/terminfo/2/2621a 3390OLD_DIRS+=usr/share/terminfo/2/ 3391OLD_FILES+=usr/share/terminfo/3/386at 3392OLD_FILES+=usr/share/terminfo/3/3b1 3393OLD_DIRS+=usr/share/terminfo/3/ 3394OLD_FILES+=usr/share/terminfo/4/4025ex 3395OLD_FILES+=usr/share/terminfo/4/4027ex 3396OLD_FILES+=usr/share/terminfo/4/4410-w 3397OLD_DIRS+=usr/share/terminfo/4/ 3398OLD_FILES+=usr/share/terminfo/5/5051 3399OLD_FILES+=usr/share/terminfo/5/5410-w 3400OLD_FILES+=usr/share/terminfo/5/5620 3401OLD_FILES+=usr/share/terminfo/5/5630-24 3402OLD_FILES+=usr/share/terminfo/5/5630DMD-24 3403OLD_DIRS+=usr/share/terminfo/5/ 3404OLD_FILES+=usr/share/terminfo/6/6053 3405OLD_FILES+=usr/share/terminfo/6/6053-dg 3406OLD_FILES+=usr/share/terminfo/6/605x 3407OLD_FILES+=usr/share/terminfo/6/605x-dg 3408OLD_FILES+=usr/share/terminfo/6/630-lm 3409OLD_FILES+=usr/share/terminfo/6/630MTG-24 3410OLD_DIRS+=usr/share/terminfo/6/ 3411OLD_FILES+=usr/share/terminfo/7/730MTG-24 3412OLD_FILES+=usr/share/terminfo/7/730MTG-41 3413OLD_FILES+=usr/share/terminfo/7/730MTG-41r 3414OLD_FILES+=usr/share/terminfo/7/730MTGr 3415OLD_FILES+=usr/share/terminfo/7/730MTGr-24 3416OLD_DIRS+=usr/share/terminfo/7/ 3417OLD_FILES+=usr/share/terminfo/8/8510 3418OLD_DIRS+=usr/share/terminfo/8/ 3419OLD_FILES+=usr/share/terminfo/9/955-hb 3420OLD_FILES+=usr/share/terminfo/9/955-w 3421OLD_FILES+=usr/share/terminfo/9/9term 3422OLD_DIRS+=usr/share/terminfo/9/ 3423OLD_FILES+=usr/share/terminfo/A/Apple_Terminal 3424OLD_DIRS+=usr/share/terminfo/A/ 3425OLD_FILES+=usr/share/terminfo/E/Eterm 3426OLD_FILES+=usr/share/terminfo/E/Eterm-256color 3427OLD_FILES+=usr/share/terminfo/E/Eterm-88color 3428OLD_FILES+=usr/share/terminfo/E/Eterm-color 3429OLD_DIRS+=usr/share/terminfo/E/ 3430OLD_FILES+=usr/share/terminfo/L/LFT-PC850 3431OLD_DIRS+=usr/share/terminfo/L/ 3432OLD_FILES+=usr/share/terminfo/M/MtxOrb 3433OLD_FILES+=usr/share/terminfo/M/MtxOrb162 3434OLD_FILES+=usr/share/terminfo/M/MtxOrb204 3435OLD_DIRS+=usr/share/terminfo/M/ 3436OLD_FILES+=usr/share/terminfo/N/NCR260VT300WPP 3437OLD_FILES+=usr/share/terminfo/N/NCRVT100WPP 3438OLD_DIRS+=usr/share/terminfo/N/ 3439OLD_FILES+=usr/share/terminfo/P/P12 3440OLD_FILES+=usr/share/terminfo/P/P12-M 3441OLD_FILES+=usr/share/terminfo/P/P12-M-W 3442OLD_FILES+=usr/share/terminfo/P/P12-W 3443OLD_FILES+=usr/share/terminfo/P/P14 3444OLD_FILES+=usr/share/terminfo/P/P14-M 3445OLD_FILES+=usr/share/terminfo/P/P14-M-W 3446OLD_FILES+=usr/share/terminfo/P/P14-W 3447OLD_FILES+=usr/share/terminfo/P/P4 3448OLD_FILES+=usr/share/terminfo/P/P5 3449OLD_FILES+=usr/share/terminfo/P/P7 3450OLD_FILES+=usr/share/terminfo/P/P8 3451OLD_FILES+=usr/share/terminfo/P/P8-W 3452OLD_FILES+=usr/share/terminfo/P/P9 3453OLD_FILES+=usr/share/terminfo/P/P9-8 3454OLD_FILES+=usr/share/terminfo/P/P9-8-W 3455OLD_FILES+=usr/share/terminfo/P/P9-W 3456OLD_DIRS+=usr/share/terminfo/P/ 3457OLD_FILES+=usr/share/terminfo/Q/Q306-8-pc 3458OLD_FILES+=usr/share/terminfo/Q/Q310-vip-H 3459OLD_FILES+=usr/share/terminfo/Q/Q310-vip-H-am 3460OLD_FILES+=usr/share/terminfo/Q/Q310-vip-Hw 3461OLD_FILES+=usr/share/terminfo/Q/Q310-vip-w 3462OLD_FILES+=usr/share/terminfo/Q/Q310-vip-w-am 3463OLD_DIRS+=usr/share/terminfo/Q/ 3464OLD_FILES+=usr/share/terminfo/X/X-hpterm 3465OLD_DIRS+=usr/share/terminfo/X/ 3466OLD_FILES+=usr/share/terminfo/a/a210 3467OLD_FILES+=usr/share/terminfo/a/a80 3468OLD_FILES+=usr/share/terminfo/a/a980 3469OLD_FILES+=usr/share/terminfo/a/aa4080 3470OLD_FILES+=usr/share/terminfo/a/aaa 3471OLD_FILES+=usr/share/terminfo/a/aaa+dec 3472OLD_FILES+=usr/share/terminfo/a/aaa+rv 3473OLD_FILES+=usr/share/terminfo/a/aaa+unk 3474OLD_FILES+=usr/share/terminfo/a/aaa-18 3475OLD_FILES+=usr/share/terminfo/a/aaa-18-rv 3476OLD_FILES+=usr/share/terminfo/a/aaa-20 3477OLD_FILES+=usr/share/terminfo/a/aaa-22 3478OLD_FILES+=usr/share/terminfo/a/aaa-24 3479OLD_FILES+=usr/share/terminfo/a/aaa-24-rv 3480OLD_FILES+=usr/share/terminfo/a/aaa-26 3481OLD_FILES+=usr/share/terminfo/a/aaa-28 3482OLD_FILES+=usr/share/terminfo/a/aaa-30 3483OLD_FILES+=usr/share/terminfo/a/aaa-30-ctxt 3484OLD_FILES+=usr/share/terminfo/a/aaa-30-rv 3485OLD_FILES+=usr/share/terminfo/a/aaa-30-rv-ctxt 3486OLD_FILES+=usr/share/terminfo/a/aaa-30-s 3487OLD_FILES+=usr/share/terminfo/a/aaa-30-s-ctxt 3488OLD_FILES+=usr/share/terminfo/a/aaa-30-s-rv 3489OLD_FILES+=usr/share/terminfo/a/aaa-30-s-rv-ct 3490OLD_FILES+=usr/share/terminfo/a/aaa-36 3491OLD_FILES+=usr/share/terminfo/a/aaa-36-rv 3492OLD_FILES+=usr/share/terminfo/a/aaa-40 3493OLD_FILES+=usr/share/terminfo/a/aaa-40-rv 3494OLD_FILES+=usr/share/terminfo/a/aaa-48 3495OLD_FILES+=usr/share/terminfo/a/aaa-48-rv 3496OLD_FILES+=usr/share/terminfo/a/aaa-60 3497OLD_FILES+=usr/share/terminfo/a/aaa-60-dec-rv 3498OLD_FILES+=usr/share/terminfo/a/aaa-60-rv 3499OLD_FILES+=usr/share/terminfo/a/aaa-60-s 3500OLD_FILES+=usr/share/terminfo/a/aaa-60-s-rv 3501OLD_FILES+=usr/share/terminfo/a/aaa-ctxt 3502OLD_FILES+=usr/share/terminfo/a/aaa-db 3503OLD_FILES+=usr/share/terminfo/a/aaa-rv 3504OLD_FILES+=usr/share/terminfo/a/aaa-rv-ctxt 3505OLD_FILES+=usr/share/terminfo/a/aaa-rv-unk 3506OLD_FILES+=usr/share/terminfo/a/aaa-s 3507OLD_FILES+=usr/share/terminfo/a/aaa-s-ctxt 3508OLD_FILES+=usr/share/terminfo/a/aaa-s-rv 3509OLD_FILES+=usr/share/terminfo/a/aaa-s-rv-ctxt 3510OLD_FILES+=usr/share/terminfo/a/aaa-unk 3511OLD_FILES+=usr/share/terminfo/a/aas1901 3512OLD_FILES+=usr/share/terminfo/a/abm80 3513OLD_FILES+=usr/share/terminfo/a/abm85 3514OLD_FILES+=usr/share/terminfo/a/abm85e 3515OLD_FILES+=usr/share/terminfo/a/abm85h 3516OLD_FILES+=usr/share/terminfo/a/abm85h-old 3517OLD_FILES+=usr/share/terminfo/a/absolute 3518OLD_FILES+=usr/share/terminfo/a/act4 3519OLD_FILES+=usr/share/terminfo/a/act5 3520OLD_FILES+=usr/share/terminfo/a/addrinfo 3521OLD_FILES+=usr/share/terminfo/a/adds200 3522OLD_FILES+=usr/share/terminfo/a/adds980 3523OLD_FILES+=usr/share/terminfo/a/addsviewpoint 3524OLD_FILES+=usr/share/terminfo/a/addsvp60 3525OLD_FILES+=usr/share/terminfo/a/adm+sgr 3526OLD_FILES+=usr/share/terminfo/a/adm1 3527OLD_FILES+=usr/share/terminfo/a/adm11 3528OLD_FILES+=usr/share/terminfo/a/adm1178 3529OLD_FILES+=usr/share/terminfo/a/adm12 3530OLD_FILES+=usr/share/terminfo/a/adm1a 3531OLD_FILES+=usr/share/terminfo/a/adm2 3532OLD_FILES+=usr/share/terminfo/a/adm20 3533OLD_FILES+=usr/share/terminfo/a/adm21 3534OLD_FILES+=usr/share/terminfo/a/adm22 3535OLD_FILES+=usr/share/terminfo/a/adm3 3536OLD_FILES+=usr/share/terminfo/a/adm31 3537OLD_FILES+=usr/share/terminfo/a/adm31-old 3538OLD_FILES+=usr/share/terminfo/a/adm36 3539OLD_FILES+=usr/share/terminfo/a/adm3a 3540OLD_FILES+=usr/share/terminfo/a/adm3a+ 3541OLD_FILES+=usr/share/terminfo/a/adm42 3542OLD_FILES+=usr/share/terminfo/a/adm42-ns 3543OLD_FILES+=usr/share/terminfo/a/adm5 3544OLD_FILES+=usr/share/terminfo/a/aepro 3545OLD_FILES+=usr/share/terminfo/a/aixterm 3546OLD_FILES+=usr/share/terminfo/a/aixterm-16color 3547OLD_FILES+=usr/share/terminfo/a/aixterm-m 3548OLD_FILES+=usr/share/terminfo/a/aixterm-m-old 3549OLD_FILES+=usr/share/terminfo/a/aj 3550OLD_FILES+=usr/share/terminfo/a/aj510 3551OLD_FILES+=usr/share/terminfo/a/aj830 3552OLD_FILES+=usr/share/terminfo/a/aj832 3553OLD_FILES+=usr/share/terminfo/a/alacritty 3554OLD_FILES+=usr/share/terminfo/a/alacritty+common 3555OLD_FILES+=usr/share/terminfo/a/alacritty-direct 3556OLD_FILES+=usr/share/terminfo/a/alt2 3557OLD_FILES+=usr/share/terminfo/a/alt3 3558OLD_FILES+=usr/share/terminfo/a/alt4 3559OLD_FILES+=usr/share/terminfo/a/alt5 3560OLD_FILES+=usr/share/terminfo/a/alt7 3561OLD_FILES+=usr/share/terminfo/a/alt7pc 3562OLD_FILES+=usr/share/terminfo/a/alto-h19 3563OLD_FILES+=usr/share/terminfo/a/alto-heath 3564OLD_FILES+=usr/share/terminfo/a/altoh19 3565OLD_FILES+=usr/share/terminfo/a/altoheath 3566OLD_FILES+=usr/share/terminfo/a/altos-2 3567OLD_FILES+=usr/share/terminfo/a/altos-3 3568OLD_FILES+=usr/share/terminfo/a/altos-4 3569OLD_FILES+=usr/share/terminfo/a/altos-5 3570OLD_FILES+=usr/share/terminfo/a/altos2 3571OLD_FILES+=usr/share/terminfo/a/altos3 3572OLD_FILES+=usr/share/terminfo/a/altos4 3573OLD_FILES+=usr/share/terminfo/a/altos5 3574OLD_FILES+=usr/share/terminfo/a/altos7 3575OLD_FILES+=usr/share/terminfo/a/altos7pc 3576OLD_FILES+=usr/share/terminfo/a/ambas 3577OLD_FILES+=usr/share/terminfo/a/ambassador 3578OLD_FILES+=usr/share/terminfo/a/amiga 3579OLD_FILES+=usr/share/terminfo/a/amiga-8bit 3580OLD_FILES+=usr/share/terminfo/a/amiga-h 3581OLD_FILES+=usr/share/terminfo/a/amiga-vnc 3582OLD_FILES+=usr/share/terminfo/a/amp219 3583OLD_FILES+=usr/share/terminfo/a/amp219w 3584OLD_FILES+=usr/share/terminfo/a/ampex-219 3585OLD_FILES+=usr/share/terminfo/a/ampex-219w 3586OLD_FILES+=usr/share/terminfo/a/ampex-232 3587OLD_FILES+=usr/share/terminfo/a/ampex175 3588OLD_FILES+=usr/share/terminfo/a/ampex175-b 3589OLD_FILES+=usr/share/terminfo/a/ampex210 3590OLD_FILES+=usr/share/terminfo/a/ampex219 3591OLD_FILES+=usr/share/terminfo/a/ampex219w 3592OLD_FILES+=usr/share/terminfo/a/ampex232 3593OLD_FILES+=usr/share/terminfo/a/ampex232w 3594OLD_FILES+=usr/share/terminfo/a/ampex80 3595OLD_FILES+=usr/share/terminfo/a/annarbor4080 3596OLD_FILES+=usr/share/terminfo/a/ansi 3597OLD_FILES+=usr/share/terminfo/a/ansi+arrows 3598OLD_FILES+=usr/share/terminfo/a/ansi+csr 3599OLD_FILES+=usr/share/terminfo/a/ansi+cup 3600OLD_FILES+=usr/share/terminfo/a/ansi+enq 3601OLD_FILES+=usr/share/terminfo/a/ansi+erase 3602OLD_FILES+=usr/share/terminfo/a/ansi+idc 3603OLD_FILES+=usr/share/terminfo/a/ansi+idc1 3604OLD_FILES+=usr/share/terminfo/a/ansi+idl 3605OLD_FILES+=usr/share/terminfo/a/ansi+idl1 3606OLD_FILES+=usr/share/terminfo/a/ansi+inittabs 3607OLD_FILES+=usr/share/terminfo/a/ansi+local 3608OLD_FILES+=usr/share/terminfo/a/ansi+local1 3609OLD_FILES+=usr/share/terminfo/a/ansi+pp 3610OLD_FILES+=usr/share/terminfo/a/ansi+rca 3611OLD_FILES+=usr/share/terminfo/a/ansi+rep 3612OLD_FILES+=usr/share/terminfo/a/ansi+sgr 3613OLD_FILES+=usr/share/terminfo/a/ansi+sgrbold 3614OLD_FILES+=usr/share/terminfo/a/ansi+sgrdim 3615OLD_FILES+=usr/share/terminfo/a/ansi+sgrso 3616OLD_FILES+=usr/share/terminfo/a/ansi+sgrul 3617OLD_FILES+=usr/share/terminfo/a/ansi+tabs 3618OLD_FILES+=usr/share/terminfo/a/ansi-color-2-emx 3619OLD_FILES+=usr/share/terminfo/a/ansi-color-3-emx 3620OLD_FILES+=usr/share/terminfo/a/ansi-emx 3621OLD_FILES+=usr/share/terminfo/a/ansi-generic 3622OLD_FILES+=usr/share/terminfo/a/ansi-m 3623OLD_FILES+=usr/share/terminfo/a/ansi-mini 3624OLD_FILES+=usr/share/terminfo/a/ansi-mono 3625OLD_FILES+=usr/share/terminfo/a/ansi-mr 3626OLD_FILES+=usr/share/terminfo/a/ansi-mtabs 3627OLD_FILES+=usr/share/terminfo/a/ansi-nt 3628OLD_FILES+=usr/share/terminfo/a/ansi.sys 3629OLD_FILES+=usr/share/terminfo/a/ansi.sys-old 3630OLD_FILES+=usr/share/terminfo/a/ansi.sysk 3631OLD_FILES+=usr/share/terminfo/a/ansi43m 3632OLD_FILES+=usr/share/terminfo/a/ansi77 3633OLD_FILES+=usr/share/terminfo/a/ansi80x25 3634OLD_FILES+=usr/share/terminfo/a/ansi80x25-mono 3635OLD_FILES+=usr/share/terminfo/a/ansi80x25-raw 3636OLD_FILES+=usr/share/terminfo/a/ansi80x30 3637OLD_FILES+=usr/share/terminfo/a/ansi80x30-mono 3638OLD_FILES+=usr/share/terminfo/a/ansi80x43 3639OLD_FILES+=usr/share/terminfo/a/ansi80x43-mono 3640OLD_FILES+=usr/share/terminfo/a/ansi80x50 3641OLD_FILES+=usr/share/terminfo/a/ansi80x50-mono 3642OLD_FILES+=usr/share/terminfo/a/ansi80x60 3643OLD_FILES+=usr/share/terminfo/a/ansi80x60-mono 3644OLD_FILES+=usr/share/terminfo/a/ansil 3645OLD_FILES+=usr/share/terminfo/a/ansil-mono 3646OLD_FILES+=usr/share/terminfo/a/ansis 3647OLD_FILES+=usr/share/terminfo/a/ansis-mono 3648OLD_FILES+=usr/share/terminfo/a/ansisysk 3649OLD_FILES+=usr/share/terminfo/a/ansiterm 3650OLD_FILES+=usr/share/terminfo/a/ansiw 3651OLD_FILES+=usr/share/terminfo/a/ap-vm80 3652OLD_FILES+=usr/share/terminfo/a/apl 3653OLD_FILES+=usr/share/terminfo/a/apollo 3654OLD_FILES+=usr/share/terminfo/a/apollo_15P 3655OLD_FILES+=usr/share/terminfo/a/apollo_19L 3656OLD_FILES+=usr/share/terminfo/a/apollo_color 3657OLD_FILES+=usr/share/terminfo/a/apple-80 3658OLD_FILES+=usr/share/terminfo/a/apple-ae 3659OLD_FILES+=usr/share/terminfo/a/apple-soroc 3660OLD_FILES+=usr/share/terminfo/a/apple-uterm 3661OLD_FILES+=usr/share/terminfo/a/apple-uterm-vb 3662OLD_FILES+=usr/share/terminfo/a/apple-videx 3663OLD_FILES+=usr/share/terminfo/a/apple-videx2 3664OLD_FILES+=usr/share/terminfo/a/apple-videx3 3665OLD_FILES+=usr/share/terminfo/a/apple-vm80 3666OLD_FILES+=usr/share/terminfo/a/apple2e 3667OLD_FILES+=usr/share/terminfo/a/apple2e-p 3668OLD_FILES+=usr/share/terminfo/a/apple80p 3669OLD_FILES+=usr/share/terminfo/a/appleII 3670OLD_FILES+=usr/share/terminfo/a/appleIIc 3671OLD_FILES+=usr/share/terminfo/a/appleIIe 3672OLD_FILES+=usr/share/terminfo/a/appleIIgs 3673OLD_FILES+=usr/share/terminfo/a/arm100 3674OLD_FILES+=usr/share/terminfo/a/arm100-am 3675OLD_FILES+=usr/share/terminfo/a/arm100-w 3676OLD_FILES+=usr/share/terminfo/a/arm100-wam 3677OLD_FILES+=usr/share/terminfo/a/at 3678OLD_FILES+=usr/share/terminfo/a/at-color 3679OLD_FILES+=usr/share/terminfo/a/at-m 3680OLD_FILES+=usr/share/terminfo/a/at386 3681OLD_FILES+=usr/share/terminfo/a/atari 3682OLD_FILES+=usr/share/terminfo/a/atari-color 3683OLD_FILES+=usr/share/terminfo/a/atari-m 3684OLD_FILES+=usr/share/terminfo/a/atari-old 3685OLD_FILES+=usr/share/terminfo/a/atari_st 3686OLD_FILES+=usr/share/terminfo/a/atari_st-color 3687OLD_FILES+=usr/share/terminfo/a/atarist-m 3688OLD_FILES+=usr/share/terminfo/a/aterm 3689OLD_FILES+=usr/share/terminfo/a/att2300 3690OLD_FILES+=usr/share/terminfo/a/att2350 3691OLD_FILES+=usr/share/terminfo/a/att4410 3692OLD_FILES+=usr/share/terminfo/a/att4410-w 3693OLD_FILES+=usr/share/terminfo/a/att4410v1 3694OLD_FILES+=usr/share/terminfo/a/att4410v1-w 3695OLD_FILES+=usr/share/terminfo/a/att4415 3696OLD_FILES+=usr/share/terminfo/a/att4415+nl 3697OLD_FILES+=usr/share/terminfo/a/att4415-nl 3698OLD_FILES+=usr/share/terminfo/a/att4415-rv 3699OLD_FILES+=usr/share/terminfo/a/att4415-rv-nl 3700OLD_FILES+=usr/share/terminfo/a/att4415-w 3701OLD_FILES+=usr/share/terminfo/a/att4415-w-nl 3702OLD_FILES+=usr/share/terminfo/a/att4415-w-rv 3703OLD_FILES+=usr/share/terminfo/a/att4415-w-rv-n 3704OLD_FILES+=usr/share/terminfo/a/att4418 3705OLD_FILES+=usr/share/terminfo/a/att4418-w 3706OLD_FILES+=usr/share/terminfo/a/att4420 3707OLD_FILES+=usr/share/terminfo/a/att4424 3708OLD_FILES+=usr/share/terminfo/a/att4424-1 3709OLD_FILES+=usr/share/terminfo/a/att4424m 3710OLD_FILES+=usr/share/terminfo/a/att4425 3711OLD_FILES+=usr/share/terminfo/a/att4425-nl 3712OLD_FILES+=usr/share/terminfo/a/att4425-w 3713OLD_FILES+=usr/share/terminfo/a/att4426 3714OLD_FILES+=usr/share/terminfo/a/att500 3715OLD_FILES+=usr/share/terminfo/a/att505 3716OLD_FILES+=usr/share/terminfo/a/att505-24 3717OLD_FILES+=usr/share/terminfo/a/att510a 3718OLD_FILES+=usr/share/terminfo/a/att510d 3719OLD_FILES+=usr/share/terminfo/a/att513 3720OLD_FILES+=usr/share/terminfo/a/att5310 3721OLD_FILES+=usr/share/terminfo/a/att5320 3722OLD_FILES+=usr/share/terminfo/a/att5410 3723OLD_FILES+=usr/share/terminfo/a/att5410-w 3724OLD_FILES+=usr/share/terminfo/a/att5410v1 3725OLD_FILES+=usr/share/terminfo/a/att5410v1-w 3726OLD_FILES+=usr/share/terminfo/a/att5418 3727OLD_FILES+=usr/share/terminfo/a/att5418-w 3728OLD_FILES+=usr/share/terminfo/a/att5420 3729OLD_FILES+=usr/share/terminfo/a/att5420+nl 3730OLD_FILES+=usr/share/terminfo/a/att5420-nl 3731OLD_FILES+=usr/share/terminfo/a/att5420-rv 3732OLD_FILES+=usr/share/terminfo/a/att5420-rv-nl 3733OLD_FILES+=usr/share/terminfo/a/att5420-w 3734OLD_FILES+=usr/share/terminfo/a/att5420-w-nl 3735OLD_FILES+=usr/share/terminfo/a/att5420-w-rv 3736OLD_FILES+=usr/share/terminfo/a/att5420-w-rv-n 3737OLD_FILES+=usr/share/terminfo/a/att5420_2 3738OLD_FILES+=usr/share/terminfo/a/att5420_2-w 3739OLD_FILES+=usr/share/terminfo/a/att5425 3740OLD_FILES+=usr/share/terminfo/a/att5425-nl 3741OLD_FILES+=usr/share/terminfo/a/att5425-w 3742OLD_FILES+=usr/share/terminfo/a/att5430 3743OLD_FILES+=usr/share/terminfo/a/att5620 3744OLD_FILES+=usr/share/terminfo/a/att5620-1 3745OLD_FILES+=usr/share/terminfo/a/att5620-24 3746OLD_FILES+=usr/share/terminfo/a/att5620-34 3747OLD_FILES+=usr/share/terminfo/a/att5620-s 3748OLD_FILES+=usr/share/terminfo/a/att605 3749OLD_FILES+=usr/share/terminfo/a/att605-pc 3750OLD_FILES+=usr/share/terminfo/a/att605-w 3751OLD_FILES+=usr/share/terminfo/a/att610 3752OLD_FILES+=usr/share/terminfo/a/att610+cvis 3753OLD_FILES+=usr/share/terminfo/a/att610+cvis0 3754OLD_FILES+=usr/share/terminfo/a/att610-103k 3755OLD_FILES+=usr/share/terminfo/a/att610-103k-w 3756OLD_FILES+=usr/share/terminfo/a/att610-w 3757OLD_FILES+=usr/share/terminfo/a/att615 3758OLD_FILES+=usr/share/terminfo/a/att615-103k 3759OLD_FILES+=usr/share/terminfo/a/att615-103k-w 3760OLD_FILES+=usr/share/terminfo/a/att615-w 3761OLD_FILES+=usr/share/terminfo/a/att620 3762OLD_FILES+=usr/share/terminfo/a/att620-103k 3763OLD_FILES+=usr/share/terminfo/a/att620-103k-w 3764OLD_FILES+=usr/share/terminfo/a/att620-w 3765OLD_FILES+=usr/share/terminfo/a/att630 3766OLD_FILES+=usr/share/terminfo/a/att630-24 3767OLD_FILES+=usr/share/terminfo/a/att6386 3768OLD_FILES+=usr/share/terminfo/a/att700 3769OLD_FILES+=usr/share/terminfo/a/att730 3770OLD_FILES+=usr/share/terminfo/a/att730-24 3771OLD_FILES+=usr/share/terminfo/a/att730-41 3772OLD_FILES+=usr/share/terminfo/a/att7300 3773OLD_FILES+=usr/share/terminfo/a/att730r 3774OLD_FILES+=usr/share/terminfo/a/att730r-24 3775OLD_FILES+=usr/share/terminfo/a/att730r-41 3776OLD_FILES+=usr/share/terminfo/a/avatar 3777OLD_FILES+=usr/share/terminfo/a/avatar0 3778OLD_FILES+=usr/share/terminfo/a/avatar0+ 3779OLD_FILES+=usr/share/terminfo/a/avatar1 3780OLD_FILES+=usr/share/terminfo/a/avt 3781OLD_FILES+=usr/share/terminfo/a/avt+s 3782OLD_FILES+=usr/share/terminfo/a/avt-ns 3783OLD_FILES+=usr/share/terminfo/a/avt-rv 3784OLD_FILES+=usr/share/terminfo/a/avt-rv-ns 3785OLD_FILES+=usr/share/terminfo/a/avt-rv-s 3786OLD_FILES+=usr/share/terminfo/a/avt-s 3787OLD_FILES+=usr/share/terminfo/a/avt-w 3788OLD_FILES+=usr/share/terminfo/a/avt-w-ns 3789OLD_FILES+=usr/share/terminfo/a/avt-w-rv 3790OLD_FILES+=usr/share/terminfo/a/avt-w-rv-ns 3791OLD_FILES+=usr/share/terminfo/a/avt-w-rv-s 3792OLD_FILES+=usr/share/terminfo/a/avt-w-s 3793OLD_FILES+=usr/share/terminfo/a/aws 3794OLD_FILES+=usr/share/terminfo/a/awsc 3795OLD_DIRS+=usr/share/terminfo/a/ 3796OLD_FILES+=usr/share/terminfo/b/b-128 3797OLD_FILES+=usr/share/terminfo/b/bantam 3798OLD_FILES+=usr/share/terminfo/b/basic4 3799OLD_FILES+=usr/share/terminfo/b/basis 3800OLD_FILES+=usr/share/terminfo/b/bct510a 3801OLD_FILES+=usr/share/terminfo/b/bct510d 3802OLD_FILES+=usr/share/terminfo/b/beacon 3803OLD_FILES+=usr/share/terminfo/b/bee 3804OLD_FILES+=usr/share/terminfo/b/beehive 3805OLD_FILES+=usr/share/terminfo/b/beehive3 3806OLD_FILES+=usr/share/terminfo/b/beehive4 3807OLD_FILES+=usr/share/terminfo/b/beehiveIIIm 3808OLD_FILES+=usr/share/terminfo/b/beterm 3809OLD_FILES+=usr/share/terminfo/b/bg1.25 3810OLD_FILES+=usr/share/terminfo/b/bg1.25nv 3811OLD_FILES+=usr/share/terminfo/b/bg1.25rv 3812OLD_FILES+=usr/share/terminfo/b/bg2.0 3813OLD_FILES+=usr/share/terminfo/b/bg2.0nv 3814OLD_FILES+=usr/share/terminfo/b/bg2.0rv 3815OLD_FILES+=usr/share/terminfo/b/bg3.10 3816OLD_FILES+=usr/share/terminfo/b/bg3.10nv 3817OLD_FILES+=usr/share/terminfo/b/bg3.10rv 3818OLD_FILES+=usr/share/terminfo/b/bh3m 3819OLD_FILES+=usr/share/terminfo/b/bh4 3820OLD_FILES+=usr/share/terminfo/b/bitgraph 3821OLD_FILES+=usr/share/terminfo/b/blit 3822OLD_FILES+=usr/share/terminfo/b/bobcat 3823OLD_FILES+=usr/share/terminfo/b/bq300 3824OLD_FILES+=usr/share/terminfo/b/bq300-8 3825OLD_FILES+=usr/share/terminfo/b/bq300-8-pc 3826OLD_FILES+=usr/share/terminfo/b/bq300-8-pc-rv 3827OLD_FILES+=usr/share/terminfo/b/bq300-8-pc-w 3828OLD_FILES+=usr/share/terminfo/b/bq300-8-pc-w-rv 3829OLD_FILES+=usr/share/terminfo/b/bq300-8rv 3830OLD_FILES+=usr/share/terminfo/b/bq300-8w 3831OLD_FILES+=usr/share/terminfo/b/bq300-pc 3832OLD_FILES+=usr/share/terminfo/b/bq300-pc-rv 3833OLD_FILES+=usr/share/terminfo/b/bq300-pc-w 3834OLD_FILES+=usr/share/terminfo/b/bq300-pc-w-rv 3835OLD_FILES+=usr/share/terminfo/b/bq300-rv 3836OLD_FILES+=usr/share/terminfo/b/bq300-w 3837OLD_FILES+=usr/share/terminfo/b/bq300-w-8rv 3838OLD_FILES+=usr/share/terminfo/b/bq300-w-rv 3839OLD_FILES+=usr/share/terminfo/b/bsdos-pc 3840OLD_FILES+=usr/share/terminfo/b/bsdos-pc-m 3841OLD_FILES+=usr/share/terminfo/b/bsdos-pc-mono 3842OLD_FILES+=usr/share/terminfo/b/bsdos-pc-nobold 3843OLD_FILES+=usr/share/terminfo/b/bsdos-ppc 3844OLD_FILES+=usr/share/terminfo/b/bsdos-sparc 3845OLD_FILES+=usr/share/terminfo/b/bterm 3846OLD_DIRS+=usr/share/terminfo/b/ 3847OLD_FILES+=usr/share/terminfo/c/c100 3848OLD_FILES+=usr/share/terminfo/c/c100-1p 3849OLD_FILES+=usr/share/terminfo/c/c100-4p 3850OLD_FILES+=usr/share/terminfo/c/c100-rv 3851OLD_FILES+=usr/share/terminfo/c/c100-rv-4p 3852OLD_FILES+=usr/share/terminfo/c/c104 3853OLD_FILES+=usr/share/terminfo/c/c108 3854OLD_FILES+=usr/share/terminfo/c/c108-4p 3855OLD_FILES+=usr/share/terminfo/c/c108-8p 3856OLD_FILES+=usr/share/terminfo/c/c108-rv 3857OLD_FILES+=usr/share/terminfo/c/c108-rv-4p 3858OLD_FILES+=usr/share/terminfo/c/c108-rv-8p 3859OLD_FILES+=usr/share/terminfo/c/c108-w 3860OLD_FILES+=usr/share/terminfo/c/c108-w-8p 3861OLD_FILES+=usr/share/terminfo/c/c300 3862OLD_FILES+=usr/share/terminfo/c/c301 3863OLD_FILES+=usr/share/terminfo/c/c321 3864OLD_FILES+=usr/share/terminfo/c/ca22851 3865OLD_FILES+=usr/share/terminfo/c/cad68-2 3866OLD_FILES+=usr/share/terminfo/c/cad68-3 3867OLD_FILES+=usr/share/terminfo/c/cbblit 3868OLD_FILES+=usr/share/terminfo/c/cbunix 3869OLD_FILES+=usr/share/terminfo/c/cci 3870OLD_FILES+=usr/share/terminfo/c/cci1 3871OLD_FILES+=usr/share/terminfo/c/cdc456 3872OLD_FILES+=usr/share/terminfo/c/cdc721 3873OLD_FILES+=usr/share/terminfo/c/cdc721-esc 3874OLD_FILES+=usr/share/terminfo/c/cdc721ll 3875OLD_FILES+=usr/share/terminfo/c/cdc752 3876OLD_FILES+=usr/share/terminfo/c/cdc756 3877OLD_FILES+=usr/share/terminfo/c/cg7900 3878OLD_FILES+=usr/share/terminfo/c/cgc2 3879OLD_FILES+=usr/share/terminfo/c/cgc3 3880OLD_FILES+=usr/share/terminfo/c/chromatics 3881OLD_FILES+=usr/share/terminfo/c/ci8510 3882OLD_FILES+=usr/share/terminfo/c/cit-80 3883OLD_FILES+=usr/share/terminfo/c/cit101 3884OLD_FILES+=usr/share/terminfo/c/cit101e 3885OLD_FILES+=usr/share/terminfo/c/cit101e-132 3886OLD_FILES+=usr/share/terminfo/c/cit101e-n 3887OLD_FILES+=usr/share/terminfo/c/cit101e-n132 3888OLD_FILES+=usr/share/terminfo/c/cit101e-rv 3889OLD_FILES+=usr/share/terminfo/c/cit500 3890OLD_FILES+=usr/share/terminfo/c/cit80 3891OLD_FILES+=usr/share/terminfo/c/citc 3892OLD_FILES+=usr/share/terminfo/c/citoh 3893OLD_FILES+=usr/share/terminfo/c/citoh-6lpi 3894OLD_FILES+=usr/share/terminfo/c/citoh-8lpi 3895OLD_FILES+=usr/share/terminfo/c/citoh-comp 3896OLD_FILES+=usr/share/terminfo/c/citoh-elite 3897OLD_FILES+=usr/share/terminfo/c/citoh-pica 3898OLD_FILES+=usr/share/terminfo/c/citoh-prop 3899OLD_FILES+=usr/share/terminfo/c/citoh-ps 3900OLD_FILES+=usr/share/terminfo/c/coco3 3901OLD_FILES+=usr/share/terminfo/c/coherent 3902OLD_FILES+=usr/share/terminfo/c/color_xterm 3903OLD_FILES+=usr/share/terminfo/c/colorscan 3904OLD_FILES+=usr/share/terminfo/c/commodore 3905OLD_FILES+=usr/share/terminfo/c/concept 3906OLD_FILES+=usr/share/terminfo/c/concept-avt 3907OLD_FILES+=usr/share/terminfo/c/concept100 3908OLD_FILES+=usr/share/terminfo/c/concept100-rv 3909OLD_FILES+=usr/share/terminfo/c/concept108 3910OLD_FILES+=usr/share/terminfo/c/concept108-4p 3911OLD_FILES+=usr/share/terminfo/c/concept108-8p 3912OLD_FILES+=usr/share/terminfo/c/concept108-w-8 3913OLD_FILES+=usr/share/terminfo/c/concept108-w8p 3914OLD_FILES+=usr/share/terminfo/c/concept108rv4p 3915OLD_FILES+=usr/share/terminfo/c/cons25 3916OLD_FILES+=usr/share/terminfo/c/cons25-debian 3917OLD_FILES+=usr/share/terminfo/c/cons25-iso-m 3918OLD_FILES+=usr/share/terminfo/c/cons25-iso8859 3919OLD_FILES+=usr/share/terminfo/c/cons25-koi8-r 3920OLD_FILES+=usr/share/terminfo/c/cons25-koi8r-m 3921OLD_FILES+=usr/share/terminfo/c/cons25-m 3922OLD_FILES+=usr/share/terminfo/c/cons25l1 3923OLD_FILES+=usr/share/terminfo/c/cons25l1-m 3924OLD_FILES+=usr/share/terminfo/c/cons25r 3925OLD_FILES+=usr/share/terminfo/c/cons25r-m 3926OLD_FILES+=usr/share/terminfo/c/cons25w 3927OLD_FILES+=usr/share/terminfo/c/cons30 3928OLD_FILES+=usr/share/terminfo/c/cons30-m 3929OLD_FILES+=usr/share/terminfo/c/cons43 3930OLD_FILES+=usr/share/terminfo/c/cons43-m 3931OLD_FILES+=usr/share/terminfo/c/cons50 3932OLD_FILES+=usr/share/terminfo/c/cons50-iso-m 3933OLD_FILES+=usr/share/terminfo/c/cons50-iso8859 3934OLD_FILES+=usr/share/terminfo/c/cons50-koi8r 3935OLD_FILES+=usr/share/terminfo/c/cons50-koi8r-m 3936OLD_FILES+=usr/share/terminfo/c/cons50-m 3937OLD_FILES+=usr/share/terminfo/c/cons50l1 3938OLD_FILES+=usr/share/terminfo/c/cons50l1-m 3939OLD_FILES+=usr/share/terminfo/c/cons50r 3940OLD_FILES+=usr/share/terminfo/c/cons50r-m 3941OLD_FILES+=usr/share/terminfo/c/cons60 3942OLD_FILES+=usr/share/terminfo/c/cons60-iso 3943OLD_FILES+=usr/share/terminfo/c/cons60-iso-m 3944OLD_FILES+=usr/share/terminfo/c/cons60-koi8r 3945OLD_FILES+=usr/share/terminfo/c/cons60-koi8r-m 3946OLD_FILES+=usr/share/terminfo/c/cons60-m 3947OLD_FILES+=usr/share/terminfo/c/cons60l1 3948OLD_FILES+=usr/share/terminfo/c/cons60l1-m 3949OLD_FILES+=usr/share/terminfo/c/cons60r 3950OLD_FILES+=usr/share/terminfo/c/cons60r-m 3951OLD_FILES+=usr/share/terminfo/c/contel300 3952OLD_FILES+=usr/share/terminfo/c/contel301 3953OLD_FILES+=usr/share/terminfo/c/contel320 3954OLD_FILES+=usr/share/terminfo/c/contel321 3955OLD_FILES+=usr/share/terminfo/c/cops 3956OLD_FILES+=usr/share/terminfo/c/cops-10 3957OLD_FILES+=usr/share/terminfo/c/cops10 3958OLD_FILES+=usr/share/terminfo/c/crt 3959OLD_FILES+=usr/share/terminfo/c/crt-vt220 3960OLD_FILES+=usr/share/terminfo/c/cs10 3961OLD_FILES+=usr/share/terminfo/c/cs10-w 3962OLD_FILES+=usr/share/terminfo/c/ct82 3963OLD_FILES+=usr/share/terminfo/c/ct8500 3964OLD_FILES+=usr/share/terminfo/c/ctrm 3965OLD_FILES+=usr/share/terminfo/c/cx 3966OLD_FILES+=usr/share/terminfo/c/cx100 3967OLD_FILES+=usr/share/terminfo/c/cyb110 3968OLD_FILES+=usr/share/terminfo/c/cyb83 3969OLD_FILES+=usr/share/terminfo/c/cygwin 3970OLD_FILES+=usr/share/terminfo/c/cygwinB19 3971OLD_FILES+=usr/share/terminfo/c/cygwinDBG 3972OLD_DIRS+=usr/share/terminfo/c/ 3973OLD_FILES+=usr/share/terminfo/d/d132 3974OLD_FILES+=usr/share/terminfo/d/d2 3975OLD_FILES+=usr/share/terminfo/d/d2-dg 3976OLD_FILES+=usr/share/terminfo/d/d200 3977OLD_FILES+=usr/share/terminfo/d/d200-dg 3978OLD_FILES+=usr/share/terminfo/d/d210 3979OLD_FILES+=usr/share/terminfo/d/d210-dg 3980OLD_FILES+=usr/share/terminfo/d/d211 3981OLD_FILES+=usr/share/terminfo/d/d211-7b 3982OLD_FILES+=usr/share/terminfo/d/d211-dg 3983OLD_FILES+=usr/share/terminfo/d/d214 3984OLD_FILES+=usr/share/terminfo/d/d214-dg 3985OLD_FILES+=usr/share/terminfo/d/d215 3986OLD_FILES+=usr/share/terminfo/d/d215-7b 3987OLD_FILES+=usr/share/terminfo/d/d215-dg 3988OLD_FILES+=usr/share/terminfo/d/d216+ 3989OLD_FILES+=usr/share/terminfo/d/d216+25 3990OLD_FILES+=usr/share/terminfo/d/d216+dg 3991OLD_FILES+=usr/share/terminfo/d/d216-dg 3992OLD_FILES+=usr/share/terminfo/d/d216-unix 3993OLD_FILES+=usr/share/terminfo/d/d216-unix-25 3994OLD_FILES+=usr/share/terminfo/d/d216e+ 3995OLD_FILES+=usr/share/terminfo/d/d216e+dg 3996OLD_FILES+=usr/share/terminfo/d/d216e-dg 3997OLD_FILES+=usr/share/terminfo/d/d216e-unix 3998OLD_FILES+=usr/share/terminfo/d/d217-dg 3999OLD_FILES+=usr/share/terminfo/d/d217-unix 4000OLD_FILES+=usr/share/terminfo/d/d217-unix-25 4001OLD_FILES+=usr/share/terminfo/d/d220 4002OLD_FILES+=usr/share/terminfo/d/d220-7b 4003OLD_FILES+=usr/share/terminfo/d/d220-dg 4004OLD_FILES+=usr/share/terminfo/d/d230 4005OLD_FILES+=usr/share/terminfo/d/d230-dg 4006OLD_FILES+=usr/share/terminfo/d/d230c 4007OLD_FILES+=usr/share/terminfo/d/d230c-dg 4008OLD_FILES+=usr/share/terminfo/d/d400 4009OLD_FILES+=usr/share/terminfo/d/d400-dg 4010OLD_FILES+=usr/share/terminfo/d/d410 4011OLD_FILES+=usr/share/terminfo/d/d410-7b 4012OLD_FILES+=usr/share/terminfo/d/d410-7b-w 4013OLD_FILES+=usr/share/terminfo/d/d410-dg 4014OLD_FILES+=usr/share/terminfo/d/d410-w 4015OLD_FILES+=usr/share/terminfo/d/d411 4016OLD_FILES+=usr/share/terminfo/d/d411-7b 4017OLD_FILES+=usr/share/terminfo/d/d411-7b-w 4018OLD_FILES+=usr/share/terminfo/d/d411-dg 4019OLD_FILES+=usr/share/terminfo/d/d411-w 4020OLD_FILES+=usr/share/terminfo/d/d412+ 4021OLD_FILES+=usr/share/terminfo/d/d412+25 4022OLD_FILES+=usr/share/terminfo/d/d412+dg 4023OLD_FILES+=usr/share/terminfo/d/d412+s 4024OLD_FILES+=usr/share/terminfo/d/d412+sr 4025OLD_FILES+=usr/share/terminfo/d/d412+w 4026OLD_FILES+=usr/share/terminfo/d/d412-dg 4027OLD_FILES+=usr/share/terminfo/d/d412-unix 4028OLD_FILES+=usr/share/terminfo/d/d412-unix-25 4029OLD_FILES+=usr/share/terminfo/d/d412-unix-s 4030OLD_FILES+=usr/share/terminfo/d/d412-unix-sr 4031OLD_FILES+=usr/share/terminfo/d/d412-unix-w 4032OLD_FILES+=usr/share/terminfo/d/d413-dg 4033OLD_FILES+=usr/share/terminfo/d/d413-unix 4034OLD_FILES+=usr/share/terminfo/d/d413-unix-25 4035OLD_FILES+=usr/share/terminfo/d/d413-unix-s 4036OLD_FILES+=usr/share/terminfo/d/d413-unix-sr 4037OLD_FILES+=usr/share/terminfo/d/d413-unix-w 4038OLD_FILES+=usr/share/terminfo/d/d414-unix 4039OLD_FILES+=usr/share/terminfo/d/d414-unix-25 4040OLD_FILES+=usr/share/terminfo/d/d414-unix-s 4041OLD_FILES+=usr/share/terminfo/d/d414-unix-sr 4042OLD_FILES+=usr/share/terminfo/d/d414-unix-w 4043OLD_FILES+=usr/share/terminfo/d/d430-dg 4044OLD_FILES+=usr/share/terminfo/d/d430-dg-ccc 4045OLD_FILES+=usr/share/terminfo/d/d430-unix 4046OLD_FILES+=usr/share/terminfo/d/d430-unix-25 4047OLD_FILES+=usr/share/terminfo/d/d430-unix-25-ccc 4048OLD_FILES+=usr/share/terminfo/d/d430-unix-ccc 4049OLD_FILES+=usr/share/terminfo/d/d430-unix-s 4050OLD_FILES+=usr/share/terminfo/d/d430-unix-s-ccc 4051OLD_FILES+=usr/share/terminfo/d/d430-unix-sr 4052OLD_FILES+=usr/share/terminfo/d/d430-unix-sr-ccc 4053OLD_FILES+=usr/share/terminfo/d/d430-unix-w 4054OLD_FILES+=usr/share/terminfo/d/d430-unix-w-ccc 4055OLD_FILES+=usr/share/terminfo/d/d430c-dg 4056OLD_FILES+=usr/share/terminfo/d/d430c-dg-ccc 4057OLD_FILES+=usr/share/terminfo/d/d430c-unix 4058OLD_FILES+=usr/share/terminfo/d/d430c-unix-25 4059OLD_FILES+=usr/share/terminfo/d/d430c-unix-25-ccc 4060OLD_FILES+=usr/share/terminfo/d/d430c-unix-ccc 4061OLD_FILES+=usr/share/terminfo/d/d430c-unix-s 4062OLD_FILES+=usr/share/terminfo/d/d430c-unix-s-ccc 4063OLD_FILES+=usr/share/terminfo/d/d430c-unix-sr 4064OLD_FILES+=usr/share/terminfo/d/d430c-unix-sr-ccc 4065OLD_FILES+=usr/share/terminfo/d/d430c-unix-w 4066OLD_FILES+=usr/share/terminfo/d/d430c-unix-w-ccc 4067OLD_FILES+=usr/share/terminfo/d/d450 4068OLD_FILES+=usr/share/terminfo/d/d450-dg 4069OLD_FILES+=usr/share/terminfo/d/d460 4070OLD_FILES+=usr/share/terminfo/d/d460-7b 4071OLD_FILES+=usr/share/terminfo/d/d460-7b-w 4072OLD_FILES+=usr/share/terminfo/d/d460-dg 4073OLD_FILES+=usr/share/terminfo/d/d460-w 4074OLD_FILES+=usr/share/terminfo/d/d461 4075OLD_FILES+=usr/share/terminfo/d/d461-7b 4076OLD_FILES+=usr/share/terminfo/d/d461-7b-w 4077OLD_FILES+=usr/share/terminfo/d/d461-dg 4078OLD_FILES+=usr/share/terminfo/d/d461-w 4079OLD_FILES+=usr/share/terminfo/d/d462+ 4080OLD_FILES+=usr/share/terminfo/d/d462+25 4081OLD_FILES+=usr/share/terminfo/d/d462+dg 4082OLD_FILES+=usr/share/terminfo/d/d462+s 4083OLD_FILES+=usr/share/terminfo/d/d462+sr 4084OLD_FILES+=usr/share/terminfo/d/d462+w 4085OLD_FILES+=usr/share/terminfo/d/d462-dg 4086OLD_FILES+=usr/share/terminfo/d/d462-unix 4087OLD_FILES+=usr/share/terminfo/d/d462-unix-25 4088OLD_FILES+=usr/share/terminfo/d/d462-unix-s 4089OLD_FILES+=usr/share/terminfo/d/d462-unix-sr 4090OLD_FILES+=usr/share/terminfo/d/d462-unix-w 4091OLD_FILES+=usr/share/terminfo/d/d462e-dg 4092OLD_FILES+=usr/share/terminfo/d/d463-dg 4093OLD_FILES+=usr/share/terminfo/d/d463-unix 4094OLD_FILES+=usr/share/terminfo/d/d463-unix-25 4095OLD_FILES+=usr/share/terminfo/d/d463-unix-s 4096OLD_FILES+=usr/share/terminfo/d/d463-unix-sr 4097OLD_FILES+=usr/share/terminfo/d/d463-unix-w 4098OLD_FILES+=usr/share/terminfo/d/d464-unix 4099OLD_FILES+=usr/share/terminfo/d/d464-unix-25 4100OLD_FILES+=usr/share/terminfo/d/d464-unix-s 4101OLD_FILES+=usr/share/terminfo/d/d464-unix-sr 4102OLD_FILES+=usr/share/terminfo/d/d464-unix-w 4103OLD_FILES+=usr/share/terminfo/d/d470 4104OLD_FILES+=usr/share/terminfo/d/d470-7b 4105OLD_FILES+=usr/share/terminfo/d/d470-dg 4106OLD_FILES+=usr/share/terminfo/d/d470c 4107OLD_FILES+=usr/share/terminfo/d/d470c-7b 4108OLD_FILES+=usr/share/terminfo/d/d470c-dg 4109OLD_FILES+=usr/share/terminfo/d/d555 4110OLD_FILES+=usr/share/terminfo/d/d555-7b 4111OLD_FILES+=usr/share/terminfo/d/d555-7b-w 4112OLD_FILES+=usr/share/terminfo/d/d555-dg 4113OLD_FILES+=usr/share/terminfo/d/d555-w 4114OLD_FILES+=usr/share/terminfo/d/d577 4115OLD_FILES+=usr/share/terminfo/d/d577-7b 4116OLD_FILES+=usr/share/terminfo/d/d577-7b-w 4117OLD_FILES+=usr/share/terminfo/d/d577-dg 4118OLD_FILES+=usr/share/terminfo/d/d577-w 4119OLD_FILES+=usr/share/terminfo/d/d578 4120OLD_FILES+=usr/share/terminfo/d/d578-7b 4121OLD_FILES+=usr/share/terminfo/d/d578-dg 4122OLD_FILES+=usr/share/terminfo/d/d80 4123OLD_FILES+=usr/share/terminfo/d/d800 4124OLD_FILES+=usr/share/terminfo/d/darwin 4125OLD_FILES+=usr/share/terminfo/d/darwin-100x37 4126OLD_FILES+=usr/share/terminfo/d/darwin-100x37-m 4127OLD_FILES+=usr/share/terminfo/d/darwin-112x37 4128OLD_FILES+=usr/share/terminfo/d/darwin-112x37-m 4129OLD_FILES+=usr/share/terminfo/d/darwin-128x40 4130OLD_FILES+=usr/share/terminfo/d/darwin-128x40-m 4131OLD_FILES+=usr/share/terminfo/d/darwin-128x48 4132OLD_FILES+=usr/share/terminfo/d/darwin-128x48-m 4133OLD_FILES+=usr/share/terminfo/d/darwin-144x48 4134OLD_FILES+=usr/share/terminfo/d/darwin-144x48-m 4135OLD_FILES+=usr/share/terminfo/d/darwin-160x64 4136OLD_FILES+=usr/share/terminfo/d/darwin-160x64-m 4137OLD_FILES+=usr/share/terminfo/d/darwin-200x64 4138OLD_FILES+=usr/share/terminfo/d/darwin-200x64-m 4139OLD_FILES+=usr/share/terminfo/d/darwin-200x75 4140OLD_FILES+=usr/share/terminfo/d/darwin-200x75-m 4141OLD_FILES+=usr/share/terminfo/d/darwin-256x96 4142OLD_FILES+=usr/share/terminfo/d/darwin-256x96-m 4143OLD_FILES+=usr/share/terminfo/d/darwin-80x25 4144OLD_FILES+=usr/share/terminfo/d/darwin-80x25-m 4145OLD_FILES+=usr/share/terminfo/d/darwin-80x30 4146OLD_FILES+=usr/share/terminfo/d/darwin-80x30-m 4147OLD_FILES+=usr/share/terminfo/d/darwin-90x30 4148OLD_FILES+=usr/share/terminfo/d/darwin-90x30-m 4149OLD_FILES+=usr/share/terminfo/d/darwin-b 4150OLD_FILES+=usr/share/terminfo/d/darwin-f 4151OLD_FILES+=usr/share/terminfo/d/darwin-f2 4152OLD_FILES+=usr/share/terminfo/d/darwin-m 4153OLD_FILES+=usr/share/terminfo/d/darwin-m-b 4154OLD_FILES+=usr/share/terminfo/d/darwin-m-f 4155OLD_FILES+=usr/share/terminfo/d/darwin-m-f2 4156OLD_FILES+=usr/share/terminfo/d/datagraphix 4157OLD_FILES+=usr/share/terminfo/d/datamedia2500 4158OLD_FILES+=usr/share/terminfo/d/datapoint 4159OLD_FILES+=usr/share/terminfo/d/dataspeed40 4160OLD_FILES+=usr/share/terminfo/d/dd5000 4161OLD_FILES+=usr/share/terminfo/d/ddr 4162OLD_FILES+=usr/share/terminfo/d/ddr3180 4163OLD_FILES+=usr/share/terminfo/d/dec+pp 4164OLD_FILES+=usr/share/terminfo/d/dec+sl 4165OLD_FILES+=usr/share/terminfo/d/dec-vt100 4166OLD_FILES+=usr/share/terminfo/d/dec-vt220 4167OLD_FILES+=usr/share/terminfo/d/dec-vt330 4168OLD_FILES+=usr/share/terminfo/d/dec-vt340 4169OLD_FILES+=usr/share/terminfo/d/dec-vt400 4170OLD_FILES+=usr/share/terminfo/d/decansi 4171OLD_FILES+=usr/share/terminfo/d/decpro 4172OLD_FILES+=usr/share/terminfo/d/decwriter 4173OLD_FILES+=usr/share/terminfo/d/delta 4174OLD_FILES+=usr/share/terminfo/d/dg+ccc 4175OLD_FILES+=usr/share/terminfo/d/dg+color 4176OLD_FILES+=usr/share/terminfo/d/dg+color8 4177OLD_FILES+=usr/share/terminfo/d/dg+fixed 4178OLD_FILES+=usr/share/terminfo/d/dg-ansi 4179OLD_FILES+=usr/share/terminfo/d/dg-generic 4180OLD_FILES+=usr/share/terminfo/d/dg100 4181OLD_FILES+=usr/share/terminfo/d/dg200 4182OLD_FILES+=usr/share/terminfo/d/dg210 4183OLD_FILES+=usr/share/terminfo/d/dg211 4184OLD_FILES+=usr/share/terminfo/d/dg450 4185OLD_FILES+=usr/share/terminfo/d/dg460-ansi 4186OLD_FILES+=usr/share/terminfo/d/dg6053 4187OLD_FILES+=usr/share/terminfo/d/dg6053-old 4188OLD_FILES+=usr/share/terminfo/d/dg605x 4189OLD_FILES+=usr/share/terminfo/d/dg6134 4190OLD_FILES+=usr/share/terminfo/d/dgkeys+11 4191OLD_FILES+=usr/share/terminfo/d/dgkeys+15 4192OLD_FILES+=usr/share/terminfo/d/dgkeys+7b 4193OLD_FILES+=usr/share/terminfo/d/dgkeys+8b 4194OLD_FILES+=usr/share/terminfo/d/dgmode+color 4195OLD_FILES+=usr/share/terminfo/d/dgmode+color8 4196OLD_FILES+=usr/share/terminfo/d/dgunix+ccc 4197OLD_FILES+=usr/share/terminfo/d/dgunix+fixed 4198OLD_FILES+=usr/share/terminfo/d/diablo 4199OLD_FILES+=usr/share/terminfo/d/diablo-lm 4200OLD_FILES+=usr/share/terminfo/d/diablo1620 4201OLD_FILES+=usr/share/terminfo/d/diablo1620-m8 4202OLD_FILES+=usr/share/terminfo/d/diablo1640 4203OLD_FILES+=usr/share/terminfo/d/diablo1640-lm 4204OLD_FILES+=usr/share/terminfo/d/diablo1640-m8 4205OLD_FILES+=usr/share/terminfo/d/diablo1720 4206OLD_FILES+=usr/share/terminfo/d/diablo1730 4207OLD_FILES+=usr/share/terminfo/d/diablo1740 4208OLD_FILES+=usr/share/terminfo/d/diablo1740-lm 4209OLD_FILES+=usr/share/terminfo/d/diablo450 4210OLD_FILES+=usr/share/terminfo/d/diablo630 4211OLD_FILES+=usr/share/terminfo/d/dialogue 4212OLD_FILES+=usr/share/terminfo/d/dialogue80 4213OLD_FILES+=usr/share/terminfo/d/digilog 4214OLD_FILES+=usr/share/terminfo/d/djgpp 4215OLD_FILES+=usr/share/terminfo/d/djgpp203 4216OLD_FILES+=usr/share/terminfo/d/djgpp204 4217OLD_FILES+=usr/share/terminfo/d/dku7003 4218OLD_FILES+=usr/share/terminfo/d/dku7003-dumb 4219OLD_FILES+=usr/share/terminfo/d/dku7102 4220OLD_FILES+=usr/share/terminfo/d/dku7102-old 4221OLD_FILES+=usr/share/terminfo/d/dku7102-sna 4222OLD_FILES+=usr/share/terminfo/d/dku7103-sna 4223OLD_FILES+=usr/share/terminfo/d/dku7202 4224OLD_FILES+=usr/share/terminfo/d/dm1520 4225OLD_FILES+=usr/share/terminfo/d/dm1521 4226OLD_FILES+=usr/share/terminfo/d/dm2500 4227OLD_FILES+=usr/share/terminfo/d/dm3025 4228OLD_FILES+=usr/share/terminfo/d/dm3045 4229OLD_FILES+=usr/share/terminfo/d/dm80 4230OLD_FILES+=usr/share/terminfo/d/dm80w 4231OLD_FILES+=usr/share/terminfo/d/dmchat 4232OLD_FILES+=usr/share/terminfo/d/dmd 4233OLD_FILES+=usr/share/terminfo/d/dmd-24 4234OLD_FILES+=usr/share/terminfo/d/dmd-34 4235OLD_FILES+=usr/share/terminfo/d/dmd1 4236OLD_FILES+=usr/share/terminfo/d/dmdt80 4237OLD_FILES+=usr/share/terminfo/d/dmdt80w 4238OLD_FILES+=usr/share/terminfo/d/dmterm 4239OLD_FILES+=usr/share/terminfo/d/domterm 4240OLD_FILES+=usr/share/terminfo/d/dp3360 4241OLD_FILES+=usr/share/terminfo/d/dp8242 4242OLD_FILES+=usr/share/terminfo/d/ds40 4243OLD_FILES+=usr/share/terminfo/d/ds40-2 4244OLD_FILES+=usr/share/terminfo/d/dt-100 4245OLD_FILES+=usr/share/terminfo/d/dt-100w 4246OLD_FILES+=usr/share/terminfo/d/dt100 4247OLD_FILES+=usr/share/terminfo/d/dt100w 4248OLD_FILES+=usr/share/terminfo/d/dt110 4249OLD_FILES+=usr/share/terminfo/d/dt80 4250OLD_FILES+=usr/share/terminfo/d/dt80-sas 4251OLD_FILES+=usr/share/terminfo/d/dt80w 4252OLD_FILES+=usr/share/terminfo/d/dtc300s 4253OLD_FILES+=usr/share/terminfo/d/dtc382 4254OLD_FILES+=usr/share/terminfo/d/dtterm 4255OLD_FILES+=usr/share/terminfo/d/dumb 4256OLD_FILES+=usr/share/terminfo/d/dumb-emacs-ansi 4257OLD_FILES+=usr/share/terminfo/d/dvtm 4258OLD_FILES+=usr/share/terminfo/d/dvtm-256color 4259OLD_FILES+=usr/share/terminfo/d/dw 4260OLD_FILES+=usr/share/terminfo/d/dw1 4261OLD_FILES+=usr/share/terminfo/d/dw2 4262OLD_FILES+=usr/share/terminfo/d/dw3 4263OLD_FILES+=usr/share/terminfo/d/dw4 4264OLD_FILES+=usr/share/terminfo/d/dwk 4265OLD_FILES+=usr/share/terminfo/d/dwk-vt 4266OLD_DIRS+=usr/share/terminfo/d/ 4267OLD_FILES+=usr/share/terminfo/e/ecma+color 4268OLD_FILES+=usr/share/terminfo/e/ecma+index 4269OLD_FILES+=usr/share/terminfo/e/ecma+italics 4270OLD_FILES+=usr/share/terminfo/e/ecma+sgr 4271OLD_FILES+=usr/share/terminfo/e/ecma+strikeout 4272OLD_FILES+=usr/share/terminfo/e/elks 4273OLD_FILES+=usr/share/terminfo/e/elks-ansi 4274OLD_FILES+=usr/share/terminfo/e/elks-glasstty 4275OLD_FILES+=usr/share/terminfo/e/elks-vt52 4276OLD_FILES+=usr/share/terminfo/e/emots 4277OLD_FILES+=usr/share/terminfo/e/emu 4278OLD_FILES+=usr/share/terminfo/e/emu-220 4279OLD_FILES+=usr/share/terminfo/e/emx-base 4280OLD_FILES+=usr/share/terminfo/e/env230 4281OLD_FILES+=usr/share/terminfo/e/envision230 4282OLD_FILES+=usr/share/terminfo/e/ep40 4283OLD_FILES+=usr/share/terminfo/e/ep4000 4284OLD_FILES+=usr/share/terminfo/e/ep4080 4285OLD_FILES+=usr/share/terminfo/e/ep48 4286OLD_FILES+=usr/share/terminfo/e/ergo4000 4287OLD_FILES+=usr/share/terminfo/e/esprit 4288OLD_FILES+=usr/share/terminfo/e/esprit-am 4289OLD_FILES+=usr/share/terminfo/e/eterm 4290OLD_FILES+=usr/share/terminfo/e/eterm-color 4291OLD_FILES+=usr/share/terminfo/e/ex155 4292OLD_FILES+=usr/share/terminfo/e/excel62 4293OLD_FILES+=usr/share/terminfo/e/excel62-rv 4294OLD_FILES+=usr/share/terminfo/e/excel62-w 4295OLD_FILES+=usr/share/terminfo/e/excel64 4296OLD_FILES+=usr/share/terminfo/e/excel64-rv 4297OLD_FILES+=usr/share/terminfo/e/excel64-w 4298OLD_FILES+=usr/share/terminfo/e/exec80 4299OLD_DIRS+=usr/share/terminfo/e/ 4300OLD_FILES+=usr/share/terminfo/f/f100 4301OLD_FILES+=usr/share/terminfo/f/f100-rv 4302OLD_FILES+=usr/share/terminfo/f/f110 4303OLD_FILES+=usr/share/terminfo/f/f110-14 4304OLD_FILES+=usr/share/terminfo/f/f110-14w 4305OLD_FILES+=usr/share/terminfo/f/f110-w 4306OLD_FILES+=usr/share/terminfo/f/f1720 4307OLD_FILES+=usr/share/terminfo/f/f1720a 4308OLD_FILES+=usr/share/terminfo/f/f200 4309OLD_FILES+=usr/share/terminfo/f/f200-w 4310OLD_FILES+=usr/share/terminfo/f/f200vi 4311OLD_FILES+=usr/share/terminfo/f/f200vi-w 4312OLD_FILES+=usr/share/terminfo/f/falco 4313OLD_FILES+=usr/share/terminfo/f/falco-p 4314OLD_FILES+=usr/share/terminfo/f/fbterm 4315OLD_FILES+=usr/share/terminfo/f/fenix 4316OLD_FILES+=usr/share/terminfo/f/fenixw 4317OLD_FILES+=usr/share/terminfo/f/fixterm 4318OLD_FILES+=usr/share/terminfo/f/fortune 4319OLD_FILES+=usr/share/terminfo/f/fos 4320OLD_FILES+=usr/share/terminfo/f/fox 4321OLD_FILES+=usr/share/terminfo/f/freedom 4322OLD_FILES+=usr/share/terminfo/f/freedom-rv 4323OLD_FILES+=usr/share/terminfo/f/freedom100 4324OLD_FILES+=usr/share/terminfo/f/freedom110 4325OLD_FILES+=usr/share/terminfo/f/freedom200 4326OLD_DIRS+=usr/share/terminfo/f/ 4327OLD_FILES+=usr/share/terminfo/g/gator 4328OLD_FILES+=usr/share/terminfo/g/gator-52 4329OLD_FILES+=usr/share/terminfo/g/gator-52t 4330OLD_FILES+=usr/share/terminfo/g/gator-t 4331OLD_FILES+=usr/share/terminfo/g/gigi 4332OLD_FILES+=usr/share/terminfo/g/glasstty 4333OLD_FILES+=usr/share/terminfo/g/gnome 4334OLD_FILES+=usr/share/terminfo/g/gnome+pcfkeys 4335OLD_FILES+=usr/share/terminfo/g/gnome-2007 4336OLD_FILES+=usr/share/terminfo/g/gnome-2008 4337OLD_FILES+=usr/share/terminfo/g/gnome-2012 4338OLD_FILES+=usr/share/terminfo/g/gnome-256color 4339OLD_FILES+=usr/share/terminfo/g/gnome-fc5 4340OLD_FILES+=usr/share/terminfo/g/gnome-rh62 4341OLD_FILES+=usr/share/terminfo/g/gnome-rh72 4342OLD_FILES+=usr/share/terminfo/g/gnome-rh80 4343OLD_FILES+=usr/share/terminfo/g/gnome-rh90 4344OLD_FILES+=usr/share/terminfo/g/go-225 4345OLD_FILES+=usr/share/terminfo/g/go140 4346OLD_FILES+=usr/share/terminfo/g/go140w 4347OLD_FILES+=usr/share/terminfo/g/go225 4348OLD_FILES+=usr/share/terminfo/g/graphos 4349OLD_FILES+=usr/share/terminfo/g/graphos-30 4350OLD_FILES+=usr/share/terminfo/g/gs5430 4351OLD_FILES+=usr/share/terminfo/g/gs5430-22 4352OLD_FILES+=usr/share/terminfo/g/gs5430-24 4353OLD_FILES+=usr/share/terminfo/g/gs6300 4354OLD_FILES+=usr/share/terminfo/g/gsi 4355OLD_FILES+=usr/share/terminfo/g/gt100 4356OLD_FILES+=usr/share/terminfo/g/gt100a 4357OLD_FILES+=usr/share/terminfo/g/gt40 4358OLD_FILES+=usr/share/terminfo/g/gt42 4359OLD_FILES+=usr/share/terminfo/g/guru 4360OLD_FILES+=usr/share/terminfo/g/guru+rv 4361OLD_FILES+=usr/share/terminfo/g/guru+s 4362OLD_FILES+=usr/share/terminfo/g/guru+unk 4363OLD_FILES+=usr/share/terminfo/g/guru-24 4364OLD_FILES+=usr/share/terminfo/g/guru-33 4365OLD_FILES+=usr/share/terminfo/g/guru-33-rv 4366OLD_FILES+=usr/share/terminfo/g/guru-33-s 4367OLD_FILES+=usr/share/terminfo/g/guru-44 4368OLD_FILES+=usr/share/terminfo/g/guru-44-s 4369OLD_FILES+=usr/share/terminfo/g/guru-76 4370OLD_FILES+=usr/share/terminfo/g/guru-76-lp 4371OLD_FILES+=usr/share/terminfo/g/guru-76-s 4372OLD_FILES+=usr/share/terminfo/g/guru-76-w 4373OLD_FILES+=usr/share/terminfo/g/guru-76-w-s 4374OLD_FILES+=usr/share/terminfo/g/guru-76-wm 4375OLD_FILES+=usr/share/terminfo/g/guru-lp 4376OLD_FILES+=usr/share/terminfo/g/guru-nctxt 4377OLD_FILES+=usr/share/terminfo/g/guru-rv 4378OLD_FILES+=usr/share/terminfo/g/guru-s 4379OLD_DIRS+=usr/share/terminfo/g/ 4380OLD_FILES+=usr/share/terminfo/h/h-100 4381OLD_FILES+=usr/share/terminfo/h/h-100bw 4382OLD_FILES+=usr/share/terminfo/h/h100 4383OLD_FILES+=usr/share/terminfo/h/h100bw 4384OLD_FILES+=usr/share/terminfo/h/h19 4385OLD_FILES+=usr/share/terminfo/h/h19-a 4386OLD_FILES+=usr/share/terminfo/h/h19-b 4387OLD_FILES+=usr/share/terminfo/h/h19-bs 4388OLD_FILES+=usr/share/terminfo/h/h19-g 4389OLD_FILES+=usr/share/terminfo/h/h19-smul 4390OLD_FILES+=usr/share/terminfo/h/h19-u 4391OLD_FILES+=usr/share/terminfo/h/h19-us 4392OLD_FILES+=usr/share/terminfo/h/h19a 4393OLD_FILES+=usr/share/terminfo/h/h19g 4394OLD_FILES+=usr/share/terminfo/h/h19k 4395OLD_FILES+=usr/share/terminfo/h/h19kermit 4396OLD_FILES+=usr/share/terminfo/h/h19us 4397OLD_FILES+=usr/share/terminfo/h/h29a-kc-bc 4398OLD_FILES+=usr/share/terminfo/h/h29a-kc-uc 4399OLD_FILES+=usr/share/terminfo/h/h29a-nkc-bc 4400OLD_FILES+=usr/share/terminfo/h/h29a-nkc-uc 4401OLD_FILES+=usr/share/terminfo/h/h80 4402OLD_FILES+=usr/share/terminfo/h/ha8675 4403OLD_FILES+=usr/share/terminfo/h/ha8686 4404OLD_FILES+=usr/share/terminfo/h/hazel 4405OLD_FILES+=usr/share/terminfo/h/hds200 4406OLD_FILES+=usr/share/terminfo/h/he80 4407OLD_FILES+=usr/share/terminfo/h/heath 4408OLD_FILES+=usr/share/terminfo/h/heath-19 4409OLD_FILES+=usr/share/terminfo/h/heath-ansi 4410OLD_FILES+=usr/share/terminfo/h/heathkit 4411OLD_FILES+=usr/share/terminfo/h/heathkit-a 4412OLD_FILES+=usr/share/terminfo/h/hft 4413OLD_FILES+=usr/share/terminfo/h/hft-c 4414OLD_FILES+=usr/share/terminfo/h/hft-c-old 4415OLD_FILES+=usr/share/terminfo/h/hft-old 4416OLD_FILES+=usr/share/terminfo/h/hirez100 4417OLD_FILES+=usr/share/terminfo/h/hirez100-w 4418OLD_FILES+=usr/share/terminfo/h/hmod1 4419OLD_FILES+=usr/share/terminfo/h/hp 4420OLD_FILES+=usr/share/terminfo/h/hp+arrows 4421OLD_FILES+=usr/share/terminfo/h/hp+color 4422OLD_FILES+=usr/share/terminfo/h/hp+labels 4423OLD_FILES+=usr/share/terminfo/h/hp+pfk+arrows 4424OLD_FILES+=usr/share/terminfo/h/hp+pfk+cr 4425OLD_FILES+=usr/share/terminfo/h/hp+pfk-cr 4426OLD_FILES+=usr/share/terminfo/h/hp+printer 4427OLD_FILES+=usr/share/terminfo/h/hp110 4428OLD_FILES+=usr/share/terminfo/h/hp150 4429OLD_FILES+=usr/share/terminfo/h/hp2 4430OLD_FILES+=usr/share/terminfo/h/hp236 4431OLD_FILES+=usr/share/terminfo/h/hp2382 4432OLD_FILES+=usr/share/terminfo/h/hp2382a 4433OLD_FILES+=usr/share/terminfo/h/hp2392 4434OLD_FILES+=usr/share/terminfo/h/hp2397 4435OLD_FILES+=usr/share/terminfo/h/hp2397a 4436OLD_FILES+=usr/share/terminfo/h/hp2621 4437OLD_FILES+=usr/share/terminfo/h/hp2621-48 4438OLD_FILES+=usr/share/terminfo/h/hp2621-a 4439OLD_FILES+=usr/share/terminfo/h/hp2621-ba 4440OLD_FILES+=usr/share/terminfo/h/hp2621-fl 4441OLD_FILES+=usr/share/terminfo/h/hp2621-k45 4442OLD_FILES+=usr/share/terminfo/h/hp2621-nl 4443OLD_FILES+=usr/share/terminfo/h/hp2621-nt 4444OLD_FILES+=usr/share/terminfo/h/hp2621-wl 4445OLD_FILES+=usr/share/terminfo/h/hp2621A 4446OLD_FILES+=usr/share/terminfo/h/hp2621a 4447OLD_FILES+=usr/share/terminfo/h/hp2621a-a 4448OLD_FILES+=usr/share/terminfo/h/hp2621b 4449OLD_FILES+=usr/share/terminfo/h/hp2621b-kx 4450OLD_FILES+=usr/share/terminfo/h/hp2621b-kx-p 4451OLD_FILES+=usr/share/terminfo/h/hp2621b-p 4452OLD_FILES+=usr/share/terminfo/h/hp2621k45 4453OLD_FILES+=usr/share/terminfo/h/hp2621p 4454OLD_FILES+=usr/share/terminfo/h/hp2621p-a 4455OLD_FILES+=usr/share/terminfo/h/hp2622 4456OLD_FILES+=usr/share/terminfo/h/hp2622a 4457OLD_FILES+=usr/share/terminfo/h/hp2623 4458OLD_FILES+=usr/share/terminfo/h/hp2623a 4459OLD_FILES+=usr/share/terminfo/h/hp2624 4460OLD_FILES+=usr/share/terminfo/h/hp2624-10p 4461OLD_FILES+=usr/share/terminfo/h/hp2624a 4462OLD_FILES+=usr/share/terminfo/h/hp2624a-10p 4463OLD_FILES+=usr/share/terminfo/h/hp2624b 4464OLD_FILES+=usr/share/terminfo/h/hp2624b-10p 4465OLD_FILES+=usr/share/terminfo/h/hp2624b-10p-p 4466OLD_FILES+=usr/share/terminfo/h/hp2624b-4p 4467OLD_FILES+=usr/share/terminfo/h/hp2624b-4p-p 4468OLD_FILES+=usr/share/terminfo/h/hp2624b-p 4469OLD_FILES+=usr/share/terminfo/h/hp2626 4470OLD_FILES+=usr/share/terminfo/h/hp2626-12 4471OLD_FILES+=usr/share/terminfo/h/hp2626-12-s 4472OLD_FILES+=usr/share/terminfo/h/hp2626-12x40 4473OLD_FILES+=usr/share/terminfo/h/hp2626-ns 4474OLD_FILES+=usr/share/terminfo/h/hp2626-s 4475OLD_FILES+=usr/share/terminfo/h/hp2626-x40 4476OLD_FILES+=usr/share/terminfo/h/hp2626a 4477OLD_FILES+=usr/share/terminfo/h/hp2626p 4478OLD_FILES+=usr/share/terminfo/h/hp2627a 4479OLD_FILES+=usr/share/terminfo/h/hp2627a-rev 4480OLD_FILES+=usr/share/terminfo/h/hp2627c 4481OLD_FILES+=usr/share/terminfo/h/hp262x 4482OLD_FILES+=usr/share/terminfo/h/hp2640a 4483OLD_FILES+=usr/share/terminfo/h/hp2640b 4484OLD_FILES+=usr/share/terminfo/h/hp2641a 4485OLD_FILES+=usr/share/terminfo/h/hp2644a 4486OLD_FILES+=usr/share/terminfo/h/hp2645 4487OLD_FILES+=usr/share/terminfo/h/hp2645a 4488OLD_FILES+=usr/share/terminfo/h/hp2647a 4489OLD_FILES+=usr/share/terminfo/h/hp2648 4490OLD_FILES+=usr/share/terminfo/h/hp2648a 4491OLD_FILES+=usr/share/terminfo/h/hp300h 4492OLD_FILES+=usr/share/terminfo/h/hp45 4493OLD_FILES+=usr/share/terminfo/h/hp700 4494OLD_FILES+=usr/share/terminfo/h/hp700-wy 4495OLD_FILES+=usr/share/terminfo/h/hp70092 4496OLD_FILES+=usr/share/terminfo/h/hp70092A 4497OLD_FILES+=usr/share/terminfo/h/hp70092a 4498OLD_FILES+=usr/share/terminfo/h/hp9837 4499OLD_FILES+=usr/share/terminfo/h/hp9845 4500OLD_FILES+=usr/share/terminfo/h/hp98550 4501OLD_FILES+=usr/share/terminfo/h/hp98550a 4502OLD_FILES+=usr/share/terminfo/h/hp98720 4503OLD_FILES+=usr/share/terminfo/h/hp98721 4504OLD_FILES+=usr/share/terminfo/h/hpansi 4505OLD_FILES+=usr/share/terminfo/h/hpex 4506OLD_FILES+=usr/share/terminfo/h/hpex2 4507OLD_FILES+=usr/share/terminfo/h/hpgeneric 4508OLD_FILES+=usr/share/terminfo/h/hpsub 4509OLD_FILES+=usr/share/terminfo/h/hpterm 4510OLD_FILES+=usr/share/terminfo/h/hpterm-color 4511OLD_FILES+=usr/share/terminfo/h/htx11 4512OLD_FILES+=usr/share/terminfo/h/hurd 4513OLD_FILES+=usr/share/terminfo/h/hz1000 4514OLD_FILES+=usr/share/terminfo/h/hz1420 4515OLD_FILES+=usr/share/terminfo/h/hz1500 4516OLD_FILES+=usr/share/terminfo/h/hz1510 4517OLD_FILES+=usr/share/terminfo/h/hz1520 4518OLD_FILES+=usr/share/terminfo/h/hz1520-noesc 4519OLD_FILES+=usr/share/terminfo/h/hz1552 4520OLD_FILES+=usr/share/terminfo/h/hz1552-rv 4521OLD_FILES+=usr/share/terminfo/h/hz2000 4522OLD_DIRS+=usr/share/terminfo/h/ 4523OLD_FILES+=usr/share/terminfo/i/i100 4524OLD_FILES+=usr/share/terminfo/i/i3101 4525OLD_FILES+=usr/share/terminfo/i/i3164 4526OLD_FILES+=usr/share/terminfo/i/i400 4527OLD_FILES+=usr/share/terminfo/i/iTerm.app 4528OLD_FILES+=usr/share/terminfo/i/iTerm2.app 4529OLD_FILES+=usr/share/terminfo/i/ibcs2 4530OLD_FILES+=usr/share/terminfo/i/ibm+16color 4531OLD_FILES+=usr/share/terminfo/i/ibm+color 4532OLD_FILES+=usr/share/terminfo/i/ibm-apl 4533OLD_FILES+=usr/share/terminfo/i/ibm-pc 4534OLD_FILES+=usr/share/terminfo/i/ibm-system1 4535OLD_FILES+=usr/share/terminfo/i/ibm3101 4536OLD_FILES+=usr/share/terminfo/i/ibm3151 4537OLD_FILES+=usr/share/terminfo/i/ibm3161 4538OLD_FILES+=usr/share/terminfo/i/ibm3161-C 4539OLD_FILES+=usr/share/terminfo/i/ibm3162 4540OLD_FILES+=usr/share/terminfo/i/ibm3163 4541OLD_FILES+=usr/share/terminfo/i/ibm3164 4542OLD_FILES+=usr/share/terminfo/i/ibm327x 4543OLD_FILES+=usr/share/terminfo/i/ibm5051 4544OLD_FILES+=usr/share/terminfo/i/ibm5081 4545OLD_FILES+=usr/share/terminfo/i/ibm5081-c 4546OLD_FILES+=usr/share/terminfo/i/ibm5151 4547OLD_FILES+=usr/share/terminfo/i/ibm5154 4548OLD_FILES+=usr/share/terminfo/i/ibm5154-c 4549OLD_FILES+=usr/share/terminfo/i/ibm6153 4550OLD_FILES+=usr/share/terminfo/i/ibm6153-40 4551OLD_FILES+=usr/share/terminfo/i/ibm6153-90 4552OLD_FILES+=usr/share/terminfo/i/ibm6154 4553OLD_FILES+=usr/share/terminfo/i/ibm6154-c 4554OLD_FILES+=usr/share/terminfo/i/ibm6155 4555OLD_FILES+=usr/share/terminfo/i/ibm8503 4556OLD_FILES+=usr/share/terminfo/i/ibm8507 4557OLD_FILES+=usr/share/terminfo/i/ibm8512 4558OLD_FILES+=usr/share/terminfo/i/ibm8513 4559OLD_FILES+=usr/share/terminfo/i/ibm8514 4560OLD_FILES+=usr/share/terminfo/i/ibm8514-c 4561OLD_FILES+=usr/share/terminfo/i/ibm8604 4562OLD_FILES+=usr/share/terminfo/i/ibmaed 4563OLD_FILES+=usr/share/terminfo/i/ibmapa16 4564OLD_FILES+=usr/share/terminfo/i/ibmapa8 4565OLD_FILES+=usr/share/terminfo/i/ibmapa8c 4566OLD_FILES+=usr/share/terminfo/i/ibmapa8c-c 4567OLD_FILES+=usr/share/terminfo/i/ibmega 4568OLD_FILES+=usr/share/terminfo/i/ibmega-c 4569OLD_FILES+=usr/share/terminfo/i/ibmmono 4570OLD_FILES+=usr/share/terminfo/i/ibmmpel-c 4571OLD_FILES+=usr/share/terminfo/i/ibmpc 4572OLD_FILES+=usr/share/terminfo/i/ibmpc3 4573OLD_FILES+=usr/share/terminfo/i/ibmpc3r 4574OLD_FILES+=usr/share/terminfo/i/ibmpc3r-mono 4575OLD_FILES+=usr/share/terminfo/i/ibmpcx 4576OLD_FILES+=usr/share/terminfo/i/ibmvga 4577OLD_FILES+=usr/share/terminfo/i/ibmvga-c 4578OLD_FILES+=usr/share/terminfo/i/ibmx 4579OLD_FILES+=usr/share/terminfo/i/icl6402 4580OLD_FILES+=usr/share/terminfo/i/icl6404 4581OLD_FILES+=usr/share/terminfo/i/icl6404-w 4582OLD_FILES+=usr/share/terminfo/i/ifmr 4583OLD_FILES+=usr/share/terminfo/i/ims-ansi 4584OLD_FILES+=usr/share/terminfo/i/ims950 4585OLD_FILES+=usr/share/terminfo/i/ims950-b 4586OLD_FILES+=usr/share/terminfo/i/ims950-rv 4587OLD_FILES+=usr/share/terminfo/i/infoton 4588OLD_FILES+=usr/share/terminfo/i/interix 4589OLD_FILES+=usr/share/terminfo/i/interix-nti 4590OLD_FILES+=usr/share/terminfo/i/intertec 4591OLD_FILES+=usr/share/terminfo/i/intertube 4592OLD_FILES+=usr/share/terminfo/i/intertube2 4593OLD_FILES+=usr/share/terminfo/i/intext 4594OLD_FILES+=usr/share/terminfo/i/intext2 4595OLD_FILES+=usr/share/terminfo/i/intextii 4596OLD_FILES+=usr/share/terminfo/i/ips 4597OLD_FILES+=usr/share/terminfo/i/ipsi 4598OLD_FILES+=usr/share/terminfo/i/iq120 4599OLD_FILES+=usr/share/terminfo/i/iq140 4600OLD_FILES+=usr/share/terminfo/i/iris-ansi 4601OLD_FILES+=usr/share/terminfo/i/iris-ansi-ap 4602OLD_FILES+=usr/share/terminfo/i/iris-ansi-net 4603OLD_FILES+=usr/share/terminfo/i/iris-color 4604OLD_FILES+=usr/share/terminfo/i/iris40 4605OLD_FILES+=usr/share/terminfo/i/iterm 4606OLD_FILES+=usr/share/terminfo/i/iterm2 4607OLD_FILES+=usr/share/terminfo/i/iterm2-direct 4608OLD_DIRS+=usr/share/terminfo/i/ 4609OLD_FILES+=usr/share/terminfo/j/jaixterm 4610OLD_FILES+=usr/share/terminfo/j/jaixterm-m 4611OLD_FILES+=usr/share/terminfo/j/jerq 4612OLD_FILES+=usr/share/terminfo/j/jfbterm 4613OLD_DIRS+=usr/share/terminfo/j/ 4614OLD_FILES+=usr/share/terminfo/k/k45 4615OLD_FILES+=usr/share/terminfo/k/kaypro 4616OLD_FILES+=usr/share/terminfo/k/kaypro2 4617OLD_FILES+=usr/share/terminfo/k/kds6402 4618OLD_FILES+=usr/share/terminfo/k/kds7372 4619OLD_FILES+=usr/share/terminfo/k/kds7372-w 4620OLD_FILES+=usr/share/terminfo/k/kermit 4621OLD_FILES+=usr/share/terminfo/k/kermit-am 4622OLD_FILES+=usr/share/terminfo/k/kitty 4623OLD_FILES+=usr/share/terminfo/k/kitty+common 4624OLD_FILES+=usr/share/terminfo/k/kitty-direct 4625OLD_FILES+=usr/share/terminfo/k/klone+acs 4626OLD_FILES+=usr/share/terminfo/k/klone+color 4627OLD_FILES+=usr/share/terminfo/k/klone+koi8acs 4628OLD_FILES+=usr/share/terminfo/k/klone+sgr 4629OLD_FILES+=usr/share/terminfo/k/klone+sgr-dumb 4630OLD_FILES+=usr/share/terminfo/k/klone+sgr8 4631OLD_FILES+=usr/share/terminfo/k/kon 4632OLD_FILES+=usr/share/terminfo/k/kon2 4633OLD_FILES+=usr/share/terminfo/k/konsole 4634OLD_FILES+=usr/share/terminfo/k/konsole+pcfkeys 4635OLD_FILES+=usr/share/terminfo/k/konsole-16color 4636OLD_FILES+=usr/share/terminfo/k/konsole-256color 4637OLD_FILES+=usr/share/terminfo/k/konsole-base 4638OLD_FILES+=usr/share/terminfo/k/konsole-direct 4639OLD_FILES+=usr/share/terminfo/k/konsole-linux 4640OLD_FILES+=usr/share/terminfo/k/konsole-solaris 4641OLD_FILES+=usr/share/terminfo/k/konsole-vt100 4642OLD_FILES+=usr/share/terminfo/k/konsole-vt420pc 4643OLD_FILES+=usr/share/terminfo/k/konsole-xf3x 4644OLD_FILES+=usr/share/terminfo/k/konsole-xf4x 4645OLD_FILES+=usr/share/terminfo/k/kt7 4646OLD_FILES+=usr/share/terminfo/k/kt7ix 4647OLD_FILES+=usr/share/terminfo/k/kterm 4648OLD_FILES+=usr/share/terminfo/k/kterm-co 4649OLD_FILES+=usr/share/terminfo/k/kterm-color 4650OLD_FILES+=usr/share/terminfo/k/ktm 4651OLD_FILES+=usr/share/terminfo/k/kvt 4652OLD_DIRS+=usr/share/terminfo/k/ 4653OLD_FILES+=usr/share/terminfo/l/la120 4654OLD_FILES+=usr/share/terminfo/l/layer 4655OLD_FILES+=usr/share/terminfo/l/lft 4656OLD_FILES+=usr/share/terminfo/l/lft-pc850 4657OLD_FILES+=usr/share/terminfo/l/linux 4658OLD_FILES+=usr/share/terminfo/l/linux+decid 4659OLD_FILES+=usr/share/terminfo/l/linux+sfkeys 4660OLD_FILES+=usr/share/terminfo/l/linux-16color 4661OLD_FILES+=usr/share/terminfo/l/linux-basic 4662OLD_FILES+=usr/share/terminfo/l/linux-c 4663OLD_FILES+=usr/share/terminfo/l/linux-c-nc 4664OLD_FILES+=usr/share/terminfo/l/linux-koi8 4665OLD_FILES+=usr/share/terminfo/l/linux-koi8r 4666OLD_FILES+=usr/share/terminfo/l/linux-lat 4667OLD_FILES+=usr/share/terminfo/l/linux-m 4668OLD_FILES+=usr/share/terminfo/l/linux-m1 4669OLD_FILES+=usr/share/terminfo/l/linux-m1b 4670OLD_FILES+=usr/share/terminfo/l/linux-m2 4671OLD_FILES+=usr/share/terminfo/l/linux-nic 4672OLD_FILES+=usr/share/terminfo/l/linux-s 4673OLD_FILES+=usr/share/terminfo/l/linux-vt 4674OLD_FILES+=usr/share/terminfo/l/linux2.2 4675OLD_FILES+=usr/share/terminfo/l/linux2.6 4676OLD_FILES+=usr/share/terminfo/l/linux2.6.26 4677OLD_FILES+=usr/share/terminfo/l/linux3.0 4678OLD_FILES+=usr/share/terminfo/l/lisa 4679OLD_FILES+=usr/share/terminfo/l/lisaterm 4680OLD_FILES+=usr/share/terminfo/l/lisaterm-w 4681OLD_FILES+=usr/share/terminfo/l/liswb 4682OLD_FILES+=usr/share/terminfo/l/ln03 4683OLD_FILES+=usr/share/terminfo/l/ln03-w 4684OLD_FILES+=usr/share/terminfo/l/lpr 4685OLD_FILES+=usr/share/terminfo/l/luna 4686OLD_FILES+=usr/share/terminfo/l/luna68k 4687OLD_DIRS+=usr/share/terminfo/l/ 4688OLD_FILES+=usr/share/terminfo/m/m2-nam 4689OLD_FILES+=usr/share/terminfo/m/mac 4690OLD_FILES+=usr/share/terminfo/m/mac-w 4691OLD_FILES+=usr/share/terminfo/m/mach 4692OLD_FILES+=usr/share/terminfo/m/mach-bold 4693OLD_FILES+=usr/share/terminfo/m/mach-color 4694OLD_FILES+=usr/share/terminfo/m/mach-gnu 4695OLD_FILES+=usr/share/terminfo/m/mach-gnu-color 4696OLD_FILES+=usr/share/terminfo/m/macintosh 4697OLD_FILES+=usr/share/terminfo/m/macterminal-w 4698OLD_FILES+=usr/share/terminfo/m/mai 4699OLD_FILES+=usr/share/terminfo/m/masscomp 4700OLD_FILES+=usr/share/terminfo/m/masscomp1 4701OLD_FILES+=usr/share/terminfo/m/masscomp2 4702OLD_FILES+=usr/share/terminfo/m/mdl110 4703OLD_FILES+=usr/share/terminfo/m/megatek 4704OLD_FILES+=usr/share/terminfo/m/memhp 4705OLD_FILES+=usr/share/terminfo/m/mgr 4706OLD_FILES+=usr/share/terminfo/m/mgr-linux 4707OLD_FILES+=usr/share/terminfo/m/mgr-sun 4708OLD_FILES+=usr/share/terminfo/m/mgt 4709OLD_FILES+=usr/share/terminfo/m/mgterm 4710OLD_FILES+=usr/share/terminfo/m/microb 4711OLD_FILES+=usr/share/terminfo/m/microbee 4712OLD_FILES+=usr/share/terminfo/m/microterm 4713OLD_FILES+=usr/share/terminfo/m/microterm5 4714OLD_FILES+=usr/share/terminfo/m/mime 4715OLD_FILES+=usr/share/terminfo/m/mime-3ax 4716OLD_FILES+=usr/share/terminfo/m/mime-fb 4717OLD_FILES+=usr/share/terminfo/m/mime-hb 4718OLD_FILES+=usr/share/terminfo/m/mime1 4719OLD_FILES+=usr/share/terminfo/m/mime2 4720OLD_FILES+=usr/share/terminfo/m/mime2a 4721OLD_FILES+=usr/share/terminfo/m/mime2a-s 4722OLD_FILES+=usr/share/terminfo/m/mime2a-v 4723OLD_FILES+=usr/share/terminfo/m/mime314 4724OLD_FILES+=usr/share/terminfo/m/mime340 4725OLD_FILES+=usr/share/terminfo/m/mime3a 4726OLD_FILES+=usr/share/terminfo/m/mime3ax 4727OLD_FILES+=usr/share/terminfo/m/mimei 4728OLD_FILES+=usr/share/terminfo/m/mimeii 4729OLD_FILES+=usr/share/terminfo/m/minitel 4730OLD_FILES+=usr/share/terminfo/m/minitel-2 4731OLD_FILES+=usr/share/terminfo/m/minitel-2-nam 4732OLD_FILES+=usr/share/terminfo/m/minitel1 4733OLD_FILES+=usr/share/terminfo/m/minitel1-nb 4734OLD_FILES+=usr/share/terminfo/m/minitel12-80 4735OLD_FILES+=usr/share/terminfo/m/minitel1b 4736OLD_FILES+=usr/share/terminfo/m/minitel1b-80 4737OLD_FILES+=usr/share/terminfo/m/minitel1b-nb 4738OLD_FILES+=usr/share/terminfo/m/minitel2-80 4739OLD_FILES+=usr/share/terminfo/m/minix 4740OLD_FILES+=usr/share/terminfo/m/minix-1.5 4741OLD_FILES+=usr/share/terminfo/m/minix-1.7 4742OLD_FILES+=usr/share/terminfo/m/minix-3.0 4743OLD_FILES+=usr/share/terminfo/m/minix-old 4744OLD_FILES+=usr/share/terminfo/m/minix-old-am 4745OLD_FILES+=usr/share/terminfo/m/mintty 4746OLD_FILES+=usr/share/terminfo/m/mintty+common 4747OLD_FILES+=usr/share/terminfo/m/mintty-direct 4748OLD_FILES+=usr/share/terminfo/m/mlterm 4749OLD_FILES+=usr/share/terminfo/m/mlterm+pcfkeys 4750OLD_FILES+=usr/share/terminfo/m/mlterm-256color 4751OLD_FILES+=usr/share/terminfo/m/mlterm-direct 4752OLD_FILES+=usr/share/terminfo/m/mlterm2 4753OLD_FILES+=usr/share/terminfo/m/mlterm3 4754OLD_FILES+=usr/share/terminfo/m/mm314 4755OLD_FILES+=usr/share/terminfo/m/mm340 4756OLD_FILES+=usr/share/terminfo/m/mod 4757OLD_FILES+=usr/share/terminfo/m/mod24 4758OLD_FILES+=usr/share/terminfo/m/modgraph 4759OLD_FILES+=usr/share/terminfo/m/modgraph2 4760OLD_FILES+=usr/share/terminfo/m/modgraph48 4761OLD_FILES+=usr/share/terminfo/m/mono-emx 4762OLD_FILES+=usr/share/terminfo/m/morphos 4763OLD_FILES+=usr/share/terminfo/m/mouse-sun 4764OLD_FILES+=usr/share/terminfo/m/mrxvt 4765OLD_FILES+=usr/share/terminfo/m/mrxvt-256color 4766OLD_FILES+=usr/share/terminfo/m/ms-terminal 4767OLD_FILES+=usr/share/terminfo/m/ms-vt-utf8 4768OLD_FILES+=usr/share/terminfo/m/ms-vt100 4769OLD_FILES+=usr/share/terminfo/m/ms-vt100+ 4770OLD_FILES+=usr/share/terminfo/m/ms-vt100-color 4771OLD_FILES+=usr/share/terminfo/m/msk227 4772OLD_FILES+=usr/share/terminfo/m/msk22714 4773OLD_FILES+=usr/share/terminfo/m/msk227am 4774OLD_FILES+=usr/share/terminfo/m/mskermit227 4775OLD_FILES+=usr/share/terminfo/m/mskermit22714 4776OLD_FILES+=usr/share/terminfo/m/mskermit227am 4777OLD_FILES+=usr/share/terminfo/m/mt-70 4778OLD_FILES+=usr/share/terminfo/m/mt4520-rv 4779OLD_FILES+=usr/share/terminfo/m/mt70 4780OLD_FILES+=usr/share/terminfo/m/mterm 4781OLD_FILES+=usr/share/terminfo/m/mterm-ansi 4782OLD_FILES+=usr/share/terminfo/m/mvterm 4783OLD_DIRS+=usr/share/terminfo/m/ 4784OLD_FILES+=usr/share/terminfo/n/n7900 4785OLD_FILES+=usr/share/terminfo/n/nansi.sys 4786OLD_FILES+=usr/share/terminfo/n/nansi.sysk 4787OLD_FILES+=usr/share/terminfo/n/nansisys 4788OLD_FILES+=usr/share/terminfo/n/nansisysk 4789OLD_FILES+=usr/share/terminfo/n/ncr160vppp 4790OLD_FILES+=usr/share/terminfo/n/ncr160vpwpp 4791OLD_FILES+=usr/share/terminfo/n/ncr160vt100an 4792OLD_FILES+=usr/share/terminfo/n/ncr160vt100pp 4793OLD_FILES+=usr/share/terminfo/n/ncr160vt100wan 4794OLD_FILES+=usr/share/terminfo/n/ncr160vt100wpp 4795OLD_FILES+=usr/share/terminfo/n/ncr160vt200an 4796OLD_FILES+=usr/share/terminfo/n/ncr160vt200pp 4797OLD_FILES+=usr/share/terminfo/n/ncr160vt200wan 4798OLD_FILES+=usr/share/terminfo/n/ncr160vt200wpp 4799OLD_FILES+=usr/share/terminfo/n/ncr160vt300an 4800OLD_FILES+=usr/share/terminfo/n/ncr160vt300pp 4801OLD_FILES+=usr/share/terminfo/n/ncr160vt300wan 4802OLD_FILES+=usr/share/terminfo/n/ncr160vt300wpp 4803OLD_FILES+=usr/share/terminfo/n/ncr160wy50+pp 4804OLD_FILES+=usr/share/terminfo/n/ncr160wy50+wpp 4805OLD_FILES+=usr/share/terminfo/n/ncr160wy60pp 4806OLD_FILES+=usr/share/terminfo/n/ncr160wy60wpp 4807OLD_FILES+=usr/share/terminfo/n/ncr260intan 4808OLD_FILES+=usr/share/terminfo/n/ncr260intpp 4809OLD_FILES+=usr/share/terminfo/n/ncr260intwan 4810OLD_FILES+=usr/share/terminfo/n/ncr260intwpp 4811OLD_FILES+=usr/share/terminfo/n/ncr260vppp 4812OLD_FILES+=usr/share/terminfo/n/ncr260vpwpp 4813OLD_FILES+=usr/share/terminfo/n/ncr260vt100an 4814OLD_FILES+=usr/share/terminfo/n/ncr260vt100pp 4815OLD_FILES+=usr/share/terminfo/n/ncr260vt100wan 4816OLD_FILES+=usr/share/terminfo/n/ncr260vt100wpp 4817OLD_FILES+=usr/share/terminfo/n/ncr260vt200an 4818OLD_FILES+=usr/share/terminfo/n/ncr260vt200pp 4819OLD_FILES+=usr/share/terminfo/n/ncr260vt200wan 4820OLD_FILES+=usr/share/terminfo/n/ncr260vt200wpp 4821OLD_FILES+=usr/share/terminfo/n/ncr260vt300an 4822OLD_FILES+=usr/share/terminfo/n/ncr260vt300pp 4823OLD_FILES+=usr/share/terminfo/n/ncr260vt300wan 4824OLD_FILES+=usr/share/terminfo/n/ncr260vt300wpp 4825OLD_FILES+=usr/share/terminfo/n/ncr260wy325pp 4826OLD_FILES+=usr/share/terminfo/n/ncr260wy325wpp 4827OLD_FILES+=usr/share/terminfo/n/ncr260wy350pp 4828OLD_FILES+=usr/share/terminfo/n/ncr260wy350wpp 4829OLD_FILES+=usr/share/terminfo/n/ncr260wy50+pp 4830OLD_FILES+=usr/share/terminfo/n/ncr260wy50+wpp 4831OLD_FILES+=usr/share/terminfo/n/ncr260wy60pp 4832OLD_FILES+=usr/share/terminfo/n/ncr260wy60wpp 4833OLD_FILES+=usr/share/terminfo/n/ncr7900 4834OLD_FILES+=usr/share/terminfo/n/ncr7900i 4835OLD_FILES+=usr/share/terminfo/n/ncr7900iv 4836OLD_FILES+=usr/share/terminfo/n/ncr7901 4837OLD_FILES+=usr/share/terminfo/n/ncrvt100an 4838OLD_FILES+=usr/share/terminfo/n/ncrvt100pp 4839OLD_FILES+=usr/share/terminfo/n/ncrvt100wan 4840OLD_FILES+=usr/share/terminfo/n/ncrvt100wpp 4841OLD_FILES+=usr/share/terminfo/n/ncsa 4842OLD_FILES+=usr/share/terminfo/n/ncsa-m 4843OLD_FILES+=usr/share/terminfo/n/ncsa-m-ns 4844OLD_FILES+=usr/share/terminfo/n/ncsa-ns 4845OLD_FILES+=usr/share/terminfo/n/ncsa-vt220 4846OLD_FILES+=usr/share/terminfo/n/ncsa-vt220-8 4847OLD_FILES+=usr/share/terminfo/n/nd9500 4848OLD_FILES+=usr/share/terminfo/n/ndr9500 4849OLD_FILES+=usr/share/terminfo/n/ndr9500-25 4850OLD_FILES+=usr/share/terminfo/n/ndr9500-25-mc 4851OLD_FILES+=usr/share/terminfo/n/ndr9500-25-mc-nl 4852OLD_FILES+=usr/share/terminfo/n/ndr9500-25-nl 4853OLD_FILES+=usr/share/terminfo/n/ndr9500-mc 4854OLD_FILES+=usr/share/terminfo/n/ndr9500-mc-nl 4855OLD_FILES+=usr/share/terminfo/n/ndr9500-nl 4856OLD_FILES+=usr/share/terminfo/n/nec 4857OLD_FILES+=usr/share/terminfo/n/nec5520 4858OLD_FILES+=usr/share/terminfo/n/netbsd6 4859OLD_FILES+=usr/share/terminfo/n/newhp 4860OLD_FILES+=usr/share/terminfo/n/newhpkeyboard 4861OLD_FILES+=usr/share/terminfo/n/news 4862OLD_FILES+=usr/share/terminfo/n/news-29 4863OLD_FILES+=usr/share/terminfo/n/news-29-euc 4864OLD_FILES+=usr/share/terminfo/n/news-29-sjis 4865OLD_FILES+=usr/share/terminfo/n/news-33 4866OLD_FILES+=usr/share/terminfo/n/news-33-euc 4867OLD_FILES+=usr/share/terminfo/n/news-33-sjis 4868OLD_FILES+=usr/share/terminfo/n/news-42 4869OLD_FILES+=usr/share/terminfo/n/news-42-euc 4870OLD_FILES+=usr/share/terminfo/n/news-42-sjis 4871OLD_FILES+=usr/share/terminfo/n/news-a 4872OLD_FILES+=usr/share/terminfo/n/news-o 4873OLD_FILES+=usr/share/terminfo/n/news-old-unk 4874OLD_FILES+=usr/share/terminfo/n/news-unk 4875OLD_FILES+=usr/share/terminfo/n/news28 4876OLD_FILES+=usr/share/terminfo/n/news28-a 4877OLD_FILES+=usr/share/terminfo/n/news29 4878OLD_FILES+=usr/share/terminfo/n/news31 4879OLD_FILES+=usr/share/terminfo/n/news31-a 4880OLD_FILES+=usr/share/terminfo/n/news31-o 4881OLD_FILES+=usr/share/terminfo/n/news33 4882OLD_FILES+=usr/share/terminfo/n/news40 4883OLD_FILES+=usr/share/terminfo/n/news40-a 4884OLD_FILES+=usr/share/terminfo/n/news40-o 4885OLD_FILES+=usr/share/terminfo/n/news42 4886OLD_FILES+=usr/share/terminfo/n/newscbm 4887OLD_FILES+=usr/share/terminfo/n/newscbm-a 4888OLD_FILES+=usr/share/terminfo/n/newscbm-o 4889OLD_FILES+=usr/share/terminfo/n/newscbm33 4890OLD_FILES+=usr/share/terminfo/n/next 4891OLD_FILES+=usr/share/terminfo/n/nextshell 4892OLD_FILES+=usr/share/terminfo/n/northstar 4893OLD_FILES+=usr/share/terminfo/n/nsterm 4894OLD_FILES+=usr/share/terminfo/n/nsterm+7 4895OLD_FILES+=usr/share/terminfo/n/nsterm+acs 4896OLD_FILES+=usr/share/terminfo/n/nsterm+c 4897OLD_FILES+=usr/share/terminfo/n/nsterm+c41 4898OLD_FILES+=usr/share/terminfo/n/nsterm+mac 4899OLD_FILES+=usr/share/terminfo/n/nsterm+s 4900OLD_FILES+=usr/share/terminfo/n/nsterm-16color 4901OLD_FILES+=usr/share/terminfo/n/nsterm-256color 4902OLD_FILES+=usr/share/terminfo/n/nsterm-7 4903OLD_FILES+=usr/share/terminfo/n/nsterm-7-c 4904OLD_FILES+=usr/share/terminfo/n/nsterm-7-c-s 4905OLD_FILES+=usr/share/terminfo/n/nsterm-7-m 4906OLD_FILES+=usr/share/terminfo/n/nsterm-7-m-s 4907OLD_FILES+=usr/share/terminfo/n/nsterm-7-s 4908OLD_FILES+=usr/share/terminfo/n/nsterm-acs 4909OLD_FILES+=usr/share/terminfo/n/nsterm-acs-c 4910OLD_FILES+=usr/share/terminfo/n/nsterm-acs-c-s 4911OLD_FILES+=usr/share/terminfo/n/nsterm-acs-m 4912OLD_FILES+=usr/share/terminfo/n/nsterm-acs-m-s 4913OLD_FILES+=usr/share/terminfo/n/nsterm-acs-s 4914OLD_FILES+=usr/share/terminfo/n/nsterm-bce 4915OLD_FILES+=usr/share/terminfo/n/nsterm-build309 4916OLD_FILES+=usr/share/terminfo/n/nsterm-build326 4917OLD_FILES+=usr/share/terminfo/n/nsterm-build343 4918OLD_FILES+=usr/share/terminfo/n/nsterm-build361 4919OLD_FILES+=usr/share/terminfo/n/nsterm-build400 4920OLD_FILES+=usr/share/terminfo/n/nsterm-c 4921OLD_FILES+=usr/share/terminfo/n/nsterm-c-7 4922OLD_FILES+=usr/share/terminfo/n/nsterm-c-acs 4923OLD_FILES+=usr/share/terminfo/n/nsterm-c-s 4924OLD_FILES+=usr/share/terminfo/n/nsterm-c-s-7 4925OLD_FILES+=usr/share/terminfo/n/nsterm-c-s-acs 4926OLD_FILES+=usr/share/terminfo/n/nsterm-direct 4927OLD_FILES+=usr/share/terminfo/n/nsterm-m 4928OLD_FILES+=usr/share/terminfo/n/nsterm-m-7 4929OLD_FILES+=usr/share/terminfo/n/nsterm-m-acs 4930OLD_FILES+=usr/share/terminfo/n/nsterm-m-s 4931OLD_FILES+=usr/share/terminfo/n/nsterm-m-s-7 4932OLD_FILES+=usr/share/terminfo/n/nsterm-m-s-acs 4933OLD_FILES+=usr/share/terminfo/n/nsterm-old 4934OLD_FILES+=usr/share/terminfo/n/nsterm-s 4935OLD_FILES+=usr/share/terminfo/n/nsterm-s-7 4936OLD_FILES+=usr/share/terminfo/n/nsterm-s-acs 4937OLD_FILES+=usr/share/terminfo/n/ntconsole 4938OLD_FILES+=usr/share/terminfo/n/ntconsole-100 4939OLD_FILES+=usr/share/terminfo/n/ntconsole-100-nti 4940OLD_FILES+=usr/share/terminfo/n/ntconsole-25 4941OLD_FILES+=usr/share/terminfo/n/ntconsole-25-nti 4942OLD_FILES+=usr/share/terminfo/n/ntconsole-25-w 4943OLD_FILES+=usr/share/terminfo/n/ntconsole-25-w-vt 4944OLD_FILES+=usr/share/terminfo/n/ntconsole-35 4945OLD_FILES+=usr/share/terminfo/n/ntconsole-35-nti 4946OLD_FILES+=usr/share/terminfo/n/ntconsole-35-w 4947OLD_FILES+=usr/share/terminfo/n/ntconsole-50 4948OLD_FILES+=usr/share/terminfo/n/ntconsole-50-nti 4949OLD_FILES+=usr/share/terminfo/n/ntconsole-50-w 4950OLD_FILES+=usr/share/terminfo/n/ntconsole-60 4951OLD_FILES+=usr/share/terminfo/n/ntconsole-60-nti 4952OLD_FILES+=usr/share/terminfo/n/ntconsole-60-w 4953OLD_FILES+=usr/share/terminfo/n/ntconsole-w 4954OLD_FILES+=usr/share/terminfo/n/ntconsole-w-vt 4955OLD_FILES+=usr/share/terminfo/n/nwe501 4956OLD_FILES+=usr/share/terminfo/n/nwe501-a 4957OLD_FILES+=usr/share/terminfo/n/nwe501-o 4958OLD_FILES+=usr/share/terminfo/n/nwp-511 4959OLD_FILES+=usr/share/terminfo/n/nwp-517 4960OLD_FILES+=usr/share/terminfo/n/nwp-517-w 4961OLD_FILES+=usr/share/terminfo/n/nwp251-a 4962OLD_FILES+=usr/share/terminfo/n/nwp251-o 4963OLD_FILES+=usr/share/terminfo/n/nwp511 4964OLD_FILES+=usr/share/terminfo/n/nwp512 4965OLD_FILES+=usr/share/terminfo/n/nwp512-a 4966OLD_FILES+=usr/share/terminfo/n/nwp512-o 4967OLD_FILES+=usr/share/terminfo/n/nwp513 4968OLD_FILES+=usr/share/terminfo/n/nwp513-a 4969OLD_FILES+=usr/share/terminfo/n/nwp513-o 4970OLD_FILES+=usr/share/terminfo/n/nwp514 4971OLD_FILES+=usr/share/terminfo/n/nwp514-a 4972OLD_FILES+=usr/share/terminfo/n/nwp514-o 4973OLD_FILES+=usr/share/terminfo/n/nwp517 4974OLD_FILES+=usr/share/terminfo/n/nwp517-w 4975OLD_FILES+=usr/share/terminfo/n/nwp518 4976OLD_FILES+=usr/share/terminfo/n/nwp518-a 4977OLD_FILES+=usr/share/terminfo/n/nwp518-o 4978OLD_FILES+=usr/share/terminfo/n/nxterm 4979OLD_DIRS+=usr/share/terminfo/n/ 4980OLD_FILES+=usr/share/terminfo/o/o31 4981OLD_FILES+=usr/share/terminfo/o/o4112-nd 4982OLD_FILES+=usr/share/terminfo/o/o85h 4983OLD_FILES+=usr/share/terminfo/o/oabm85h 4984OLD_FILES+=usr/share/terminfo/o/oblit 4985OLD_FILES+=usr/share/terminfo/o/oc100 4986OLD_FILES+=usr/share/terminfo/o/oconcept 4987OLD_FILES+=usr/share/terminfo/o/ofcons 4988OLD_FILES+=usr/share/terminfo/o/ojerq 4989OLD_FILES+=usr/share/terminfo/o/old-st 4990OLD_FILES+=usr/share/terminfo/o/oldibmpc3 4991OLD_FILES+=usr/share/terminfo/o/oldpc3 4992OLD_FILES+=usr/share/terminfo/o/oldsun 4993OLD_FILES+=usr/share/terminfo/o/omron 4994OLD_FILES+=usr/share/terminfo/o/opennt 4995OLD_FILES+=usr/share/terminfo/o/opennt-100 4996OLD_FILES+=usr/share/terminfo/o/opennt-100-nti 4997OLD_FILES+=usr/share/terminfo/o/opennt-25 4998OLD_FILES+=usr/share/terminfo/o/opennt-25-nti 4999OLD_FILES+=usr/share/terminfo/o/opennt-25-w 5000OLD_FILES+=usr/share/terminfo/o/opennt-25-w-vt 5001OLD_FILES+=usr/share/terminfo/o/opennt-35 5002OLD_FILES+=usr/share/terminfo/o/opennt-35-nti 5003OLD_FILES+=usr/share/terminfo/o/opennt-35-w 5004OLD_FILES+=usr/share/terminfo/o/opennt-50 5005OLD_FILES+=usr/share/terminfo/o/opennt-50-nti 5006OLD_FILES+=usr/share/terminfo/o/opennt-50-w 5007OLD_FILES+=usr/share/terminfo/o/opennt-60 5008OLD_FILES+=usr/share/terminfo/o/opennt-60-nti 5009OLD_FILES+=usr/share/terminfo/o/opennt-60-w 5010OLD_FILES+=usr/share/terminfo/o/opennt-nti 5011OLD_FILES+=usr/share/terminfo/o/opennt-w 5012OLD_FILES+=usr/share/terminfo/o/opennt-w-vt 5013OLD_FILES+=usr/share/terminfo/o/opus3n1+ 5014OLD_FILES+=usr/share/terminfo/o/origibmpc3 5015OLD_FILES+=usr/share/terminfo/o/origpc3 5016OLD_FILES+=usr/share/terminfo/o/os9LII 5017OLD_FILES+=usr/share/terminfo/o/osborne 5018OLD_FILES+=usr/share/terminfo/o/osborne-w 5019OLD_FILES+=usr/share/terminfo/o/osborne1 5020OLD_FILES+=usr/share/terminfo/o/osborne1-w 5021OLD_FILES+=usr/share/terminfo/o/osexec 5022OLD_FILES+=usr/share/terminfo/o/otek4112 5023OLD_FILES+=usr/share/terminfo/o/otek4113 5024OLD_FILES+=usr/share/terminfo/o/otek4114 5025OLD_FILES+=usr/share/terminfo/o/otek4115 5026OLD_FILES+=usr/share/terminfo/o/owl 5027OLD_DIRS+=usr/share/terminfo/o/ 5028OLD_FILES+=usr/share/terminfo/p/p12 5029OLD_FILES+=usr/share/terminfo/p/p12-m 5030OLD_FILES+=usr/share/terminfo/p/p12-m-w 5031OLD_FILES+=usr/share/terminfo/p/p12-w 5032OLD_FILES+=usr/share/terminfo/p/p14 5033OLD_FILES+=usr/share/terminfo/p/p14-m 5034OLD_FILES+=usr/share/terminfo/p/p14-m-w 5035OLD_FILES+=usr/share/terminfo/p/p14-w 5036OLD_FILES+=usr/share/terminfo/p/p19 5037OLD_FILES+=usr/share/terminfo/p/p4 5038OLD_FILES+=usr/share/terminfo/p/p5 5039OLD_FILES+=usr/share/terminfo/p/p7 5040OLD_FILES+=usr/share/terminfo/p/p8 5041OLD_FILES+=usr/share/terminfo/p/p8-w 5042OLD_FILES+=usr/share/terminfo/p/p8gl 5043OLD_FILES+=usr/share/terminfo/p/p9 5044OLD_FILES+=usr/share/terminfo/p/p9-8 5045OLD_FILES+=usr/share/terminfo/p/p9-8-w 5046OLD_FILES+=usr/share/terminfo/p/p9-w 5047OLD_FILES+=usr/share/terminfo/p/pc-coherent 5048OLD_FILES+=usr/share/terminfo/p/pc-minix 5049OLD_FILES+=usr/share/terminfo/p/pc-venix 5050OLD_FILES+=usr/share/terminfo/p/pc3 5051OLD_FILES+=usr/share/terminfo/p/pc3-bold 5052OLD_FILES+=usr/share/terminfo/p/pc3r 5053OLD_FILES+=usr/share/terminfo/p/pc3r-m 5054OLD_FILES+=usr/share/terminfo/p/pc6300plus 5055OLD_FILES+=usr/share/terminfo/p/pc7300 5056OLD_FILES+=usr/share/terminfo/p/pcansi 5057OLD_FILES+=usr/share/terminfo/p/pcansi-25 5058OLD_FILES+=usr/share/terminfo/p/pcansi-25-m 5059OLD_FILES+=usr/share/terminfo/p/pcansi-33 5060OLD_FILES+=usr/share/terminfo/p/pcansi-33-m 5061OLD_FILES+=usr/share/terminfo/p/pcansi-43 5062OLD_FILES+=usr/share/terminfo/p/pcansi-43-m 5063OLD_FILES+=usr/share/terminfo/p/pcansi-m 5064OLD_FILES+=usr/share/terminfo/p/pcansi-mono 5065OLD_FILES+=usr/share/terminfo/p/pcansi25 5066OLD_FILES+=usr/share/terminfo/p/pcansi25m 5067OLD_FILES+=usr/share/terminfo/p/pcansi33 5068OLD_FILES+=usr/share/terminfo/p/pcansi33m 5069OLD_FILES+=usr/share/terminfo/p/pcansi43 5070OLD_FILES+=usr/share/terminfo/p/pccon 5071OLD_FILES+=usr/share/terminfo/p/pccon+base 5072OLD_FILES+=usr/share/terminfo/p/pccon+colors 5073OLD_FILES+=usr/share/terminfo/p/pccon+keys 5074OLD_FILES+=usr/share/terminfo/p/pccon+sgr+acs 5075OLD_FILES+=usr/share/terminfo/p/pccon+sgr+acs0 5076OLD_FILES+=usr/share/terminfo/p/pccon-m 5077OLD_FILES+=usr/share/terminfo/p/pccon0 5078OLD_FILES+=usr/share/terminfo/p/pccon0-m 5079OLD_FILES+=usr/share/terminfo/p/pccons 5080OLD_FILES+=usr/share/terminfo/p/pcconsole 5081OLD_FILES+=usr/share/terminfo/p/pcix 5082OLD_FILES+=usr/share/terminfo/p/pckermit 5083OLD_FILES+=usr/share/terminfo/p/pckermit12 5084OLD_FILES+=usr/share/terminfo/p/pckermit120 5085OLD_FILES+=usr/share/terminfo/p/pcmw 5086OLD_FILES+=usr/share/terminfo/p/pcplot 5087OLD_FILES+=usr/share/terminfo/p/pcvt25 5088OLD_FILES+=usr/share/terminfo/p/pcvt25-color 5089OLD_FILES+=usr/share/terminfo/p/pcvt25w 5090OLD_FILES+=usr/share/terminfo/p/pcvt28 5091OLD_FILES+=usr/share/terminfo/p/pcvt28w 5092OLD_FILES+=usr/share/terminfo/p/pcvt35 5093OLD_FILES+=usr/share/terminfo/p/pcvt35w 5094OLD_FILES+=usr/share/terminfo/p/pcvt40 5095OLD_FILES+=usr/share/terminfo/p/pcvt40w 5096OLD_FILES+=usr/share/terminfo/p/pcvt43 5097OLD_FILES+=usr/share/terminfo/p/pcvt43w 5098OLD_FILES+=usr/share/terminfo/p/pcvt50 5099OLD_FILES+=usr/share/terminfo/p/pcvt50w 5100OLD_FILES+=usr/share/terminfo/p/pcvtXX 5101OLD_FILES+=usr/share/terminfo/p/pcz19 5102OLD_FILES+=usr/share/terminfo/p/pe1100 5103OLD_FILES+=usr/share/terminfo/p/pe1200 5104OLD_FILES+=usr/share/terminfo/p/pe1251 5105OLD_FILES+=usr/share/terminfo/p/pe550 5106OLD_FILES+=usr/share/terminfo/p/pe6100 5107OLD_FILES+=usr/share/terminfo/p/pe6300 5108OLD_FILES+=usr/share/terminfo/p/pe6312 5109OLD_FILES+=usr/share/terminfo/p/pe7000c 5110OLD_FILES+=usr/share/terminfo/p/pe7000m 5111OLD_FILES+=usr/share/terminfo/p/pilot 5112OLD_FILES+=usr/share/terminfo/p/pmcons 5113OLD_FILES+=usr/share/terminfo/p/pmconsole 5114OLD_FILES+=usr/share/terminfo/p/printer 5115OLD_FILES+=usr/share/terminfo/p/prism12 5116OLD_FILES+=usr/share/terminfo/p/prism12-m 5117OLD_FILES+=usr/share/terminfo/p/prism12-m-w 5118OLD_FILES+=usr/share/terminfo/p/prism12-w 5119OLD_FILES+=usr/share/terminfo/p/prism14 5120OLD_FILES+=usr/share/terminfo/p/prism14-m 5121OLD_FILES+=usr/share/terminfo/p/prism14-m-w 5122OLD_FILES+=usr/share/terminfo/p/prism14-w 5123OLD_FILES+=usr/share/terminfo/p/prism2 5124OLD_FILES+=usr/share/terminfo/p/prism4 5125OLD_FILES+=usr/share/terminfo/p/prism5 5126OLD_FILES+=usr/share/terminfo/p/prism7 5127OLD_FILES+=usr/share/terminfo/p/prism8 5128OLD_FILES+=usr/share/terminfo/p/prism8-w 5129OLD_FILES+=usr/share/terminfo/p/prism8gl 5130OLD_FILES+=usr/share/terminfo/p/prism9 5131OLD_FILES+=usr/share/terminfo/p/prism9-8 5132OLD_FILES+=usr/share/terminfo/p/prism9-8-w 5133OLD_FILES+=usr/share/terminfo/p/prism9-w 5134OLD_FILES+=usr/share/terminfo/p/pro350 5135OLD_FILES+=usr/share/terminfo/p/ps300 5136OLD_FILES+=usr/share/terminfo/p/psterm 5137OLD_FILES+=usr/share/terminfo/p/psterm-80x24 5138OLD_FILES+=usr/share/terminfo/p/psterm-90x28 5139OLD_FILES+=usr/share/terminfo/p/psterm-96x48 5140OLD_FILES+=usr/share/terminfo/p/psterm-basic 5141OLD_FILES+=usr/share/terminfo/p/psterm-fast 5142OLD_FILES+=usr/share/terminfo/p/psx_ansi 5143OLD_FILES+=usr/share/terminfo/p/pt100 5144OLD_FILES+=usr/share/terminfo/p/pt100w 5145OLD_FILES+=usr/share/terminfo/p/pt200 5146OLD_FILES+=usr/share/terminfo/p/pt200w 5147OLD_FILES+=usr/share/terminfo/p/pt210 5148OLD_FILES+=usr/share/terminfo/p/pt250 5149OLD_FILES+=usr/share/terminfo/p/pt250w 5150OLD_FILES+=usr/share/terminfo/p/pt505 5151OLD_FILES+=usr/share/terminfo/p/pt505-22 5152OLD_FILES+=usr/share/terminfo/p/pt505-24 5153OLD_FILES+=usr/share/terminfo/p/pty 5154OLD_FILES+=usr/share/terminfo/p/putty 5155OLD_FILES+=usr/share/terminfo/p/putty+fnkeys 5156OLD_FILES+=usr/share/terminfo/p/putty+fnkeys+esc 5157OLD_FILES+=usr/share/terminfo/p/putty+fnkeys+linux 5158OLD_FILES+=usr/share/terminfo/p/putty+fnkeys+sco 5159OLD_FILES+=usr/share/terminfo/p/putty+fnkeys+vt100 5160OLD_FILES+=usr/share/terminfo/p/putty+fnkeys+vt400 5161OLD_FILES+=usr/share/terminfo/p/putty+fnkeys+xterm 5162OLD_FILES+=usr/share/terminfo/p/putty+keypad 5163OLD_FILES+=usr/share/terminfo/p/putty+screen 5164OLD_FILES+=usr/share/terminfo/p/putty-256color 5165OLD_FILES+=usr/share/terminfo/p/putty-m1 5166OLD_FILES+=usr/share/terminfo/p/putty-m1b 5167OLD_FILES+=usr/share/terminfo/p/putty-m2 5168OLD_FILES+=usr/share/terminfo/p/putty-noapp 5169OLD_FILES+=usr/share/terminfo/p/putty-sco 5170OLD_FILES+=usr/share/terminfo/p/putty-screen 5171OLD_FILES+=usr/share/terminfo/p/putty-vt100 5172OLD_DIRS+=usr/share/terminfo/p/ 5173OLD_FILES+=usr/share/terminfo/q/qansi 5174OLD_FILES+=usr/share/terminfo/q/qansi-g 5175OLD_FILES+=usr/share/terminfo/q/qansi-m 5176OLD_FILES+=usr/share/terminfo/q/qansi-t 5177OLD_FILES+=usr/share/terminfo/q/qansi-w 5178OLD_FILES+=usr/share/terminfo/q/qdcons 5179OLD_FILES+=usr/share/terminfo/q/qdss 5180OLD_FILES+=usr/share/terminfo/q/qnx 5181OLD_FILES+=usr/share/terminfo/q/qnx4 5182OLD_FILES+=usr/share/terminfo/q/qnxm 5183OLD_FILES+=usr/share/terminfo/q/qnxt 5184OLD_FILES+=usr/share/terminfo/q/qnxt2 5185OLD_FILES+=usr/share/terminfo/q/qnxt4 5186OLD_FILES+=usr/share/terminfo/q/qnxtmono 5187OLD_FILES+=usr/share/terminfo/q/qnxw 5188OLD_FILES+=usr/share/terminfo/q/qume 5189OLD_FILES+=usr/share/terminfo/q/qume5 5190OLD_FILES+=usr/share/terminfo/q/qvt101 5191OLD_FILES+=usr/share/terminfo/q/qvt101+ 5192OLD_FILES+=usr/share/terminfo/q/qvt101p 5193OLD_FILES+=usr/share/terminfo/q/qvt102 5194OLD_FILES+=usr/share/terminfo/q/qvt103 5195OLD_FILES+=usr/share/terminfo/q/qvt103-w 5196OLD_FILES+=usr/share/terminfo/q/qvt108 5197OLD_FILES+=usr/share/terminfo/q/qvt119 5198OLD_FILES+=usr/share/terminfo/q/qvt119+ 5199OLD_FILES+=usr/share/terminfo/q/qvt119+-25 5200OLD_FILES+=usr/share/terminfo/q/qvt119+-25-w 5201OLD_FILES+=usr/share/terminfo/q/qvt119+-w 5202OLD_FILES+=usr/share/terminfo/q/qvt119-25-w 5203OLD_FILES+=usr/share/terminfo/q/qvt119-w 5204OLD_FILES+=usr/share/terminfo/q/qvt119p 5205OLD_FILES+=usr/share/terminfo/q/qvt119p-25 5206OLD_FILES+=usr/share/terminfo/q/qvt119p-25-w 5207OLD_FILES+=usr/share/terminfo/q/qvt119p-w 5208OLD_FILES+=usr/share/terminfo/q/qvt203 5209OLD_FILES+=usr/share/terminfo/q/qvt203+ 5210OLD_FILES+=usr/share/terminfo/q/qvt203-25 5211OLD_FILES+=usr/share/terminfo/q/qvt203-25-w 5212OLD_FILES+=usr/share/terminfo/q/qvt203-w 5213OLD_FILES+=usr/share/terminfo/q/qvt203-w-am 5214OLD_DIRS+=usr/share/terminfo/q/ 5215OLD_FILES+=usr/share/terminfo/r/rbcomm 5216OLD_FILES+=usr/share/terminfo/r/rbcomm-nam 5217OLD_FILES+=usr/share/terminfo/r/rbcomm-w 5218OLD_FILES+=usr/share/terminfo/r/rca 5219OLD_FILES+=usr/share/terminfo/r/rcons 5220OLD_FILES+=usr/share/terminfo/r/rcons-color 5221OLD_FILES+=usr/share/terminfo/r/rebus3180 5222OLD_FILES+=usr/share/terminfo/r/regent 5223OLD_FILES+=usr/share/terminfo/r/regent100 5224OLD_FILES+=usr/share/terminfo/r/regent20 5225OLD_FILES+=usr/share/terminfo/r/regent200 5226OLD_FILES+=usr/share/terminfo/r/regent25 5227OLD_FILES+=usr/share/terminfo/r/regent40 5228OLD_FILES+=usr/share/terminfo/r/regent40+ 5229OLD_FILES+=usr/share/terminfo/r/regent60 5230OLD_FILES+=usr/share/terminfo/r/rt6221 5231OLD_FILES+=usr/share/terminfo/r/rt6221-w 5232OLD_FILES+=usr/share/terminfo/r/rtpc 5233OLD_FILES+=usr/share/terminfo/r/rxvt 5234OLD_FILES+=usr/share/terminfo/r/rxvt+pcfkeys 5235OLD_FILES+=usr/share/terminfo/r/rxvt-16color 5236OLD_FILES+=usr/share/terminfo/r/rxvt-256color 5237OLD_FILES+=usr/share/terminfo/r/rxvt-88color 5238OLD_FILES+=usr/share/terminfo/r/rxvt-basic 5239OLD_FILES+=usr/share/terminfo/r/rxvt-color 5240OLD_FILES+=usr/share/terminfo/r/rxvt-cygwin 5241OLD_FILES+=usr/share/terminfo/r/rxvt-cygwin-native 5242OLD_FILES+=usr/share/terminfo/r/rxvt-xpm 5243OLD_DIRS+=usr/share/terminfo/r/ 5244OLD_FILES+=usr/share/terminfo/s/s4 5245OLD_FILES+=usr/share/terminfo/s/sb1 5246OLD_FILES+=usr/share/terminfo/s/sb2 5247OLD_FILES+=usr/share/terminfo/s/sb3 5248OLD_FILES+=usr/share/terminfo/s/sbi 5249OLD_FILES+=usr/share/terminfo/s/sbobcat 5250OLD_FILES+=usr/share/terminfo/s/sc410 5251OLD_FILES+=usr/share/terminfo/s/sc415 5252OLD_FILES+=usr/share/terminfo/s/scanset 5253OLD_FILES+=usr/share/terminfo/s/scoansi 5254OLD_FILES+=usr/share/terminfo/s/scoansi-new 5255OLD_FILES+=usr/share/terminfo/s/scoansi-old 5256OLD_FILES+=usr/share/terminfo/s/screen 5257OLD_FILES+=usr/share/terminfo/s/screen+fkeys 5258OLD_FILES+=usr/share/terminfo/s/screen+italics 5259OLD_FILES+=usr/share/terminfo/s/screen-16color 5260OLD_FILES+=usr/share/terminfo/s/screen-16color-bce 5261OLD_FILES+=usr/share/terminfo/s/screen-16color-bce-s 5262OLD_FILES+=usr/share/terminfo/s/screen-16color-s 5263OLD_FILES+=usr/share/terminfo/s/screen-256color 5264OLD_FILES+=usr/share/terminfo/s/screen-256color-bce 5265OLD_FILES+=usr/share/terminfo/s/screen-256color-bce-s 5266OLD_FILES+=usr/share/terminfo/s/screen-256color-s 5267OLD_FILES+=usr/share/terminfo/s/screen-bce 5268OLD_FILES+=usr/share/terminfo/s/screen-bce.Eterm 5269OLD_FILES+=usr/share/terminfo/s/screen-bce.gnome 5270OLD_FILES+=usr/share/terminfo/s/screen-bce.konsole 5271OLD_FILES+=usr/share/terminfo/s/screen-bce.linux 5272OLD_FILES+=usr/share/terminfo/s/screen-bce.mrxvt 5273OLD_FILES+=usr/share/terminfo/s/screen-bce.rxvt 5274OLD_FILES+=usr/share/terminfo/s/screen-bce.xterm-new 5275OLD_FILES+=usr/share/terminfo/s/screen-s 5276OLD_FILES+=usr/share/terminfo/s/screen-w 5277OLD_FILES+=usr/share/terminfo/s/screen.Eterm 5278OLD_FILES+=usr/share/terminfo/s/screen.gnome 5279OLD_FILES+=usr/share/terminfo/s/screen.konsole 5280OLD_FILES+=usr/share/terminfo/s/screen.konsole-256color 5281OLD_FILES+=usr/share/terminfo/s/screen.linux 5282OLD_FILES+=usr/share/terminfo/s/screen.linux-m1 5283OLD_FILES+=usr/share/terminfo/s/screen.linux-m1b 5284OLD_FILES+=usr/share/terminfo/s/screen.linux-m2 5285OLD_FILES+=usr/share/terminfo/s/screen.linux-s 5286OLD_FILES+=usr/share/terminfo/s/screen.minitel1 5287OLD_FILES+=usr/share/terminfo/s/screen.minitel1-nb 5288OLD_FILES+=usr/share/terminfo/s/screen.minitel12-80 5289OLD_FILES+=usr/share/terminfo/s/screen.minitel1b 5290OLD_FILES+=usr/share/terminfo/s/screen.minitel1b-80 5291OLD_FILES+=usr/share/terminfo/s/screen.minitel1b-nb 5292OLD_FILES+=usr/share/terminfo/s/screen.minitel2-80 5293OLD_FILES+=usr/share/terminfo/s/screen.mlterm 5294OLD_FILES+=usr/share/terminfo/s/screen.mlterm-256color 5295OLD_FILES+=usr/share/terminfo/s/screen.mrxvt 5296OLD_FILES+=usr/share/terminfo/s/screen.putty 5297OLD_FILES+=usr/share/terminfo/s/screen.putty-256color 5298OLD_FILES+=usr/share/terminfo/s/screen.putty-m1 5299OLD_FILES+=usr/share/terminfo/s/screen.putty-m1b 5300OLD_FILES+=usr/share/terminfo/s/screen.putty-m2 5301OLD_FILES+=usr/share/terminfo/s/screen.rxvt 5302OLD_FILES+=usr/share/terminfo/s/screen.teraterm 5303OLD_FILES+=usr/share/terminfo/s/screen.vte 5304OLD_FILES+=usr/share/terminfo/s/screen.vte-256color 5305OLD_FILES+=usr/share/terminfo/s/screen.xterm-256color 5306OLD_FILES+=usr/share/terminfo/s/screen.xterm-new 5307OLD_FILES+=usr/share/terminfo/s/screen.xterm-r6 5308OLD_FILES+=usr/share/terminfo/s/screen.xterm-xfree86 5309OLD_FILES+=usr/share/terminfo/s/screen2 5310OLD_FILES+=usr/share/terminfo/s/screen3 5311OLD_FILES+=usr/share/terminfo/s/screen4 5312OLD_FILES+=usr/share/terminfo/s/screen5 5313OLD_FILES+=usr/share/terminfo/s/screwpoint 5314OLD_FILES+=usr/share/terminfo/s/scrhp 5315OLD_FILES+=usr/share/terminfo/s/scrt 5316OLD_FILES+=usr/share/terminfo/s/securecrt 5317OLD_FILES+=usr/share/terminfo/s/sibo 5318OLD_FILES+=usr/share/terminfo/s/simpleterm 5319OLD_FILES+=usr/share/terminfo/s/simterm 5320OLD_FILES+=usr/share/terminfo/s/soroc 5321OLD_FILES+=usr/share/terminfo/s/soroc120 5322OLD_FILES+=usr/share/terminfo/s/soroc140 5323OLD_FILES+=usr/share/terminfo/s/spinwriter 5324OLD_FILES+=usr/share/terminfo/s/st 5325OLD_FILES+=usr/share/terminfo/s/st-0.6 5326OLD_FILES+=usr/share/terminfo/s/st-0.7 5327OLD_FILES+=usr/share/terminfo/s/st-0.8 5328OLD_FILES+=usr/share/terminfo/s/st-16color 5329OLD_FILES+=usr/share/terminfo/s/st-256color 5330OLD_FILES+=usr/share/terminfo/s/st-direct 5331OLD_FILES+=usr/share/terminfo/s/st52 5332OLD_FILES+=usr/share/terminfo/s/st52-color 5333OLD_FILES+=usr/share/terminfo/s/st52-m 5334OLD_FILES+=usr/share/terminfo/s/st52-old 5335OLD_FILES+=usr/share/terminfo/s/stterm 5336OLD_FILES+=usr/share/terminfo/s/stterm-16color 5337OLD_FILES+=usr/share/terminfo/s/stterm-256color 5338OLD_FILES+=usr/share/terminfo/s/stv52 5339OLD_FILES+=usr/share/terminfo/s/stv52pc 5340OLD_FILES+=usr/share/terminfo/s/sun 5341OLD_FILES+=usr/share/terminfo/s/sun+sl 5342OLD_FILES+=usr/share/terminfo/s/sun-1 5343OLD_FILES+=usr/share/terminfo/s/sun-12 5344OLD_FILES+=usr/share/terminfo/s/sun-17 5345OLD_FILES+=usr/share/terminfo/s/sun-24 5346OLD_FILES+=usr/share/terminfo/s/sun-34 5347OLD_FILES+=usr/share/terminfo/s/sun-48 5348OLD_FILES+=usr/share/terminfo/s/sun-c 5349OLD_FILES+=usr/share/terminfo/s/sun-cgsix 5350OLD_FILES+=usr/share/terminfo/s/sun-cmd 5351OLD_FILES+=usr/share/terminfo/s/sun-color 5352OLD_FILES+=usr/share/terminfo/s/sun-e 5353OLD_FILES+=usr/share/terminfo/s/sun-e-s 5354OLD_FILES+=usr/share/terminfo/s/sun-il 5355OLD_FILES+=usr/share/terminfo/s/sun-nic 5356OLD_FILES+=usr/share/terminfo/s/sun-s 5357OLD_FILES+=usr/share/terminfo/s/sun-s-e 5358OLD_FILES+=usr/share/terminfo/s/sun-ss5 5359OLD_FILES+=usr/share/terminfo/s/sun-type4 5360OLD_FILES+=usr/share/terminfo/s/sun1 5361OLD_FILES+=usr/share/terminfo/s/sun2 5362OLD_FILES+=usr/share/terminfo/s/sune 5363OLD_FILES+=usr/share/terminfo/s/superbee 5364OLD_FILES+=usr/share/terminfo/s/superbee-xsb 5365OLD_FILES+=usr/share/terminfo/s/superbeeic 5366OLD_FILES+=usr/share/terminfo/s/superbrain 5367OLD_FILES+=usr/share/terminfo/s/sv80 5368OLD_FILES+=usr/share/terminfo/s/swtp 5369OLD_FILES+=usr/share/terminfo/s/synertek 5370OLD_FILES+=usr/share/terminfo/s/synertek380 5371OLD_FILES+=usr/share/terminfo/s/system1 5372OLD_DIRS+=usr/share/terminfo/s/ 5373 5374OLD_FILES+=usr/share/terminfo/t/t10 5375OLD_FILES+=usr/share/terminfo/t/t1061 5376OLD_FILES+=usr/share/terminfo/t/t1061f 5377OLD_FILES+=usr/share/terminfo/t/t16 5378OLD_FILES+=usr/share/terminfo/t/t3700 5379OLD_FILES+=usr/share/terminfo/t/t3800 5380OLD_FILES+=usr/share/terminfo/t/t653x 5381OLD_FILES+=usr/share/terminfo/t/tab 5382OLD_FILES+=usr/share/terminfo/t/tab132 5383OLD_FILES+=usr/share/terminfo/t/tab132-15 5384OLD_FILES+=usr/share/terminfo/t/tab132-rv 5385OLD_FILES+=usr/share/terminfo/t/tab132-w 5386OLD_FILES+=usr/share/terminfo/t/tab132-w-rv 5387OLD_FILES+=usr/share/terminfo/t/tandem6510 5388OLD_FILES+=usr/share/terminfo/t/tandem653 5389OLD_FILES+=usr/share/terminfo/t/tek 5390OLD_FILES+=usr/share/terminfo/t/tek4012 5391OLD_FILES+=usr/share/terminfo/t/tek4013 5392OLD_FILES+=usr/share/terminfo/t/tek4014 5393OLD_FILES+=usr/share/terminfo/t/tek4014-sm 5394OLD_FILES+=usr/share/terminfo/t/tek4015 5395OLD_FILES+=usr/share/terminfo/t/tek4015-sm 5396OLD_FILES+=usr/share/terminfo/t/tek4023 5397OLD_FILES+=usr/share/terminfo/t/tek4024 5398OLD_FILES+=usr/share/terminfo/t/tek4025 5399OLD_FILES+=usr/share/terminfo/t/tek4025-17 5400OLD_FILES+=usr/share/terminfo/t/tek4025-17-ws 5401OLD_FILES+=usr/share/terminfo/t/tek4025-cr 5402OLD_FILES+=usr/share/terminfo/t/tek4025-ex 5403OLD_FILES+=usr/share/terminfo/t/tek4025a 5404OLD_FILES+=usr/share/terminfo/t/tek4025ex 5405OLD_FILES+=usr/share/terminfo/t/tek4027 5406OLD_FILES+=usr/share/terminfo/t/tek4027-ex 5407OLD_FILES+=usr/share/terminfo/t/tek4105 5408OLD_FILES+=usr/share/terminfo/t/tek4105-30 5409OLD_FILES+=usr/share/terminfo/t/tek4105a 5410OLD_FILES+=usr/share/terminfo/t/tek4106brl 5411OLD_FILES+=usr/share/terminfo/t/tek4107 5412OLD_FILES+=usr/share/terminfo/t/tek4107brl 5413OLD_FILES+=usr/share/terminfo/t/tek4109 5414OLD_FILES+=usr/share/terminfo/t/tek4109brl 5415OLD_FILES+=usr/share/terminfo/t/tek4112 5416OLD_FILES+=usr/share/terminfo/t/tek4112-5 5417OLD_FILES+=usr/share/terminfo/t/tek4112-nd 5418OLD_FILES+=usr/share/terminfo/t/tek4113 5419OLD_FILES+=usr/share/terminfo/t/tek4113-34 5420OLD_FILES+=usr/share/terminfo/t/tek4113-nd 5421OLD_FILES+=usr/share/terminfo/t/tek4114 5422OLD_FILES+=usr/share/terminfo/t/tek4115 5423OLD_FILES+=usr/share/terminfo/t/tek4125 5424OLD_FILES+=usr/share/terminfo/t/tek4205 5425OLD_FILES+=usr/share/terminfo/t/tek4207 5426OLD_FILES+=usr/share/terminfo/t/tek4207-s 5427OLD_FILES+=usr/share/terminfo/t/tek4404 5428OLD_FILES+=usr/share/terminfo/t/teken 5429OLD_FILES+=usr/share/terminfo/t/teleray 5430OLD_FILES+=usr/share/terminfo/t/teletec 5431OLD_FILES+=usr/share/terminfo/t/teraterm 5432OLD_FILES+=usr/share/terminfo/t/teraterm-256color 5433OLD_FILES+=usr/share/terminfo/t/teraterm2.3 5434OLD_FILES+=usr/share/terminfo/t/teraterm4.59 5435OLD_FILES+=usr/share/terminfo/t/teraterm4.97 5436OLD_FILES+=usr/share/terminfo/t/terminator 5437OLD_FILES+=usr/share/terminfo/t/terminet 5438OLD_FILES+=usr/share/terminfo/t/terminet1200 5439OLD_FILES+=usr/share/terminfo/t/terminet300 5440OLD_FILES+=usr/share/terminfo/t/terminology 5441OLD_FILES+=usr/share/terminfo/t/terminology-0.6.1 5442OLD_FILES+=usr/share/terminfo/t/terminology-1.0.0 5443OLD_FILES+=usr/share/terminfo/t/terminology-1.8.1 5444OLD_FILES+=usr/share/terminfo/t/termite 5445OLD_FILES+=usr/share/terminfo/t/tgtelnet 5446OLD_FILES+=usr/share/terminfo/t/ti700 5447OLD_FILES+=usr/share/terminfo/t/ti703 5448OLD_FILES+=usr/share/terminfo/t/ti703-w 5449OLD_FILES+=usr/share/terminfo/t/ti707 5450OLD_FILES+=usr/share/terminfo/t/ti707-w 5451OLD_FILES+=usr/share/terminfo/t/ti733 5452OLD_FILES+=usr/share/terminfo/t/ti735 5453OLD_FILES+=usr/share/terminfo/t/ti745 5454OLD_FILES+=usr/share/terminfo/t/ti800 5455OLD_FILES+=usr/share/terminfo/t/ti916 5456OLD_FILES+=usr/share/terminfo/t/ti916-132 5457OLD_FILES+=usr/share/terminfo/t/ti916-220-7 5458OLD_FILES+=usr/share/terminfo/t/ti916-220-8 5459OLD_FILES+=usr/share/terminfo/t/ti916-8 5460OLD_FILES+=usr/share/terminfo/t/ti916-8-132 5461OLD_FILES+=usr/share/terminfo/t/ti924 5462OLD_FILES+=usr/share/terminfo/t/ti924-8 5463OLD_FILES+=usr/share/terminfo/t/ti924-8w 5464OLD_FILES+=usr/share/terminfo/t/ti924w 5465OLD_FILES+=usr/share/terminfo/t/ti926 5466OLD_FILES+=usr/share/terminfo/t/ti926-8 5467OLD_FILES+=usr/share/terminfo/t/ti928 5468OLD_FILES+=usr/share/terminfo/t/ti928-8 5469OLD_FILES+=usr/share/terminfo/t/ti931 5470OLD_FILES+=usr/share/terminfo/t/ti_ansi 5471OLD_FILES+=usr/share/terminfo/t/tkterm 5472OLD_FILES+=usr/share/terminfo/t/tmux 5473OLD_FILES+=usr/share/terminfo/t/tmux-256color 5474OLD_FILES+=usr/share/terminfo/t/tmux-direct 5475OLD_FILES+=usr/share/terminfo/t/tn1200 5476OLD_FILES+=usr/share/terminfo/t/tn300 5477OLD_FILES+=usr/share/terminfo/t/trs16 5478OLD_FILES+=usr/share/terminfo/t/trs2 5479OLD_FILES+=usr/share/terminfo/t/trs80II 5480OLD_FILES+=usr/share/terminfo/t/trsII 5481OLD_FILES+=usr/share/terminfo/t/ts-1 5482OLD_FILES+=usr/share/terminfo/t/ts-1p 5483OLD_FILES+=usr/share/terminfo/t/ts1 5484OLD_FILES+=usr/share/terminfo/t/ts100 5485OLD_FILES+=usr/share/terminfo/t/ts100-ctxt 5486OLD_FILES+=usr/share/terminfo/t/ts100-sp 5487OLD_FILES+=usr/share/terminfo/t/ts1p 5488OLD_FILES+=usr/share/terminfo/t/tt 5489OLD_FILES+=usr/share/terminfo/t/tt505-22 5490OLD_FILES+=usr/share/terminfo/t/tt52 5491OLD_FILES+=usr/share/terminfo/t/tty33 5492OLD_FILES+=usr/share/terminfo/t/tty35 5493OLD_FILES+=usr/share/terminfo/t/tty37 5494OLD_FILES+=usr/share/terminfo/t/tty40 5495OLD_FILES+=usr/share/terminfo/t/tty43 5496OLD_FILES+=usr/share/terminfo/t/tty4420 5497OLD_FILES+=usr/share/terminfo/t/tty4424 5498OLD_FILES+=usr/share/terminfo/t/tty4424-1 5499OLD_FILES+=usr/share/terminfo/t/tty4424m 5500OLD_FILES+=usr/share/terminfo/t/tty4426 5501OLD_FILES+=usr/share/terminfo/t/tty5410 5502OLD_FILES+=usr/share/terminfo/t/tty5410-w 5503OLD_FILES+=usr/share/terminfo/t/tty5410v1 5504OLD_FILES+=usr/share/terminfo/t/tty5410v1-w 5505OLD_FILES+=usr/share/terminfo/t/tty5420 5506OLD_FILES+=usr/share/terminfo/t/tty5420+nl 5507OLD_FILES+=usr/share/terminfo/t/tty5420-nl 5508OLD_FILES+=usr/share/terminfo/t/tty5420-rv 5509OLD_FILES+=usr/share/terminfo/t/tty5420-rv-nl 5510OLD_FILES+=usr/share/terminfo/t/tty5420-w 5511OLD_FILES+=usr/share/terminfo/t/tty5420-w-nl 5512OLD_FILES+=usr/share/terminfo/t/tty5420-w-rv 5513OLD_FILES+=usr/share/terminfo/t/tty5420-w-rv-n 5514OLD_FILES+=usr/share/terminfo/t/tty5425 5515OLD_FILES+=usr/share/terminfo/t/tty5425-nl 5516OLD_FILES+=usr/share/terminfo/t/tty5425-w 5517OLD_FILES+=usr/share/terminfo/t/tty5620 5518OLD_FILES+=usr/share/terminfo/t/tty5620-1 5519OLD_FILES+=usr/share/terminfo/t/tty5620-24 5520OLD_FILES+=usr/share/terminfo/t/tty5620-34 5521OLD_FILES+=usr/share/terminfo/t/tty5620-s 5522OLD_FILES+=usr/share/terminfo/t/ttydmd 5523OLD_FILES+=usr/share/terminfo/t/tvi803 5524OLD_FILES+=usr/share/terminfo/t/tvi9065 5525OLD_FILES+=usr/share/terminfo/t/tvi910 5526OLD_FILES+=usr/share/terminfo/t/tvi910+ 5527OLD_FILES+=usr/share/terminfo/t/tvi912 5528OLD_FILES+=usr/share/terminfo/t/tvi912b 5529OLD_FILES+=usr/share/terminfo/t/tvi912b+2p 5530OLD_FILES+=usr/share/terminfo/t/tvi912b+dim 5531OLD_FILES+=usr/share/terminfo/t/tvi912b+mc 5532OLD_FILES+=usr/share/terminfo/t/tvi912b+printer 5533OLD_FILES+=usr/share/terminfo/t/tvi912b+vb 5534OLD_FILES+=usr/share/terminfo/t/tvi912b-2p 5535OLD_FILES+=usr/share/terminfo/t/tvi912b-2p-mc 5536OLD_FILES+=usr/share/terminfo/t/tvi912b-2p-p 5537OLD_FILES+=usr/share/terminfo/t/tvi912b-2p-unk 5538OLD_FILES+=usr/share/terminfo/t/tvi912b-mc 5539OLD_FILES+=usr/share/terminfo/t/tvi912b-mc-2p 5540OLD_FILES+=usr/share/terminfo/t/tvi912b-mc-vb 5541OLD_FILES+=usr/share/terminfo/t/tvi912b-p 5542OLD_FILES+=usr/share/terminfo/t/tvi912b-p-2p 5543OLD_FILES+=usr/share/terminfo/t/tvi912b-p-vb 5544OLD_FILES+=usr/share/terminfo/t/tvi912b-unk 5545OLD_FILES+=usr/share/terminfo/t/tvi912b-unk-2p 5546OLD_FILES+=usr/share/terminfo/t/tvi912b-unk-vb 5547OLD_FILES+=usr/share/terminfo/t/tvi912b-vb 5548OLD_FILES+=usr/share/terminfo/t/tvi912b-vb-mc 5549OLD_FILES+=usr/share/terminfo/t/tvi912b-vb-p 5550OLD_FILES+=usr/share/terminfo/t/tvi912b-vb-unk 5551OLD_FILES+=usr/share/terminfo/t/tvi912c 5552OLD_FILES+=usr/share/terminfo/t/tvi912c-2p 5553OLD_FILES+=usr/share/terminfo/t/tvi912c-2p-mc 5554OLD_FILES+=usr/share/terminfo/t/tvi912c-2p-p 5555OLD_FILES+=usr/share/terminfo/t/tvi912c-2p-unk 5556OLD_FILES+=usr/share/terminfo/t/tvi912c-mc 5557OLD_FILES+=usr/share/terminfo/t/tvi912c-mc-2p 5558OLD_FILES+=usr/share/terminfo/t/tvi912c-mc-vb 5559OLD_FILES+=usr/share/terminfo/t/tvi912c-p 5560OLD_FILES+=usr/share/terminfo/t/tvi912c-p-2p 5561OLD_FILES+=usr/share/terminfo/t/tvi912c-p-vb 5562OLD_FILES+=usr/share/terminfo/t/tvi912c-unk 5563OLD_FILES+=usr/share/terminfo/t/tvi912c-unk-2p 5564OLD_FILES+=usr/share/terminfo/t/tvi912c-unk-vb 5565OLD_FILES+=usr/share/terminfo/t/tvi912c-vb 5566OLD_FILES+=usr/share/terminfo/t/tvi912c-vb-mc 5567OLD_FILES+=usr/share/terminfo/t/tvi912c-vb-p 5568OLD_FILES+=usr/share/terminfo/t/tvi912c-vb-unk 5569OLD_FILES+=usr/share/terminfo/t/tvi912cc 5570OLD_FILES+=usr/share/terminfo/t/tvi914 5571OLD_FILES+=usr/share/terminfo/t/tvi920 5572OLD_FILES+=usr/share/terminfo/t/tvi920b 5573OLD_FILES+=usr/share/terminfo/t/tvi920b+fn 5574OLD_FILES+=usr/share/terminfo/t/tvi920b-2p 5575OLD_FILES+=usr/share/terminfo/t/tvi920b-2p-mc 5576OLD_FILES+=usr/share/terminfo/t/tvi920b-2p-p 5577OLD_FILES+=usr/share/terminfo/t/tvi920b-2p-unk 5578OLD_FILES+=usr/share/terminfo/t/tvi920b-mc 5579OLD_FILES+=usr/share/terminfo/t/tvi920b-mc-2p 5580OLD_FILES+=usr/share/terminfo/t/tvi920b-mc-vb 5581OLD_FILES+=usr/share/terminfo/t/tvi920b-p 5582OLD_FILES+=usr/share/terminfo/t/tvi920b-p-2p 5583OLD_FILES+=usr/share/terminfo/t/tvi920b-p-vb 5584OLD_FILES+=usr/share/terminfo/t/tvi920b-unk 5585OLD_FILES+=usr/share/terminfo/t/tvi920b-unk-2p 5586OLD_FILES+=usr/share/terminfo/t/tvi920b-unk-vb 5587OLD_FILES+=usr/share/terminfo/t/tvi920b-vb 5588OLD_FILES+=usr/share/terminfo/t/tvi920b-vb-mc 5589OLD_FILES+=usr/share/terminfo/t/tvi920b-vb-p 5590OLD_FILES+=usr/share/terminfo/t/tvi920b-vb-unk 5591OLD_FILES+=usr/share/terminfo/t/tvi920c 5592OLD_FILES+=usr/share/terminfo/t/tvi920c-2p 5593OLD_FILES+=usr/share/terminfo/t/tvi920c-2p-mc 5594OLD_FILES+=usr/share/terminfo/t/tvi920c-2p-p 5595OLD_FILES+=usr/share/terminfo/t/tvi920c-2p-unk 5596OLD_FILES+=usr/share/terminfo/t/tvi920c-mc 5597OLD_FILES+=usr/share/terminfo/t/tvi920c-mc-2p 5598OLD_FILES+=usr/share/terminfo/t/tvi920c-mc-vb 5599OLD_FILES+=usr/share/terminfo/t/tvi920c-p 5600OLD_FILES+=usr/share/terminfo/t/tvi920c-p-2p 5601OLD_FILES+=usr/share/terminfo/t/tvi920c-p-vb 5602OLD_FILES+=usr/share/terminfo/t/tvi920c-unk 5603OLD_FILES+=usr/share/terminfo/t/tvi920c-unk-2p 5604OLD_FILES+=usr/share/terminfo/t/tvi920c-unk-vb 5605OLD_FILES+=usr/share/terminfo/t/tvi920c-vb 5606OLD_FILES+=usr/share/terminfo/t/tvi920c-vb-mc 5607OLD_FILES+=usr/share/terminfo/t/tvi920c-vb-p 5608OLD_FILES+=usr/share/terminfo/t/tvi920c-vb-unk 5609OLD_FILES+=usr/share/terminfo/t/tvi921 5610OLD_FILES+=usr/share/terminfo/t/tvi924 5611OLD_FILES+=usr/share/terminfo/t/tvi925 5612OLD_FILES+=usr/share/terminfo/t/tvi925-hi 5613OLD_FILES+=usr/share/terminfo/t/tvi92B 5614OLD_FILES+=usr/share/terminfo/t/tvi92D 5615OLD_FILES+=usr/share/terminfo/t/tvi950 5616OLD_FILES+=usr/share/terminfo/t/tvi950-2p 5617OLD_FILES+=usr/share/terminfo/t/tvi950-4p 5618OLD_FILES+=usr/share/terminfo/t/tvi950-rv 5619OLD_FILES+=usr/share/terminfo/t/tvi950-rv-2p 5620OLD_FILES+=usr/share/terminfo/t/tvi950-rv-4p 5621OLD_FILES+=usr/share/terminfo/t/tvi955 5622OLD_FILES+=usr/share/terminfo/t/tvi955-hb 5623OLD_FILES+=usr/share/terminfo/t/tvi955-w 5624OLD_FILES+=usr/share/terminfo/t/tvi970 5625OLD_FILES+=usr/share/terminfo/t/tvi970-2p 5626OLD_FILES+=usr/share/terminfo/t/tvi970-vb 5627OLD_FILES+=usr/share/terminfo/t/tvipt 5628OLD_FILES+=usr/share/terminfo/t/tw100 5629OLD_FILES+=usr/share/terminfo/t/tw52 5630OLD_FILES+=usr/share/terminfo/t/tw52-color 5631OLD_FILES+=usr/share/terminfo/t/tw52-m 5632OLD_FILES+=usr/share/terminfo/t/tws-generic 5633OLD_FILES+=usr/share/terminfo/t/tws2102-sna 5634OLD_FILES+=usr/share/terminfo/t/tws2103 5635OLD_FILES+=usr/share/terminfo/t/tws2103-sna 5636OLD_DIRS+=usr/share/terminfo/t/ 5637OLD_FILES+=usr/share/terminfo/u/ultima2 5638OLD_FILES+=usr/share/terminfo/u/ultimaII 5639OLD_FILES+=usr/share/terminfo/u/uniterm 5640OLD_FILES+=usr/share/terminfo/u/uniterm49 5641OLD_FILES+=usr/share/terminfo/u/unixpc 5642OLD_FILES+=usr/share/terminfo/u/unknown 5643OLD_FILES+=usr/share/terminfo/u/uts30 5644OLD_FILES+=usr/share/terminfo/u/uwin 5645OLD_DIRS+=usr/share/terminfo/u/ 5646OLD_FILES+=usr/share/terminfo/v/v200-nam 5647OLD_FILES+=usr/share/terminfo/v/v320n 5648OLD_FILES+=usr/share/terminfo/v/v3220 5649OLD_FILES+=usr/share/terminfo/v/v5410 5650OLD_FILES+=usr/share/terminfo/v/vanilla 5651OLD_FILES+=usr/share/terminfo/v/vapple 5652OLD_FILES+=usr/share/terminfo/v/vc103 5653OLD_FILES+=usr/share/terminfo/v/vc203 5654OLD_FILES+=usr/share/terminfo/v/vc303 5655OLD_FILES+=usr/share/terminfo/v/vc303a 5656OLD_FILES+=usr/share/terminfo/v/vc403a 5657OLD_FILES+=usr/share/terminfo/v/vc404 5658OLD_FILES+=usr/share/terminfo/v/vc404-s 5659OLD_FILES+=usr/share/terminfo/v/vc414 5660OLD_FILES+=usr/share/terminfo/v/vc414h 5661OLD_FILES+=usr/share/terminfo/v/vc415 5662OLD_FILES+=usr/share/terminfo/v/venix 5663OLD_FILES+=usr/share/terminfo/v/versaterm 5664OLD_FILES+=usr/share/terminfo/v/vi200 5665OLD_FILES+=usr/share/terminfo/v/vi200-f 5666OLD_FILES+=usr/share/terminfo/v/vi200-rv 5667OLD_FILES+=usr/share/terminfo/v/vi300 5668OLD_FILES+=usr/share/terminfo/v/vi300-old 5669OLD_FILES+=usr/share/terminfo/v/vi50 5670OLD_FILES+=usr/share/terminfo/v/vi500 5671OLD_FILES+=usr/share/terminfo/v/vi50adm 5672OLD_FILES+=usr/share/terminfo/v/vi55 5673OLD_FILES+=usr/share/terminfo/v/vi550 5674OLD_FILES+=usr/share/terminfo/v/vi603 5675OLD_FILES+=usr/share/terminfo/v/viewdata 5676OLD_FILES+=usr/share/terminfo/v/viewdata-o 5677OLD_FILES+=usr/share/terminfo/v/viewdata-rv 5678OLD_FILES+=usr/share/terminfo/v/viewpoint 5679OLD_FILES+=usr/share/terminfo/v/viewpoint3a+ 5680OLD_FILES+=usr/share/terminfo/v/viewpoint60 5681OLD_FILES+=usr/share/terminfo/v/viewpoint90 5682OLD_FILES+=usr/share/terminfo/v/vip 5683OLD_FILES+=usr/share/terminfo/v/vip-H 5684OLD_FILES+=usr/share/terminfo/v/vip-Hw 5685OLD_FILES+=usr/share/terminfo/v/vip-w 5686OLD_FILES+=usr/share/terminfo/v/vip7800-H 5687OLD_FILES+=usr/share/terminfo/v/vip7800-Hw 5688OLD_FILES+=usr/share/terminfo/v/vip7800-w 5689OLD_FILES+=usr/share/terminfo/v/visa50 5690OLD_FILES+=usr/share/terminfo/v/visual603 5691OLD_FILES+=usr/share/terminfo/v/vitty 5692OLD_FILES+=usr/share/terminfo/v/vk100 5693OLD_FILES+=usr/share/terminfo/v/vp3a+ 5694OLD_FILES+=usr/share/terminfo/v/vp60 5695OLD_FILES+=usr/share/terminfo/v/vp90 5696OLD_FILES+=usr/share/terminfo/v/vremote 5697OLD_FILES+=usr/share/terminfo/v/vs100 5698OLD_FILES+=usr/share/terminfo/v/vs100-x10 5699OLD_FILES+=usr/share/terminfo/v/vsc 5700OLD_FILES+=usr/share/terminfo/v/vscode 5701OLD_FILES+=usr/share/terminfo/v/vscode-direct 5702OLD_FILES+=usr/share/terminfo/v/vt-61 5703OLD_FILES+=usr/share/terminfo/v/vt-utf8 5704OLD_FILES+=usr/share/terminfo/v/vt100 5705OLD_FILES+=usr/share/terminfo/v/vt100+ 5706OLD_FILES+=usr/share/terminfo/v/vt100+4bsd 5707OLD_FILES+=usr/share/terminfo/v/vt100+enq 5708OLD_FILES+=usr/share/terminfo/v/vt100+fnkeys 5709OLD_FILES+=usr/share/terminfo/v/vt100+keypad 5710OLD_FILES+=usr/share/terminfo/v/vt100+pfkeys 5711OLD_FILES+=usr/share/terminfo/v/vt100-am 5712OLD_FILES+=usr/share/terminfo/v/vt100-bm 5713OLD_FILES+=usr/share/terminfo/v/vt100-bm-o 5714OLD_FILES+=usr/share/terminfo/v/vt100-bot-s 5715OLD_FILES+=usr/share/terminfo/v/vt100-nam 5716OLD_FILES+=usr/share/terminfo/v/vt100-nam-w 5717OLD_FILES+=usr/share/terminfo/v/vt100-nav 5718OLD_FILES+=usr/share/terminfo/v/vt100-nav-w 5719OLD_FILES+=usr/share/terminfo/v/vt100-putty 5720OLD_FILES+=usr/share/terminfo/v/vt100-s 5721OLD_FILES+=usr/share/terminfo/v/vt100-s-bot 5722OLD_FILES+=usr/share/terminfo/v/vt100-s-top 5723OLD_FILES+=usr/share/terminfo/v/vt100-top-s 5724OLD_FILES+=usr/share/terminfo/v/vt100-vb 5725OLD_FILES+=usr/share/terminfo/v/vt100-w 5726OLD_FILES+=usr/share/terminfo/v/vt100-w-am 5727OLD_FILES+=usr/share/terminfo/v/vt100-w-nam 5728OLD_FILES+=usr/share/terminfo/v/vt100-w-nav 5729OLD_FILES+=usr/share/terminfo/v/vt100nam 5730OLD_FILES+=usr/share/terminfo/v/vt102 5731OLD_FILES+=usr/share/terminfo/v/vt102+enq 5732OLD_FILES+=usr/share/terminfo/v/vt102-nsgr 5733OLD_FILES+=usr/share/terminfo/v/vt102-w 5734OLD_FILES+=usr/share/terminfo/v/vt125 5735OLD_FILES+=usr/share/terminfo/v/vt131 5736OLD_FILES+=usr/share/terminfo/v/vt132 5737OLD_FILES+=usr/share/terminfo/v/vt200 5738OLD_FILES+=usr/share/terminfo/v/vt200-8 5739OLD_FILES+=usr/share/terminfo/v/vt200-8bit 5740OLD_FILES+=usr/share/terminfo/v/vt200-js 5741OLD_FILES+=usr/share/terminfo/v/vt200-old 5742OLD_FILES+=usr/share/terminfo/v/vt200-w 5743OLD_FILES+=usr/share/terminfo/v/vt220 5744OLD_FILES+=usr/share/terminfo/v/vt220+cvis 5745OLD_FILES+=usr/share/terminfo/v/vt220+cvis8 5746OLD_FILES+=usr/share/terminfo/v/vt220+keypad 5747OLD_FILES+=usr/share/terminfo/v/vt220+pcedit 5748OLD_FILES+=usr/share/terminfo/v/vt220+vtedit 5749OLD_FILES+=usr/share/terminfo/v/vt220-8 5750OLD_FILES+=usr/share/terminfo/v/vt220-8bit 5751OLD_FILES+=usr/share/terminfo/v/vt220-base 5752OLD_FILES+=usr/share/terminfo/v/vt220-js 5753OLD_FILES+=usr/share/terminfo/v/vt220-nam 5754OLD_FILES+=usr/share/terminfo/v/vt220-old 5755OLD_FILES+=usr/share/terminfo/v/vt220-w 5756OLD_FILES+=usr/share/terminfo/v/vt220d 5757OLD_FILES+=usr/share/terminfo/v/vt300 5758OLD_FILES+=usr/share/terminfo/v/vt300-nam 5759OLD_FILES+=usr/share/terminfo/v/vt300-w 5760OLD_FILES+=usr/share/terminfo/v/vt300-w-nam 5761OLD_FILES+=usr/share/terminfo/v/vt320 5762OLD_FILES+=usr/share/terminfo/v/vt320-k3 5763OLD_FILES+=usr/share/terminfo/v/vt320-k311 5764OLD_FILES+=usr/share/terminfo/v/vt320-nam 5765OLD_FILES+=usr/share/terminfo/v/vt320-w 5766OLD_FILES+=usr/share/terminfo/v/vt320-w-nam 5767OLD_FILES+=usr/share/terminfo/v/vt320nam 5768OLD_FILES+=usr/share/terminfo/v/vt330 5769OLD_FILES+=usr/share/terminfo/v/vt340 5770OLD_FILES+=usr/share/terminfo/v/vt400 5771OLD_FILES+=usr/share/terminfo/v/vt400-24 5772OLD_FILES+=usr/share/terminfo/v/vt420 5773OLD_FILES+=usr/share/terminfo/v/vt420+lrmm 5774OLD_FILES+=usr/share/terminfo/v/vt420f 5775OLD_FILES+=usr/share/terminfo/v/vt420pc 5776OLD_FILES+=usr/share/terminfo/v/vt420pcdos 5777OLD_FILES+=usr/share/terminfo/v/vt50 5778OLD_FILES+=usr/share/terminfo/v/vt50h 5779OLD_FILES+=usr/share/terminfo/v/vt510 5780OLD_FILES+=usr/share/terminfo/v/vt510pc 5781OLD_FILES+=usr/share/terminfo/v/vt510pcdos 5782OLD_FILES+=usr/share/terminfo/v/vt52 5783OLD_FILES+=usr/share/terminfo/v/vt52+keypad 5784OLD_FILES+=usr/share/terminfo/v/vt52-basic 5785OLD_FILES+=usr/share/terminfo/v/vt520 5786OLD_FILES+=usr/share/terminfo/v/vt520ansi 5787OLD_FILES+=usr/share/terminfo/v/vt525 5788OLD_FILES+=usr/share/terminfo/v/vt61 5789OLD_FILES+=usr/share/terminfo/v/vt61.5 5790OLD_FILES+=usr/share/terminfo/v/vte 5791OLD_FILES+=usr/share/terminfo/v/vte+pcfkeys 5792OLD_FILES+=usr/share/terminfo/v/vte-2007 5793OLD_FILES+=usr/share/terminfo/v/vte-2008 5794OLD_FILES+=usr/share/terminfo/v/vte-2012 5795OLD_FILES+=usr/share/terminfo/v/vte-2014 5796OLD_FILES+=usr/share/terminfo/v/vte-2017 5797OLD_FILES+=usr/share/terminfo/v/vte-2018 5798OLD_FILES+=usr/share/terminfo/v/vte-256color 5799OLD_FILES+=usr/share/terminfo/v/vte-direct 5800OLD_FILES+=usr/share/terminfo/v/vtnt 5801OLD_FILES+=usr/share/terminfo/v/vv100 5802OLD_FILES+=usr/share/terminfo/v/vwmterm 5803OLD_DIRS+=usr/share/terminfo/v/ 5804OLD_FILES+=usr/share/terminfo/w/wren 5805OLD_FILES+=usr/share/terminfo/w/wrenw 5806OLD_FILES+=usr/share/terminfo/w/wsiris 5807OLD_FILES+=usr/share/terminfo/w/wsvt25 5808OLD_FILES+=usr/share/terminfo/w/wsvt25m 5809OLD_FILES+=usr/share/terminfo/w/wy-75ap 5810OLD_FILES+=usr/share/terminfo/w/wy-99fgt 5811OLD_FILES+=usr/share/terminfo/w/wy-99fgta 5812OLD_FILES+=usr/share/terminfo/w/wy100 5813OLD_FILES+=usr/share/terminfo/w/wy100q 5814OLD_FILES+=usr/share/terminfo/w/wy120 5815OLD_FILES+=usr/share/terminfo/w/wy120-25 5816OLD_FILES+=usr/share/terminfo/w/wy120-25-w 5817OLD_FILES+=usr/share/terminfo/w/wy120-vb 5818OLD_FILES+=usr/share/terminfo/w/wy120-w 5819OLD_FILES+=usr/share/terminfo/w/wy120-w-vb 5820OLD_FILES+=usr/share/terminfo/w/wy120-wvb 5821OLD_FILES+=usr/share/terminfo/w/wy150 5822OLD_FILES+=usr/share/terminfo/w/wy150-25 5823OLD_FILES+=usr/share/terminfo/w/wy150-25-w 5824OLD_FILES+=usr/share/terminfo/w/wy150-vb 5825OLD_FILES+=usr/share/terminfo/w/wy150-w 5826OLD_FILES+=usr/share/terminfo/w/wy150-w-vb 5827OLD_FILES+=usr/share/terminfo/w/wy160 5828OLD_FILES+=usr/share/terminfo/w/wy160-25 5829OLD_FILES+=usr/share/terminfo/w/wy160-25-w 5830OLD_FILES+=usr/share/terminfo/w/wy160-42 5831OLD_FILES+=usr/share/terminfo/w/wy160-42-w 5832OLD_FILES+=usr/share/terminfo/w/wy160-43 5833OLD_FILES+=usr/share/terminfo/w/wy160-43-w 5834OLD_FILES+=usr/share/terminfo/w/wy160-tek 5835OLD_FILES+=usr/share/terminfo/w/wy160-vb 5836OLD_FILES+=usr/share/terminfo/w/wy160-w 5837OLD_FILES+=usr/share/terminfo/w/wy160-w-vb 5838OLD_FILES+=usr/share/terminfo/w/wy160-wvb 5839OLD_FILES+=usr/share/terminfo/w/wy185 5840OLD_FILES+=usr/share/terminfo/w/wy185-24 5841OLD_FILES+=usr/share/terminfo/w/wy185-vb 5842OLD_FILES+=usr/share/terminfo/w/wy185-w 5843OLD_FILES+=usr/share/terminfo/w/wy185-wvb 5844OLD_FILES+=usr/share/terminfo/w/wy30 5845OLD_FILES+=usr/share/terminfo/w/wy30-mc 5846OLD_FILES+=usr/share/terminfo/w/wy30-vb 5847OLD_FILES+=usr/share/terminfo/w/wy325 5848OLD_FILES+=usr/share/terminfo/w/wy325-25 5849OLD_FILES+=usr/share/terminfo/w/wy325-25w 5850OLD_FILES+=usr/share/terminfo/w/wy325-42 5851OLD_FILES+=usr/share/terminfo/w/wy325-42w 5852OLD_FILES+=usr/share/terminfo/w/wy325-42w-vb 5853OLD_FILES+=usr/share/terminfo/w/wy325-42wvb 5854OLD_FILES+=usr/share/terminfo/w/wy325-43 5855OLD_FILES+=usr/share/terminfo/w/wy325-43w 5856OLD_FILES+=usr/share/terminfo/w/wy325-43w-vb 5857OLD_FILES+=usr/share/terminfo/w/wy325-43wvb 5858OLD_FILES+=usr/share/terminfo/w/wy325-80 5859OLD_FILES+=usr/share/terminfo/w/wy325-vb 5860OLD_FILES+=usr/share/terminfo/w/wy325-w 5861OLD_FILES+=usr/share/terminfo/w/wy325-w-vb 5862OLD_FILES+=usr/share/terminfo/w/wy325-wvb 5863OLD_FILES+=usr/share/terminfo/w/wy325w-24 5864OLD_FILES+=usr/share/terminfo/w/wy350 5865OLD_FILES+=usr/share/terminfo/w/wy350-vb 5866OLD_FILES+=usr/share/terminfo/w/wy350-w 5867OLD_FILES+=usr/share/terminfo/w/wy350-wvb 5868OLD_FILES+=usr/share/terminfo/w/wy370 5869OLD_FILES+=usr/share/terminfo/w/wy370-101k 5870OLD_FILES+=usr/share/terminfo/w/wy370-105k 5871OLD_FILES+=usr/share/terminfo/w/wy370-EPC 5872OLD_FILES+=usr/share/terminfo/w/wy370-nk 5873OLD_FILES+=usr/share/terminfo/w/wy370-rv 5874OLD_FILES+=usr/share/terminfo/w/wy370-tek 5875OLD_FILES+=usr/share/terminfo/w/wy370-vb 5876OLD_FILES+=usr/share/terminfo/w/wy370-w 5877OLD_FILES+=usr/share/terminfo/w/wy370-wvb 5878OLD_FILES+=usr/share/terminfo/w/wy50 5879OLD_FILES+=usr/share/terminfo/w/wy50-mc 5880OLD_FILES+=usr/share/terminfo/w/wy50-vb 5881OLD_FILES+=usr/share/terminfo/w/wy50-w 5882OLD_FILES+=usr/share/terminfo/w/wy50-wvb 5883OLD_FILES+=usr/share/terminfo/w/wy520 5884OLD_FILES+=usr/share/terminfo/w/wy520-24 5885OLD_FILES+=usr/share/terminfo/w/wy520-36 5886OLD_FILES+=usr/share/terminfo/w/wy520-36pc 5887OLD_FILES+=usr/share/terminfo/w/wy520-36w 5888OLD_FILES+=usr/share/terminfo/w/wy520-36wpc 5889OLD_FILES+=usr/share/terminfo/w/wy520-48 5890OLD_FILES+=usr/share/terminfo/w/wy520-48pc 5891OLD_FILES+=usr/share/terminfo/w/wy520-48w 5892OLD_FILES+=usr/share/terminfo/w/wy520-48wpc 5893OLD_FILES+=usr/share/terminfo/w/wy520-epc 5894OLD_FILES+=usr/share/terminfo/w/wy520-epc-24 5895OLD_FILES+=usr/share/terminfo/w/wy520-epc-vb 5896OLD_FILES+=usr/share/terminfo/w/wy520-epc-w 5897OLD_FILES+=usr/share/terminfo/w/wy520-epc-wvb 5898OLD_FILES+=usr/share/terminfo/w/wy520-vb 5899OLD_FILES+=usr/share/terminfo/w/wy520-w 5900OLD_FILES+=usr/share/terminfo/w/wy520-wvb 5901OLD_FILES+=usr/share/terminfo/w/wy60 5902OLD_FILES+=usr/share/terminfo/w/wy60-25 5903OLD_FILES+=usr/share/terminfo/w/wy60-25-w 5904OLD_FILES+=usr/share/terminfo/w/wy60-316X 5905OLD_FILES+=usr/share/terminfo/w/wy60-42 5906OLD_FILES+=usr/share/terminfo/w/wy60-42-w 5907OLD_FILES+=usr/share/terminfo/w/wy60-43 5908OLD_FILES+=usr/share/terminfo/w/wy60-43-w 5909OLD_FILES+=usr/share/terminfo/w/wy60-AT 5910OLD_FILES+=usr/share/terminfo/w/wy60-PC 5911OLD_FILES+=usr/share/terminfo/w/wy60-vb 5912OLD_FILES+=usr/share/terminfo/w/wy60-w 5913OLD_FILES+=usr/share/terminfo/w/wy60-w-vb 5914OLD_FILES+=usr/share/terminfo/w/wy60-wvb 5915OLD_FILES+=usr/share/terminfo/w/wy75 5916OLD_FILES+=usr/share/terminfo/w/wy75-mc 5917OLD_FILES+=usr/share/terminfo/w/wy75-vb 5918OLD_FILES+=usr/share/terminfo/w/wy75-w 5919OLD_FILES+=usr/share/terminfo/w/wy75-wvb 5920OLD_FILES+=usr/share/terminfo/w/wy75ap 5921OLD_FILES+=usr/share/terminfo/w/wy85 5922OLD_FILES+=usr/share/terminfo/w/wy85-8bit 5923OLD_FILES+=usr/share/terminfo/w/wy85-vb 5924OLD_FILES+=usr/share/terminfo/w/wy85-w 5925OLD_FILES+=usr/share/terminfo/w/wy85-wvb 5926OLD_FILES+=usr/share/terminfo/w/wy99-ansi 5927OLD_FILES+=usr/share/terminfo/w/wy99a-ansi 5928OLD_FILES+=usr/share/terminfo/w/wy99f 5929OLD_FILES+=usr/share/terminfo/w/wy99fa 5930OLD_FILES+=usr/share/terminfo/w/wy99fgt 5931OLD_FILES+=usr/share/terminfo/w/wy99fgta 5932OLD_FILES+=usr/share/terminfo/w/wy99gt 5933OLD_FILES+=usr/share/terminfo/w/wy99gt-25 5934OLD_FILES+=usr/share/terminfo/w/wy99gt-25-w 5935OLD_FILES+=usr/share/terminfo/w/wy99gt-tek 5936OLD_FILES+=usr/share/terminfo/w/wy99gt-vb 5937OLD_FILES+=usr/share/terminfo/w/wy99gt-w 5938OLD_FILES+=usr/share/terminfo/w/wy99gt-w-vb 5939OLD_FILES+=usr/share/terminfo/w/wy99gt-wvb 5940OLD_FILES+=usr/share/terminfo/w/wyse-325 5941OLD_FILES+=usr/share/terminfo/w/wyse-75ap 5942OLD_FILES+=usr/share/terminfo/w/wyse-vp 5943OLD_FILES+=usr/share/terminfo/w/wyse120 5944OLD_FILES+=usr/share/terminfo/w/wyse120-25 5945OLD_FILES+=usr/share/terminfo/w/wyse120-25-w 5946OLD_FILES+=usr/share/terminfo/w/wyse120-vb 5947OLD_FILES+=usr/share/terminfo/w/wyse120-w 5948OLD_FILES+=usr/share/terminfo/w/wyse120-wvb 5949OLD_FILES+=usr/share/terminfo/w/wyse150 5950OLD_FILES+=usr/share/terminfo/w/wyse150-25 5951OLD_FILES+=usr/share/terminfo/w/wyse150-25-w 5952OLD_FILES+=usr/share/terminfo/w/wyse150-vb 5953OLD_FILES+=usr/share/terminfo/w/wyse150-w 5954OLD_FILES+=usr/share/terminfo/w/wyse150-w-vb 5955OLD_FILES+=usr/share/terminfo/w/wyse160 5956OLD_FILES+=usr/share/terminfo/w/wyse160-25 5957OLD_FILES+=usr/share/terminfo/w/wyse160-25-w 5958OLD_FILES+=usr/share/terminfo/w/wyse160-42 5959OLD_FILES+=usr/share/terminfo/w/wyse160-42-w 5960OLD_FILES+=usr/share/terminfo/w/wyse160-43 5961OLD_FILES+=usr/share/terminfo/w/wyse160-43-w 5962OLD_FILES+=usr/share/terminfo/w/wyse160-vb 5963OLD_FILES+=usr/share/terminfo/w/wyse160-w 5964OLD_FILES+=usr/share/terminfo/w/wyse160-wvb 5965OLD_FILES+=usr/share/terminfo/w/wyse185 5966OLD_FILES+=usr/share/terminfo/w/wyse185-24 5967OLD_FILES+=usr/share/terminfo/w/wyse185-vb 5968OLD_FILES+=usr/share/terminfo/w/wyse185-w 5969OLD_FILES+=usr/share/terminfo/w/wyse185-wvb 5970OLD_FILES+=usr/share/terminfo/w/wyse30 5971OLD_FILES+=usr/share/terminfo/w/wyse30-mc 5972OLD_FILES+=usr/share/terminfo/w/wyse30-vb 5973OLD_FILES+=usr/share/terminfo/w/wyse325 5974OLD_FILES+=usr/share/terminfo/w/wyse325-25 5975OLD_FILES+=usr/share/terminfo/w/wyse325-25w 5976OLD_FILES+=usr/share/terminfo/w/wyse325-42 5977OLD_FILES+=usr/share/terminfo/w/wyse325-42w 5978OLD_FILES+=usr/share/terminfo/w/wyse325-43 5979OLD_FILES+=usr/share/terminfo/w/wyse325-43w 5980OLD_FILES+=usr/share/terminfo/w/wyse325-vb 5981OLD_FILES+=usr/share/terminfo/w/wyse325-w 5982OLD_FILES+=usr/share/terminfo/w/wyse325-wvb 5983OLD_FILES+=usr/share/terminfo/w/wyse350 5984OLD_FILES+=usr/share/terminfo/w/wyse350-vb 5985OLD_FILES+=usr/share/terminfo/w/wyse350-w 5986OLD_FILES+=usr/share/terminfo/w/wyse350-wvb 5987OLD_FILES+=usr/share/terminfo/w/wyse370 5988OLD_FILES+=usr/share/terminfo/w/wyse50 5989OLD_FILES+=usr/share/terminfo/w/wyse50-mc 5990OLD_FILES+=usr/share/terminfo/w/wyse50-vb 5991OLD_FILES+=usr/share/terminfo/w/wyse50-w 5992OLD_FILES+=usr/share/terminfo/w/wyse50-wvb 5993OLD_FILES+=usr/share/terminfo/w/wyse520 5994OLD_FILES+=usr/share/terminfo/w/wyse520-24 5995OLD_FILES+=usr/share/terminfo/w/wyse520-36 5996OLD_FILES+=usr/share/terminfo/w/wyse520-36pc 5997OLD_FILES+=usr/share/terminfo/w/wyse520-36w 5998OLD_FILES+=usr/share/terminfo/w/wyse520-36wpc 5999OLD_FILES+=usr/share/terminfo/w/wyse520-48 6000OLD_FILES+=usr/share/terminfo/w/wyse520-48pc 6001OLD_FILES+=usr/share/terminfo/w/wyse520-48w 6002OLD_FILES+=usr/share/terminfo/w/wyse520-48wpc 6003OLD_FILES+=usr/share/terminfo/w/wyse520-epc 6004OLD_FILES+=usr/share/terminfo/w/wyse520-epc-w 6005OLD_FILES+=usr/share/terminfo/w/wyse520-p-wvb 6006OLD_FILES+=usr/share/terminfo/w/wyse520-pc-24 6007OLD_FILES+=usr/share/terminfo/w/wyse520-pc-vb 6008OLD_FILES+=usr/share/terminfo/w/wyse520-vb 6009OLD_FILES+=usr/share/terminfo/w/wyse520-w 6010OLD_FILES+=usr/share/terminfo/w/wyse520-wvb 6011OLD_FILES+=usr/share/terminfo/w/wyse60 6012OLD_FILES+=usr/share/terminfo/w/wyse60-25 6013OLD_FILES+=usr/share/terminfo/w/wyse60-25-w 6014OLD_FILES+=usr/share/terminfo/w/wyse60-316X 6015OLD_FILES+=usr/share/terminfo/w/wyse60-42 6016OLD_FILES+=usr/share/terminfo/w/wyse60-42-w 6017OLD_FILES+=usr/share/terminfo/w/wyse60-43 6018OLD_FILES+=usr/share/terminfo/w/wyse60-43-w 6019OLD_FILES+=usr/share/terminfo/w/wyse60-AT 6020OLD_FILES+=usr/share/terminfo/w/wyse60-PC 6021OLD_FILES+=usr/share/terminfo/w/wyse60-vb 6022OLD_FILES+=usr/share/terminfo/w/wyse60-w 6023OLD_FILES+=usr/share/terminfo/w/wyse60-wvb 6024OLD_FILES+=usr/share/terminfo/w/wyse75 6025OLD_FILES+=usr/share/terminfo/w/wyse75-mc 6026OLD_FILES+=usr/share/terminfo/w/wyse75-vb 6027OLD_FILES+=usr/share/terminfo/w/wyse75-w 6028OLD_FILES+=usr/share/terminfo/w/wyse75-wvb 6029OLD_FILES+=usr/share/terminfo/w/wyse75ap 6030OLD_FILES+=usr/share/terminfo/w/wyse85 6031OLD_FILES+=usr/share/terminfo/w/wyse85-8bit 6032OLD_FILES+=usr/share/terminfo/w/wyse85-vb 6033OLD_FILES+=usr/share/terminfo/w/wyse85-w 6034OLD_FILES+=usr/share/terminfo/w/wyse85-wvb 6035OLD_FILES+=usr/share/terminfo/w/wyse99gt 6036OLD_FILES+=usr/share/terminfo/w/wyse99gt-25 6037OLD_FILES+=usr/share/terminfo/w/wyse99gt-25-w 6038OLD_FILES+=usr/share/terminfo/w/wyse99gt-vb 6039OLD_FILES+=usr/share/terminfo/w/wyse99gt-w 6040OLD_FILES+=usr/share/terminfo/w/wyse99gt-wvb 6041OLD_DIRS+=usr/share/terminfo/w/ 6042OLD_FILES+=usr/share/terminfo/x/x10term 6043OLD_FILES+=usr/share/terminfo/x/x1700 6044OLD_FILES+=usr/share/terminfo/x/x1700-lm 6045OLD_FILES+=usr/share/terminfo/x/x1720 6046OLD_FILES+=usr/share/terminfo/x/x1750 6047OLD_FILES+=usr/share/terminfo/x/x68k 6048OLD_FILES+=usr/share/terminfo/x/x68k-ite 6049OLD_FILES+=usr/share/terminfo/x/x820 6050OLD_FILES+=usr/share/terminfo/x/xdku 6051OLD_FILES+=usr/share/terminfo/x/xenix 6052OLD_FILES+=usr/share/terminfo/x/xerox 6053OLD_FILES+=usr/share/terminfo/x/xerox-lm 6054OLD_FILES+=usr/share/terminfo/x/xerox1720 6055OLD_FILES+=usr/share/terminfo/x/xerox820 6056OLD_FILES+=usr/share/terminfo/x/xfce 6057OLD_FILES+=usr/share/terminfo/x/xiterm 6058OLD_FILES+=usr/share/terminfo/x/xl83 6059OLD_FILES+=usr/share/terminfo/x/xnuppc 6060OLD_FILES+=usr/share/terminfo/x/xnuppc+100x37 6061OLD_FILES+=usr/share/terminfo/x/xnuppc+112x37 6062OLD_FILES+=usr/share/terminfo/x/xnuppc+128x40 6063OLD_FILES+=usr/share/terminfo/x/xnuppc+128x48 6064OLD_FILES+=usr/share/terminfo/x/xnuppc+144x48 6065OLD_FILES+=usr/share/terminfo/x/xnuppc+160x64 6066OLD_FILES+=usr/share/terminfo/x/xnuppc+200x64 6067OLD_FILES+=usr/share/terminfo/x/xnuppc+200x75 6068OLD_FILES+=usr/share/terminfo/x/xnuppc+256x96 6069OLD_FILES+=usr/share/terminfo/x/xnuppc+80x25 6070OLD_FILES+=usr/share/terminfo/x/xnuppc+80x30 6071OLD_FILES+=usr/share/terminfo/x/xnuppc+90x30 6072OLD_FILES+=usr/share/terminfo/x/xnuppc+b 6073OLD_FILES+=usr/share/terminfo/x/xnuppc+basic 6074OLD_FILES+=usr/share/terminfo/x/xnuppc+c 6075OLD_FILES+=usr/share/terminfo/x/xnuppc+f 6076OLD_FILES+=usr/share/terminfo/x/xnuppc+f2 6077OLD_FILES+=usr/share/terminfo/x/xnuppc-100x37 6078OLD_FILES+=usr/share/terminfo/x/xnuppc-100x37-m 6079OLD_FILES+=usr/share/terminfo/x/xnuppc-112x37 6080OLD_FILES+=usr/share/terminfo/x/xnuppc-112x37-m 6081OLD_FILES+=usr/share/terminfo/x/xnuppc-128x40 6082OLD_FILES+=usr/share/terminfo/x/xnuppc-128x40-m 6083OLD_FILES+=usr/share/terminfo/x/xnuppc-128x48 6084OLD_FILES+=usr/share/terminfo/x/xnuppc-128x48-m 6085OLD_FILES+=usr/share/terminfo/x/xnuppc-144x48 6086OLD_FILES+=usr/share/terminfo/x/xnuppc-144x48-m 6087OLD_FILES+=usr/share/terminfo/x/xnuppc-160x64 6088OLD_FILES+=usr/share/terminfo/x/xnuppc-160x64-m 6089OLD_FILES+=usr/share/terminfo/x/xnuppc-200x64 6090OLD_FILES+=usr/share/terminfo/x/xnuppc-200x64-m 6091OLD_FILES+=usr/share/terminfo/x/xnuppc-200x75 6092OLD_FILES+=usr/share/terminfo/x/xnuppc-200x75-m 6093OLD_FILES+=usr/share/terminfo/x/xnuppc-256x96 6094OLD_FILES+=usr/share/terminfo/x/xnuppc-256x96-m 6095OLD_FILES+=usr/share/terminfo/x/xnuppc-80x25 6096OLD_FILES+=usr/share/terminfo/x/xnuppc-80x25-m 6097OLD_FILES+=usr/share/terminfo/x/xnuppc-80x30 6098OLD_FILES+=usr/share/terminfo/x/xnuppc-80x30-m 6099OLD_FILES+=usr/share/terminfo/x/xnuppc-90x30 6100OLD_FILES+=usr/share/terminfo/x/xnuppc-90x30-m 6101OLD_FILES+=usr/share/terminfo/x/xnuppc-b 6102OLD_FILES+=usr/share/terminfo/x/xnuppc-f 6103OLD_FILES+=usr/share/terminfo/x/xnuppc-f2 6104OLD_FILES+=usr/share/terminfo/x/xnuppc-m 6105OLD_FILES+=usr/share/terminfo/x/xnuppc-m-b 6106OLD_FILES+=usr/share/terminfo/x/xnuppc-m-f 6107OLD_FILES+=usr/share/terminfo/x/xnuppc-m-f2 6108OLD_FILES+=usr/share/terminfo/x/xtalk 6109OLD_FILES+=usr/share/terminfo/x/xterm 6110OLD_FILES+=usr/share/terminfo/x/xterm+256color 6111OLD_FILES+=usr/share/terminfo/x/xterm+256color2 6112OLD_FILES+=usr/share/terminfo/x/xterm+256setaf 6113OLD_FILES+=usr/share/terminfo/x/xterm+88color 6114OLD_FILES+=usr/share/terminfo/x/xterm+88color2 6115OLD_FILES+=usr/share/terminfo/x/xterm+alt+title 6116OLD_FILES+=usr/share/terminfo/x/xterm+alt1049 6117OLD_FILES+=usr/share/terminfo/x/xterm+app 6118OLD_FILES+=usr/share/terminfo/x/xterm+direct 6119OLD_FILES+=usr/share/terminfo/x/xterm+direct16 6120OLD_FILES+=usr/share/terminfo/x/xterm+direct2 6121OLD_FILES+=usr/share/terminfo/x/xterm+direct256 6122OLD_FILES+=usr/share/terminfo/x/xterm+edit 6123OLD_FILES+=usr/share/terminfo/x/xterm+indirect 6124OLD_FILES+=usr/share/terminfo/x/xterm+kbs 6125OLD_FILES+=usr/share/terminfo/x/xterm+keypad 6126OLD_FILES+=usr/share/terminfo/x/xterm+meta 6127OLD_FILES+=usr/share/terminfo/x/xterm+noalt 6128OLD_FILES+=usr/share/terminfo/x/xterm+noapp 6129OLD_FILES+=usr/share/terminfo/x/xterm+nofkeys 6130OLD_FILES+=usr/share/terminfo/x/xterm+osc104 6131OLD_FILES+=usr/share/terminfo/x/xterm+pc+edit 6132OLD_FILES+=usr/share/terminfo/x/xterm+pcc0 6133OLD_FILES+=usr/share/terminfo/x/xterm+pcc1 6134OLD_FILES+=usr/share/terminfo/x/xterm+pcc2 6135OLD_FILES+=usr/share/terminfo/x/xterm+pcc3 6136OLD_FILES+=usr/share/terminfo/x/xterm+pce2 6137OLD_FILES+=usr/share/terminfo/x/xterm+pcf0 6138OLD_FILES+=usr/share/terminfo/x/xterm+pcf2 6139OLD_FILES+=usr/share/terminfo/x/xterm+pcfkeys 6140OLD_FILES+=usr/share/terminfo/x/xterm+r6f2 6141OLD_FILES+=usr/share/terminfo/x/xterm+sl 6142OLD_FILES+=usr/share/terminfo/x/xterm+sl-twm 6143OLD_FILES+=usr/share/terminfo/x/xterm+sm+1002 6144OLD_FILES+=usr/share/terminfo/x/xterm+sm+1003 6145OLD_FILES+=usr/share/terminfo/x/xterm+sm+1005 6146OLD_FILES+=usr/share/terminfo/x/xterm+sm+1006 6147OLD_FILES+=usr/share/terminfo/x/xterm+titlestack 6148OLD_FILES+=usr/share/terminfo/x/xterm+tmux 6149OLD_FILES+=usr/share/terminfo/x/xterm+vt+edit 6150OLD_FILES+=usr/share/terminfo/x/xterm+x10mouse 6151OLD_FILES+=usr/share/terminfo/x/xterm+x11hilite 6152OLD_FILES+=usr/share/terminfo/x/xterm+x11mouse 6153OLD_FILES+=usr/share/terminfo/x/xterm-1002 6154OLD_FILES+=usr/share/terminfo/x/xterm-1003 6155OLD_FILES+=usr/share/terminfo/x/xterm-1005 6156OLD_FILES+=usr/share/terminfo/x/xterm-1006 6157OLD_FILES+=usr/share/terminfo/x/xterm-16color 6158OLD_FILES+=usr/share/terminfo/x/xterm-24 6159OLD_FILES+=usr/share/terminfo/x/xterm-256color 6160OLD_FILES+=usr/share/terminfo/x/xterm-88color 6161OLD_FILES+=usr/share/terminfo/x/xterm-8bit 6162OLD_FILES+=usr/share/terminfo/x/xterm-basic 6163OLD_FILES+=usr/share/terminfo/x/xterm-bold 6164OLD_FILES+=usr/share/terminfo/x/xterm-color 6165OLD_FILES+=usr/share/terminfo/x/xterm-direct 6166OLD_FILES+=usr/share/terminfo/x/xterm-direct16 6167OLD_FILES+=usr/share/terminfo/x/xterm-direct2 6168OLD_FILES+=usr/share/terminfo/x/xterm-direct256 6169OLD_FILES+=usr/share/terminfo/x/xterm-hp 6170OLD_FILES+=usr/share/terminfo/x/xterm-mono 6171OLD_FILES+=usr/share/terminfo/x/xterm-new 6172OLD_FILES+=usr/share/terminfo/x/xterm-nic 6173OLD_FILES+=usr/share/terminfo/x/xterm-noapp 6174OLD_FILES+=usr/share/terminfo/x/xterm-old 6175OLD_FILES+=usr/share/terminfo/x/xterm-pcolor 6176OLD_FILES+=usr/share/terminfo/x/xterm-r5 6177OLD_FILES+=usr/share/terminfo/x/xterm-r6 6178OLD_FILES+=usr/share/terminfo/x/xterm-sco 6179OLD_FILES+=usr/share/terminfo/x/xterm-sun 6180OLD_FILES+=usr/share/terminfo/x/xterm-utf8 6181OLD_FILES+=usr/share/terminfo/x/xterm-vt220 6182OLD_FILES+=usr/share/terminfo/x/xterm-vt52 6183OLD_FILES+=usr/share/terminfo/x/xterm-x10mouse 6184OLD_FILES+=usr/share/terminfo/x/xterm-x11hilite 6185OLD_FILES+=usr/share/terminfo/x/xterm-x11mouse 6186OLD_FILES+=usr/share/terminfo/x/xterm-xf86-v32 6187OLD_FILES+=usr/share/terminfo/x/xterm-xf86-v33 6188OLD_FILES+=usr/share/terminfo/x/xterm-xf86-v333 6189OLD_FILES+=usr/share/terminfo/x/xterm-xf86-v40 6190OLD_FILES+=usr/share/terminfo/x/xterm-xf86-v43 6191OLD_FILES+=usr/share/terminfo/x/xterm-xf86-v44 6192OLD_FILES+=usr/share/terminfo/x/xterm-xfree86 6193OLD_FILES+=usr/share/terminfo/x/xterm-xi 6194OLD_FILES+=usr/share/terminfo/x/xterm.js 6195OLD_FILES+=usr/share/terminfo/x/xterm1 6196OLD_FILES+=usr/share/terminfo/x/xtermc 6197OLD_FILES+=usr/share/terminfo/x/xtermm 6198OLD_FILES+=usr/share/terminfo/x/xterms 6199OLD_FILES+=usr/share/terminfo/x/xterms-sun 6200OLD_FILES+=usr/share/terminfo/x/xwsh 6201OLD_DIRS+=usr/share/terminfo/x/ 6202OLD_FILES+=usr/share/terminfo/z/z-100 6203OLD_FILES+=usr/share/terminfo/z/z-100bw 6204OLD_FILES+=usr/share/terminfo/z/z100 6205OLD_FILES+=usr/share/terminfo/z/z100bw 6206OLD_FILES+=usr/share/terminfo/z/z110 6207OLD_FILES+=usr/share/terminfo/z/z110bw 6208OLD_FILES+=usr/share/terminfo/z/z19 6209OLD_FILES+=usr/share/terminfo/z/z29 6210OLD_FILES+=usr/share/terminfo/z/z29a 6211OLD_FILES+=usr/share/terminfo/z/z29a-kc-bc 6212OLD_FILES+=usr/share/terminfo/z/z29a-kc-uc 6213OLD_FILES+=usr/share/terminfo/z/z29a-nkc-bc 6214OLD_FILES+=usr/share/terminfo/z/z29a-nkc-uc 6215OLD_FILES+=usr/share/terminfo/z/z29b 6216OLD_FILES+=usr/share/terminfo/z/z30 6217OLD_FILES+=usr/share/terminfo/z/z340 6218OLD_FILES+=usr/share/terminfo/z/z340-nam 6219OLD_FILES+=usr/share/terminfo/z/z39-a 6220OLD_FILES+=usr/share/terminfo/z/z39a 6221OLD_FILES+=usr/share/terminfo/z/z50 6222OLD_FILES+=usr/share/terminfo/z/z8001 6223OLD_FILES+=usr/share/terminfo/z/zen30 6224OLD_FILES+=usr/share/terminfo/z/zen50 6225OLD_FILES+=usr/share/terminfo/z/zen8001 6226OLD_FILES+=usr/share/terminfo/z/zenith 6227OLD_FILES+=usr/share/terminfo/z/zenith29 6228OLD_FILES+=usr/share/terminfo/z/zenith39-a 6229OLD_FILES+=usr/share/terminfo/z/zenith39-ansi 6230OLD_FILES+=usr/share/terminfo/z/zt-1 6231OLD_FILES+=usr/share/terminfo/z/ztx 6232OLD_FILES+=usr/share/terminfo/z/ztx-1-a 6233OLD_FILES+=usr/share/terminfo/z/ztx11 6234OLD_DIRS+=usr/share/terminfo/z/ 6235OLD_DIRS+=usr/share/terminfo/ 6236 6237# 20210316: remove obsolete NFS headers 6238OLD_FILES+=usr/include/nfs/nfs_common.h 6239OLD_FILES+=usr/include/nfsclient/nfsm_subs.h 6240OLD_FILES+=usr/include/nfsclient/nlminfo.h 6241OLD_FILES+=usr/include/nfsserver/nfs_fha_old.h 6242OLD_FILES+=usr/include/nfsserver/nfsm_subs.h 6243OLD_FILES+=usr/include/nfsserver/nfsrvcache.h 6244 6245# 20210315: Remove kernel-only crypto headers from /usr/include 6246OLD_FILES+=usr/include/crypto/_cryptodev.h 6247OLD_FILES+=usr/include/crypto/cbc_mac.h 6248OLD_FILES+=usr/include/crypto/deflate.h 6249OLD_FILES+=usr/include/crypto/gfmult.h 6250OLD_FILES+=usr/include/crypto/gmac.h 6251OLD_FILES+=usr/include/crypto/rijndael.h 6252OLD_FILES+=usr/include/crypto/rmd160.h 6253OLD_FILES+=usr/include/crypto/xform.h 6254OLD_FILES+=usr/include/crypto/xform_auth.h 6255OLD_FILES+=usr/include/crypto/xform_comp.h 6256OLD_FILES+=usr/include/crypto/xform_enc.h 6257 6258# 20210305: removed Poly1305_* symbols 6259OLD_FILES+=usr/include/crypto/xform_poly1305.h 6260 6261# 20210302: fmtree removed 6262OLD_FILES+=usr/sbin/fmtree 6263OLD_FILES+=usr/share/man/man8/fmtree.8.gz 6264 6265# 20210201: bump shared libraries which link against ncurses 6266OLD_LIBS+=lib/libedit.so.7 6267OLD_LIBS+=usr/lib/libdialog.so.8 6268OLD_LIBS+=usr/lib/libdpv.so.1 6269OLD_LIBS+=usr/lib/libform.so.5 6270OLD_LIBS+=usr/lib/libformw.so.5 6271OLD_LIBS+=usr/lib/libmenu.so.5 6272OLD_LIBS+=usr/lib/libmenuw.so.5 6273OLD_LIBS+=usr/lib/libpanel.so.5 6274OLD_LIBS+=usr/lib/libpanelw.so.5 6275 6276# 20210125: ndis driver support removed 6277OLD_FILES+=usr/sbin/ndis_events 6278OLD_FILES+=usr/sbin/ndiscvt 6279OLD_FILES+=usr/sbin/ndisgen 6280OLD_FILES+=usr/share/man/man4/ndis.4.gz 6281OLD_FILES+=usr/share/man/man4/if_ndis.4.gz 6282OLD_FILES+=usr/share/man/man8/ndis_events.8.gz 6283OLD_FILES+=usr/share/man/man8/ndiscvt.8.gz 6284OLD_FILES+=usr/share/man/man8/ndisgen.8.gz 6285OLD_FILES+=usr/share/misc/windrv_stub.c 6286 6287# 20210116: openpromio(4) removed 6288OLD_FILES+=usr/include/dev/ofw/openpromio.h 6289 6290# 20210116: if_wl_wavelan.h removed 6291.if ${TARGET_ARCH} == "i386" 6292OLD_FILES+=usr/include/machine/if_wl_wavelan.h 6293.endif 6294 6295# 20210108: retire cmx, ng_bt3c, wi drivers 6296OLD_FILES+=usr/include/dev/wi/if_wireg.h 6297OLD_FILES+=usr/include/dev/wi/if_wavelan_ieee.h 6298OLD_FILES+=usr/include/dev/wi/if_wivar.h 6299OLD_FILES+=usr/include/netgraph/bluetooth/include/ng_bt3c.h 6300OLD_FILES+=usr/sbin/bt3cfw 6301OLD_FILES+=usr/share/man/man4/cmw.4.gz 6302OLD_FILES+=usr/share/man/man4/if_wi.4.gz 6303OLD_FILES+=usr/share/man/man4/ng_bt3c.4.gz 6304OLD_FILES+=usr/share/man/man4/wi.4.gz 6305OLD_FILES+=usr/share/man/man8/bt3cfw.8.gz 6306 6307# 20210107: retire a.out support 6308OLD_DIRS+=usr/lib/aout 6309OLD_DIRS+=usr/lib/compat/aout 6310 6311# 20210107: remove cmx(4) 6312OLD_FILES+=usr/share/man/man4/cmx.4.gz 6313 6314# 20210105: remove non widechar version of ncurses 6315OLD_LIBS+=lib/libncurses.so.9 6316 6317# 20210103: new clang import which bumps version from 11.0.0 to 11.0.1 6318OLD_FILES+=usr/lib/clang/11.0.0/include/cuda_wrappers/algorithm 6319OLD_FILES+=usr/lib/clang/11.0.0/include/cuda_wrappers/complex 6320OLD_FILES+=usr/lib/clang/11.0.0/include/cuda_wrappers/new 6321OLD_DIRS+=usr/lib/clang/11.0.0/include/cuda_wrappers 6322OLD_FILES+=usr/lib/clang/11.0.0/include/fuzzer/FuzzedDataProvider.h 6323OLD_DIRS+=usr/lib/clang/11.0.0/include/fuzzer 6324OLD_FILES+=usr/lib/clang/11.0.0/include/openmp_wrappers/__clang_openmp_device_functions.h 6325OLD_FILES+=usr/lib/clang/11.0.0/include/openmp_wrappers/cmath 6326OLD_FILES+=usr/lib/clang/11.0.0/include/openmp_wrappers/complex 6327OLD_FILES+=usr/lib/clang/11.0.0/include/openmp_wrappers/complex.h 6328OLD_FILES+=usr/lib/clang/11.0.0/include/openmp_wrappers/math.h 6329OLD_FILES+=usr/lib/clang/11.0.0/include/openmp_wrappers/new 6330OLD_DIRS+=usr/lib/clang/11.0.0/include/openmp_wrappers 6331OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/emmintrin.h 6332OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/mm_malloc.h 6333OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/mmintrin.h 6334OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/pmmintrin.h 6335OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/smmintrin.h 6336OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/tmmintrin.h 6337OLD_FILES+=usr/lib/clang/11.0.0/include/ppc_wrappers/xmmintrin.h 6338OLD_DIRS+=usr/lib/clang/11.0.0/include/ppc_wrappers 6339OLD_FILES+=usr/lib/clang/11.0.0/include/profile/InstrProfData.inc 6340OLD_DIRS+=usr/lib/clang/11.0.0/include/profile 6341OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/allocator_interface.h 6342OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/asan_interface.h 6343OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/common_interface_defs.h 6344OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/coverage_interface.h 6345OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/dfsan_interface.h 6346OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/hwasan_interface.h 6347OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/linux_syscall_hooks.h 6348OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/lsan_interface.h 6349OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/msan_interface.h 6350OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/netbsd_syscall_hooks.h 6351OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/scudo_interface.h 6352OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/tsan_interface.h 6353OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/tsan_interface_atomic.h 6354OLD_FILES+=usr/lib/clang/11.0.0/include/sanitizer/ubsan_interface.h 6355OLD_DIRS+=usr/lib/clang/11.0.0/include/sanitizer 6356OLD_FILES+=usr/lib/clang/11.0.0/include/xray/xray_interface.h 6357OLD_FILES+=usr/lib/clang/11.0.0/include/xray/xray_log_interface.h 6358OLD_FILES+=usr/lib/clang/11.0.0/include/xray/xray_records.h 6359OLD_DIRS+=usr/lib/clang/11.0.0/include/xray 6360OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_builtin_vars.h 6361OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_cmath.h 6362OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_complex_builtins.h 6363OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_device_functions.h 6364OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_intrinsics.h 6365OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_libdevice_declares.h 6366OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_math.h 6367OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_math_forward_declares.h 6368OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_cuda_runtime_wrapper.h 6369OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_hip_libdevice_declares.h 6370OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_hip_math.h 6371OLD_FILES+=usr/lib/clang/11.0.0/include/__clang_hip_runtime_wrapper.h 6372OLD_FILES+=usr/lib/clang/11.0.0/include/__stddef_max_align_t.h 6373OLD_FILES+=usr/lib/clang/11.0.0/include/__wmmintrin_aes.h 6374OLD_FILES+=usr/lib/clang/11.0.0/include/__wmmintrin_pclmul.h 6375OLD_FILES+=usr/lib/clang/11.0.0/include/adxintrin.h 6376OLD_FILES+=usr/lib/clang/11.0.0/include/altivec.h 6377OLD_FILES+=usr/lib/clang/11.0.0/include/ammintrin.h 6378OLD_FILES+=usr/lib/clang/11.0.0/include/amxintrin.h 6379OLD_FILES+=usr/lib/clang/11.0.0/include/arm64intr.h 6380OLD_FILES+=usr/lib/clang/11.0.0/include/arm_acle.h 6381OLD_FILES+=usr/lib/clang/11.0.0/include/arm_bf16.h 6382OLD_FILES+=usr/lib/clang/11.0.0/include/arm_cde.h 6383OLD_FILES+=usr/lib/clang/11.0.0/include/arm_cmse.h 6384OLD_FILES+=usr/lib/clang/11.0.0/include/arm_fp16.h 6385OLD_FILES+=usr/lib/clang/11.0.0/include/arm_mve.h 6386OLD_FILES+=usr/lib/clang/11.0.0/include/arm_neon.h 6387OLD_FILES+=usr/lib/clang/11.0.0/include/arm_sve.h 6388OLD_FILES+=usr/lib/clang/11.0.0/include/armintr.h 6389OLD_FILES+=usr/lib/clang/11.0.0/include/avx2intrin.h 6390OLD_FILES+=usr/lib/clang/11.0.0/include/avx512bf16intrin.h 6391OLD_FILES+=usr/lib/clang/11.0.0/include/avx512bitalgintrin.h 6392OLD_FILES+=usr/lib/clang/11.0.0/include/avx512bwintrin.h 6393OLD_FILES+=usr/lib/clang/11.0.0/include/avx512cdintrin.h 6394OLD_FILES+=usr/lib/clang/11.0.0/include/avx512dqintrin.h 6395OLD_FILES+=usr/lib/clang/11.0.0/include/avx512erintrin.h 6396OLD_FILES+=usr/lib/clang/11.0.0/include/avx512fintrin.h 6397OLD_FILES+=usr/lib/clang/11.0.0/include/avx512ifmaintrin.h 6398OLD_FILES+=usr/lib/clang/11.0.0/include/avx512ifmavlintrin.h 6399OLD_FILES+=usr/lib/clang/11.0.0/include/avx512pfintrin.h 6400OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vbmi2intrin.h 6401OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vbmiintrin.h 6402OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vbmivlintrin.h 6403OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlbf16intrin.h 6404OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlbitalgintrin.h 6405OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlbwintrin.h 6406OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlcdintrin.h 6407OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vldqintrin.h 6408OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlintrin.h 6409OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlvbmi2intrin.h 6410OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlvnniintrin.h 6411OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vlvp2intersectintrin.h 6412OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vnniintrin.h 6413OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vp2intersectintrin.h 6414OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vpopcntdqintrin.h 6415OLD_FILES+=usr/lib/clang/11.0.0/include/avx512vpopcntdqvlintrin.h 6416OLD_FILES+=usr/lib/clang/11.0.0/include/avxintrin.h 6417OLD_FILES+=usr/lib/clang/11.0.0/include/bmi2intrin.h 6418OLD_FILES+=usr/lib/clang/11.0.0/include/bmiintrin.h 6419OLD_FILES+=usr/lib/clang/11.0.0/include/cet.h 6420OLD_FILES+=usr/lib/clang/11.0.0/include/cetintrin.h 6421OLD_FILES+=usr/lib/clang/11.0.0/include/cldemoteintrin.h 6422OLD_FILES+=usr/lib/clang/11.0.0/include/clflushoptintrin.h 6423OLD_FILES+=usr/lib/clang/11.0.0/include/clwbintrin.h 6424OLD_FILES+=usr/lib/clang/11.0.0/include/clzerointrin.h 6425OLD_FILES+=usr/lib/clang/11.0.0/include/cpuid.h 6426OLD_FILES+=usr/lib/clang/11.0.0/include/emmintrin.h 6427OLD_FILES+=usr/lib/clang/11.0.0/include/enqcmdintrin.h 6428OLD_FILES+=usr/lib/clang/11.0.0/include/f16cintrin.h 6429OLD_FILES+=usr/lib/clang/11.0.0/include/fma4intrin.h 6430OLD_FILES+=usr/lib/clang/11.0.0/include/fmaintrin.h 6431OLD_FILES+=usr/lib/clang/11.0.0/include/fxsrintrin.h 6432OLD_FILES+=usr/lib/clang/11.0.0/include/gfniintrin.h 6433OLD_FILES+=usr/lib/clang/11.0.0/include/htmintrin.h 6434OLD_FILES+=usr/lib/clang/11.0.0/include/htmxlintrin.h 6435OLD_FILES+=usr/lib/clang/11.0.0/include/ia32intrin.h 6436OLD_FILES+=usr/lib/clang/11.0.0/include/immintrin.h 6437OLD_FILES+=usr/lib/clang/11.0.0/include/invpcidintrin.h 6438OLD_FILES+=usr/lib/clang/11.0.0/include/lwpintrin.h 6439OLD_FILES+=usr/lib/clang/11.0.0/include/lzcntintrin.h 6440OLD_FILES+=usr/lib/clang/11.0.0/include/mm3dnow.h 6441OLD_FILES+=usr/lib/clang/11.0.0/include/mm_malloc.h 6442OLD_FILES+=usr/lib/clang/11.0.0/include/mmintrin.h 6443OLD_FILES+=usr/lib/clang/11.0.0/include/module.modulemap 6444OLD_FILES+=usr/lib/clang/11.0.0/include/movdirintrin.h 6445OLD_FILES+=usr/lib/clang/11.0.0/include/msa.h 6446OLD_FILES+=usr/lib/clang/11.0.0/include/mwaitxintrin.h 6447OLD_FILES+=usr/lib/clang/11.0.0/include/nmmintrin.h 6448OLD_FILES+=usr/lib/clang/11.0.0/include/opencl-c-base.h 6449OLD_FILES+=usr/lib/clang/11.0.0/include/opencl-c.h 6450OLD_FILES+=usr/lib/clang/11.0.0/include/pconfigintrin.h 6451OLD_FILES+=usr/lib/clang/11.0.0/include/pkuintrin.h 6452OLD_FILES+=usr/lib/clang/11.0.0/include/pmmintrin.h 6453OLD_FILES+=usr/lib/clang/11.0.0/include/popcntintrin.h 6454OLD_FILES+=usr/lib/clang/11.0.0/include/prfchwintrin.h 6455OLD_FILES+=usr/lib/clang/11.0.0/include/ptwriteintrin.h 6456OLD_FILES+=usr/lib/clang/11.0.0/include/rdseedintrin.h 6457OLD_FILES+=usr/lib/clang/11.0.0/include/rtmintrin.h 6458OLD_FILES+=usr/lib/clang/11.0.0/include/s390intrin.h 6459OLD_FILES+=usr/lib/clang/11.0.0/include/serializeintrin.h 6460OLD_FILES+=usr/lib/clang/11.0.0/include/sgxintrin.h 6461OLD_FILES+=usr/lib/clang/11.0.0/include/shaintrin.h 6462OLD_FILES+=usr/lib/clang/11.0.0/include/smmintrin.h 6463OLD_FILES+=usr/lib/clang/11.0.0/include/tbmintrin.h 6464OLD_FILES+=usr/lib/clang/11.0.0/include/tmmintrin.h 6465OLD_FILES+=usr/lib/clang/11.0.0/include/tsxldtrkintrin.h 6466OLD_FILES+=usr/lib/clang/11.0.0/include/vadefs.h 6467OLD_FILES+=usr/lib/clang/11.0.0/include/vaesintrin.h 6468OLD_FILES+=usr/lib/clang/11.0.0/include/vecintrin.h 6469OLD_FILES+=usr/lib/clang/11.0.0/include/vpclmulqdqintrin.h 6470OLD_FILES+=usr/lib/clang/11.0.0/include/waitpkgintrin.h 6471OLD_FILES+=usr/lib/clang/11.0.0/include/wasm_simd128.h 6472OLD_FILES+=usr/lib/clang/11.0.0/include/wbnoinvdintrin.h 6473OLD_FILES+=usr/lib/clang/11.0.0/include/wmmintrin.h 6474OLD_FILES+=usr/lib/clang/11.0.0/include/x86intrin.h 6475OLD_FILES+=usr/lib/clang/11.0.0/include/xmmintrin.h 6476OLD_FILES+=usr/lib/clang/11.0.0/include/xopintrin.h 6477OLD_FILES+=usr/lib/clang/11.0.0/include/xsavecintrin.h 6478OLD_FILES+=usr/lib/clang/11.0.0/include/xsaveintrin.h 6479OLD_FILES+=usr/lib/clang/11.0.0/include/xsaveoptintrin.h 6480OLD_FILES+=usr/lib/clang/11.0.0/include/xsavesintrin.h 6481OLD_FILES+=usr/lib/clang/11.0.0/include/xtestintrin.h 6482OLD_DIRS+=usr/lib/clang/11.0.0/include 6483OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-aarch64.a 6484OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-aarch64.so 6485OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-arm.a 6486OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-arm.so 6487OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-armhf.a 6488OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-armhf.so 6489OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-i386.a 6490OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-i386.so 6491OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 6492OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a 6493OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-preinit-armhf.a 6494OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 6495OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 6496OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 6497OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 6498OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 6499OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a 6500OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan_cxx-armhf.a 6501OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 6502OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 6503OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi-aarch64.a 6504OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi-arm.a 6505OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi-armhf.a 6506OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi-i386.a 6507OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi-x86_64.a 6508OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 6509OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi_diag-arm.a 6510OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi_diag-armhf.a 6511OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi_diag-i386.a 6512OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 6513OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.dd-aarch64.a 6514OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.dd-x86_64.a 6515OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.fuzzer-aarch64.a 6516OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.fuzzer-x86_64.a 6517OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 6518OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 6519OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.msan-aarch64.a 6520OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.msan-x86_64.a 6521OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 6522OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 6523OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-aarch64.a 6524OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-arm.a 6525OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-armhf.a 6526OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-i386.a 6527OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-powerpc.a 6528OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-powerpc64.a 6529OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-powerpc64le.a 6530OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 6531OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.safestack-aarch64.a 6532OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.safestack-i386.a 6533OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 6534OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats-aarch64.a 6535OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats-arm.a 6536OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats-armhf.a 6537OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats-i386.a 6538OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 6539OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats_client-aarch64.a 6540OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats_client-arm.a 6541OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats_client-armhf.a 6542OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 6543OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 6544OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.tsan-aarch64.a 6545OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 6546OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 6547OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 6548OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 6549OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 6550OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 6551OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 6552OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 6553OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 6554OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 6555OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 6556OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 6557OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 6558OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 6559OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 6560OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 6561OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 6562OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 6563OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-aarch64.a 6564OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-arm.a 6565OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-armhf.a 6566OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-basic-aarch64.a 6567OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-basic-arm.a 6568OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-basic-armhf.a 6569OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-basic-x86_64.a 6570OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 6571OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-fdr-arm.a 6572OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-fdr-armhf.a 6573OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 6574OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 6575OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-profiling-arm.a 6576OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-profiling-armhf.a 6577OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 6578OLD_FILES+=usr/lib/clang/11.0.0/lib/freebsd/libclang_rt.xray-x86_64.a 6579OLD_DIRS+=usr/lib/clang/11.0.0/lib/freebsd 6580OLD_DIRS+=usr/lib/clang/11.0.0/lib 6581OLD_DIRS+=usr/lib/clang/11.0.0 6582 6583# 20201226: Siemens SAB 82532 support removed 6584OLD_FILES+=usr/include/dev/ic/sab82532.h 6585 6586# 20201225: PMC for Xscale removed 6587OLD_FILES+=usr/include/dev/hwpmc/hwpmc_xscale.h 6588OLD_FILES+=usr/share/man/man3/pmc.xscale.3.gz 6589 6590# 20201225: libregex removed 6591OLD_FILES+=usr/include/gnu/posix/regex.h 6592OLD_DIRS+=usr/include/gnu/posix 6593OLD_FILES+=usr/include/gnu/regex.h 6594OLD_DIRS+=usr/include/gnu 6595OLD_FILES+=usr/include/gnuregex.h 6596OLD_FILES+=usr/lib/libgnuregex.a 6597OLD_FILES+=usr/lib/libgnuregex.so 6598OLD_LIBS+=usr/lib/libgnuregex.so.5 6599OLD_FILES+=usr/lib/libgnuregex_p.a 6600 6601# 20201225: gnugrep removed 6602OLD_FILES+=usr/bin/bsdgrep 6603OLD_FILES+=usr/bin/gnugrep 6604OLD_FILES+=usr/share/man/man1/bsdgrep.1.gz 6605OLD_FILES+=usr/share/man/man1/gnugrep.1.gz 6606 6607# 20201224: mk48txx(4) removed 6608OLD_FILES+=usr/share/man/man4/mk48txx.4.gz 6609 6610# 20201215: in-tree gdb removed 6611OLD_FILES+=usr/libexec/gdb 6612OLD_FILES+=usr/libexec/kgdb 6613 6614# 20201211: hme(4) removed 6615OLD_FILES+=usr/share/man/man4/hme.4.gz 6616OLD_FILES+=usr/share/man/man4/if_hme.4.gz 6617 6618# 20201129: RADIX_MPATH removed 6619OLD_FILES+=usr/include/net/radix_mpath.h 6620 6621# 20201124: ping6(8) was merged into ping(8) 6622OLD_FILES+=usr/share/man/man8/ping6.8.gz 6623OLD_FILES+=usr/tests/sbin/ping6/Kyuafile 6624OLD_FILES+=usr/tests/sbin/ping6/ping6_c1_s8_t1.out 6625OLD_FILES+=usr/tests/sbin/ping6/ping6_test 6626OLD_DIRS+=usr/tests/sbin/ping6 6627 6628# 20201025: Remove cal data files 6629OLD_FILES+=usr/share/calendar/calendar.all 6630OLD_FILES+=usr/share/calendar/calendar.australia 6631OLD_FILES+=usr/share/calendar/calendar.birthday 6632OLD_FILES+=usr/share/calendar/calendar.brazilian 6633OLD_FILES+=usr/share/calendar/calendar.christian 6634OLD_FILES+=usr/share/calendar/calendar.computer 6635OLD_FILES+=usr/share/calendar/calendar.croatian 6636OLD_FILES+=usr/share/calendar/calendar.dutch 6637OLD_FILES+=usr/share/calendar/calendar.french 6638OLD_FILES+=usr/share/calendar/calendar.german 6639OLD_FILES+=usr/share/calendar/calendar.history 6640OLD_FILES+=usr/share/calendar/calendar.holiday 6641OLD_FILES+=usr/share/calendar/calendar.hungarian 6642OLD_FILES+=usr/share/calendar/calendar.judaic 6643OLD_FILES+=usr/share/calendar/calendar.lotr 6644OLD_FILES+=usr/share/calendar/calendar.music 6645OLD_FILES+=usr/share/calendar/calendar.newzealand 6646OLD_FILES+=usr/share/calendar/calendar.russian 6647OLD_FILES+=usr/share/calendar/calendar.southafrica 6648OLD_FILES+=usr/share/calendar/calendar.ukrainian 6649OLD_FILES+=usr/share/calendar/calendar.usholiday 6650OLD_FILES+=usr/share/calendar/calendar.world 6651OLD_FILES+=usr/share/calendar/de_AT.ISO_8859-15/calendar.feiertag 6652OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.all 6653OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.feiertag 6654OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.geschichte 6655OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.kirche 6656OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.literatur 6657OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.musik 6658OLD_FILES+=usr/share/calendar/de_DE.ISO8859-1/calendar.wissenschaft 6659OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.all 6660OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.fetes 6661OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.french 6662OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.jferies 6663OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-1/calendar.proverbes 6664OLD_FILES+=usr/share/calendar/hr_HR.ISO8859-2/calendar.all 6665OLD_FILES+=usr/share/calendar/hr_HR.ISO8859-2/calendar.praznici 6666OLD_FILES+=usr/share/calendar/hu_HU.ISO8859-2/calendar.all 6667OLD_FILES+=usr/share/calendar/hu_HU.ISO8859-2/calendar.nevnapok 6668OLD_FILES+=usr/share/calendar/hu_HU.ISO8859-2/calendar.unnepek 6669OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.all 6670OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.commemorative 6671OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.holidays 6672OLD_FILES+=usr/share/calendar/pt_BR.ISO8859-1/calendar.mcommemorative 6673OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.all 6674OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.commemorative 6675OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.holidays 6676OLD_FILES+=usr/share/calendar/pt_BR.UTF-8/calendar.mcommemorative 6677OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.all 6678OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.common 6679OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.holiday 6680OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.military 6681OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.orthodox 6682OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.pagan 6683OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.all 6684OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.common 6685OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.holiday 6686OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.military 6687OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.orthodox 6688OLD_FILES+=usr/share/calendar/ru_RU.UTF-8/calendar.pagan 6689OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.all 6690OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.holiday 6691OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.misc 6692OLD_FILES+=usr/share/calendar/uk_UA.KOI8-U/calendar.orthodox 6693OLD_DIRS+=usr/share/calendar/de_AT.ISO_8859-15 6694OLD_DIRS+=usr/share/calendar/de_DE.ISO8859-1 6695OLD_FILES+=usr/share/calendar/de_DE.ISO8859-15 6696OLD_DIRS+=usr/share/calendar/fr_FR.ISO8859-1 6697OLD_FILES+=usr/share/calendar/fr_FR.ISO8859-15 6698OLD_DIRS+=usr/share/calendar/hr_HR.ISO8859-2 6699OLD_DIRS+=usr/share/calendar/hu_HU.ISO8859-2 6700OLD_DIRS+=usr/share/calendar/pt_BR.ISO8859-1 6701OLD_DIRS+=usr/share/calendar/pt_BR.UTF-8 6702OLD_DIRS+=usr/share/calendar/ru_RU.KOI8-R 6703OLD_DIRS+=usr/share/calendar/ru_RU.UTF-8 6704OLD_DIRS+=usr/share/calendar/uk_UA.KOI8-U 6705 6706# 20201004: logo files renamed to type-agnostic gfx-*.lua 6707OLD_FILES+=boot/lua/logo-beastie.lua 6708OLD_FILES+=boot/lua/logo-beastiebw.lua 6709OLD_FILES+=boot/lua/logo-fbsdbw.lua 6710OLD_FILES+=boot/lua/logo-orb.lua 6711OLD_FILES+=boot/lua/logo-orbbw.lua 6712 6713# 20200828: net/route/shared.h moved to net/route/route_var.h 6714OLD_FILES+=usr/include/net/route/shared.h 6715 6716# 20200825: merged OpenZFS support 6717OLD_LIBS+=lib/libzfs.so.3 6718OLD_FILES+=usr/share/man/man1/zstreamdump.1.gz 6719#OLD_FILES+=usr/share/man/man7/zpool-features.7.gz 6720 6721# 20200923: memfd_test moved to /usr/tests/sys/posixshm 6722OLD_FILES+=usr/tests/sys/kern/memfd_test 6723 6724# 20200910: remove vm_map_create(9) to sync with the code 6725OLD_FILES+=usr/share/man/man9/vm_map_create.9.gz 6726 6727# 20200820: Removal of the ufm driver 6728OLD_FILES+=usr/share/man/man4/ufm.4.gz 6729 6730# 20200816: new clang import which bumps version from 10.0.1 to 11.0.0 6731OLD_FILES+=usr/lib/clang/10.0.1/include/cuda_wrappers/algorithm 6732OLD_FILES+=usr/lib/clang/10.0.1/include/cuda_wrappers/complex 6733OLD_FILES+=usr/lib/clang/10.0.1/include/cuda_wrappers/new 6734OLD_DIRS+=usr/lib/clang/10.0.1/include/cuda_wrappers 6735OLD_FILES+=usr/lib/clang/10.0.1/include/fuzzer/FuzzedDataProvider.h 6736OLD_DIRS+=usr/lib/clang/10.0.1/include/fuzzer 6737OLD_FILES+=usr/lib/clang/10.0.1/include/openmp_wrappers/__clang_openmp_math.h 6738OLD_FILES+=usr/lib/clang/10.0.1/include/openmp_wrappers/__clang_openmp_math_declares.h 6739OLD_FILES+=usr/lib/clang/10.0.1/include/openmp_wrappers/cmath 6740OLD_FILES+=usr/lib/clang/10.0.1/include/openmp_wrappers/math.h 6741OLD_DIRS+=usr/lib/clang/10.0.1/include/openmp_wrappers 6742OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/emmintrin.h 6743OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/mm_malloc.h 6744OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/mmintrin.h 6745OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/pmmintrin.h 6746OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/smmintrin.h 6747OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/tmmintrin.h 6748OLD_FILES+=usr/lib/clang/10.0.1/include/ppc_wrappers/xmmintrin.h 6749OLD_DIRS+=usr/lib/clang/10.0.1/include/ppc_wrappers 6750OLD_FILES+=usr/lib/clang/10.0.1/include/profile/InstrProfData.inc 6751OLD_DIRS+=usr/lib/clang/10.0.1/include/profile 6752OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/allocator_interface.h 6753OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/asan_interface.h 6754OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/common_interface_defs.h 6755OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/coverage_interface.h 6756OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/dfsan_interface.h 6757OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/hwasan_interface.h 6758OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/linux_syscall_hooks.h 6759OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/lsan_interface.h 6760OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/msan_interface.h 6761OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/netbsd_syscall_hooks.h 6762OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/scudo_interface.h 6763OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/tsan_interface.h 6764OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/tsan_interface_atomic.h 6765OLD_FILES+=usr/lib/clang/10.0.1/include/sanitizer/ubsan_interface.h 6766OLD_DIRS+=usr/lib/clang/10.0.1/include/sanitizer 6767OLD_FILES+=usr/lib/clang/10.0.1/include/xray/xray_interface.h 6768OLD_FILES+=usr/lib/clang/10.0.1/include/xray/xray_log_interface.h 6769OLD_FILES+=usr/lib/clang/10.0.1/include/xray/xray_records.h 6770OLD_DIRS+=usr/lib/clang/10.0.1/include/xray 6771OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_builtin_vars.h 6772OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_cmath.h 6773OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_complex_builtins.h 6774OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_device_functions.h 6775OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_intrinsics.h 6776OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_libdevice_declares.h 6777OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_math_forward_declares.h 6778OLD_FILES+=usr/lib/clang/10.0.1/include/__clang_cuda_runtime_wrapper.h 6779OLD_FILES+=usr/lib/clang/10.0.1/include/__stddef_max_align_t.h 6780OLD_FILES+=usr/lib/clang/10.0.1/include/__wmmintrin_aes.h 6781OLD_FILES+=usr/lib/clang/10.0.1/include/__wmmintrin_pclmul.h 6782OLD_FILES+=usr/lib/clang/10.0.1/include/adxintrin.h 6783OLD_FILES+=usr/lib/clang/10.0.1/include/altivec.h 6784OLD_FILES+=usr/lib/clang/10.0.1/include/ammintrin.h 6785OLD_FILES+=usr/lib/clang/10.0.1/include/arm64intr.h 6786OLD_FILES+=usr/lib/clang/10.0.1/include/arm_acle.h 6787OLD_FILES+=usr/lib/clang/10.0.1/include/arm_cmse.h 6788OLD_FILES+=usr/lib/clang/10.0.1/include/arm_fp16.h 6789OLD_FILES+=usr/lib/clang/10.0.1/include/arm_mve.h 6790OLD_FILES+=usr/lib/clang/10.0.1/include/arm_neon.h 6791OLD_FILES+=usr/lib/clang/10.0.1/include/armintr.h 6792OLD_FILES+=usr/lib/clang/10.0.1/include/avx2intrin.h 6793OLD_FILES+=usr/lib/clang/10.0.1/include/avx512bf16intrin.h 6794OLD_FILES+=usr/lib/clang/10.0.1/include/avx512bitalgintrin.h 6795OLD_FILES+=usr/lib/clang/10.0.1/include/avx512bwintrin.h 6796OLD_FILES+=usr/lib/clang/10.0.1/include/avx512cdintrin.h 6797OLD_FILES+=usr/lib/clang/10.0.1/include/avx512dqintrin.h 6798OLD_FILES+=usr/lib/clang/10.0.1/include/avx512erintrin.h 6799OLD_FILES+=usr/lib/clang/10.0.1/include/avx512fintrin.h 6800OLD_FILES+=usr/lib/clang/10.0.1/include/avx512ifmaintrin.h 6801OLD_FILES+=usr/lib/clang/10.0.1/include/avx512ifmavlintrin.h 6802OLD_FILES+=usr/lib/clang/10.0.1/include/avx512pfintrin.h 6803OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vbmi2intrin.h 6804OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vbmiintrin.h 6805OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vbmivlintrin.h 6806OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlbf16intrin.h 6807OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlbitalgintrin.h 6808OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlbwintrin.h 6809OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlcdintrin.h 6810OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vldqintrin.h 6811OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlintrin.h 6812OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlvbmi2intrin.h 6813OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlvnniintrin.h 6814OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vlvp2intersectintrin.h 6815OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vnniintrin.h 6816OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vp2intersectintrin.h 6817OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vpopcntdqintrin.h 6818OLD_FILES+=usr/lib/clang/10.0.1/include/avx512vpopcntdqvlintrin.h 6819OLD_FILES+=usr/lib/clang/10.0.1/include/avxintrin.h 6820OLD_FILES+=usr/lib/clang/10.0.1/include/bmi2intrin.h 6821OLD_FILES+=usr/lib/clang/10.0.1/include/bmiintrin.h 6822OLD_FILES+=usr/lib/clang/10.0.1/include/cetintrin.h 6823OLD_FILES+=usr/lib/clang/10.0.1/include/cldemoteintrin.h 6824OLD_FILES+=usr/lib/clang/10.0.1/include/clflushoptintrin.h 6825OLD_FILES+=usr/lib/clang/10.0.1/include/clwbintrin.h 6826OLD_FILES+=usr/lib/clang/10.0.1/include/clzerointrin.h 6827OLD_FILES+=usr/lib/clang/10.0.1/include/cpuid.h 6828OLD_FILES+=usr/lib/clang/10.0.1/include/emmintrin.h 6829OLD_FILES+=usr/lib/clang/10.0.1/include/enqcmdintrin.h 6830OLD_FILES+=usr/lib/clang/10.0.1/include/f16cintrin.h 6831OLD_FILES+=usr/lib/clang/10.0.1/include/fma4intrin.h 6832OLD_FILES+=usr/lib/clang/10.0.1/include/fmaintrin.h 6833OLD_FILES+=usr/lib/clang/10.0.1/include/fxsrintrin.h 6834OLD_FILES+=usr/lib/clang/10.0.1/include/gfniintrin.h 6835OLD_FILES+=usr/lib/clang/10.0.1/include/htmintrin.h 6836OLD_FILES+=usr/lib/clang/10.0.1/include/htmxlintrin.h 6837OLD_FILES+=usr/lib/clang/10.0.1/include/ia32intrin.h 6838OLD_FILES+=usr/lib/clang/10.0.1/include/immintrin.h 6839OLD_FILES+=usr/lib/clang/10.0.1/include/invpcidintrin.h 6840OLD_FILES+=usr/lib/clang/10.0.1/include/lwpintrin.h 6841OLD_FILES+=usr/lib/clang/10.0.1/include/lzcntintrin.h 6842OLD_FILES+=usr/lib/clang/10.0.1/include/mm3dnow.h 6843OLD_FILES+=usr/lib/clang/10.0.1/include/mm_malloc.h 6844OLD_FILES+=usr/lib/clang/10.0.1/include/mmintrin.h 6845OLD_FILES+=usr/lib/clang/10.0.1/include/module.modulemap 6846OLD_FILES+=usr/lib/clang/10.0.1/include/movdirintrin.h 6847OLD_FILES+=usr/lib/clang/10.0.1/include/msa.h 6848OLD_FILES+=usr/lib/clang/10.0.1/include/mwaitxintrin.h 6849OLD_FILES+=usr/lib/clang/10.0.1/include/nmmintrin.h 6850OLD_FILES+=usr/lib/clang/10.0.1/include/opencl-c-base.h 6851OLD_FILES+=usr/lib/clang/10.0.1/include/opencl-c.h 6852OLD_FILES+=usr/lib/clang/10.0.1/include/pconfigintrin.h 6853OLD_FILES+=usr/lib/clang/10.0.1/include/pkuintrin.h 6854OLD_FILES+=usr/lib/clang/10.0.1/include/pmmintrin.h 6855OLD_FILES+=usr/lib/clang/10.0.1/include/popcntintrin.h 6856OLD_FILES+=usr/lib/clang/10.0.1/include/prfchwintrin.h 6857OLD_FILES+=usr/lib/clang/10.0.1/include/ptwriteintrin.h 6858OLD_FILES+=usr/lib/clang/10.0.1/include/rdseedintrin.h 6859OLD_FILES+=usr/lib/clang/10.0.1/include/rtmintrin.h 6860OLD_FILES+=usr/lib/clang/10.0.1/include/s390intrin.h 6861OLD_FILES+=usr/lib/clang/10.0.1/include/sgxintrin.h 6862OLD_FILES+=usr/lib/clang/10.0.1/include/shaintrin.h 6863OLD_FILES+=usr/lib/clang/10.0.1/include/smmintrin.h 6864OLD_FILES+=usr/lib/clang/10.0.1/include/tbmintrin.h 6865OLD_FILES+=usr/lib/clang/10.0.1/include/tmmintrin.h 6866OLD_FILES+=usr/lib/clang/10.0.1/include/vadefs.h 6867OLD_FILES+=usr/lib/clang/10.0.1/include/vaesintrin.h 6868OLD_FILES+=usr/lib/clang/10.0.1/include/vecintrin.h 6869OLD_FILES+=usr/lib/clang/10.0.1/include/vpclmulqdqintrin.h 6870OLD_FILES+=usr/lib/clang/10.0.1/include/waitpkgintrin.h 6871OLD_FILES+=usr/lib/clang/10.0.1/include/wbnoinvdintrin.h 6872OLD_FILES+=usr/lib/clang/10.0.1/include/wmmintrin.h 6873OLD_FILES+=usr/lib/clang/10.0.1/include/x86intrin.h 6874OLD_FILES+=usr/lib/clang/10.0.1/include/xmmintrin.h 6875OLD_FILES+=usr/lib/clang/10.0.1/include/xopintrin.h 6876OLD_FILES+=usr/lib/clang/10.0.1/include/xsavecintrin.h 6877OLD_FILES+=usr/lib/clang/10.0.1/include/xsaveintrin.h 6878OLD_FILES+=usr/lib/clang/10.0.1/include/xsaveoptintrin.h 6879OLD_FILES+=usr/lib/clang/10.0.1/include/xsavesintrin.h 6880OLD_FILES+=usr/lib/clang/10.0.1/include/xtestintrin.h 6881OLD_DIRS+=usr/lib/clang/10.0.1/include 6882OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-aarch64.a 6883OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-aarch64.so 6884OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-arm.a 6885OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-arm.so 6886OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-armhf.a 6887OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-armhf.so 6888OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-i386.a 6889OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-i386.so 6890OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 6891OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-preinit-arm.a 6892OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-preinit-armhf.a 6893OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 6894OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 6895OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 6896OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 6897OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 6898OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan_cxx-arm.a 6899OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan_cxx-armhf.a 6900OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 6901OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 6902OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi-aarch64.a 6903OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi-arm.a 6904OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi-armhf.a 6905OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi-i386.a 6906OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi-x86_64.a 6907OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 6908OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi_diag-arm.a 6909OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi_diag-armhf.a 6910OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi_diag-i386.a 6911OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 6912OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.dd-aarch64.a 6913OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.dd-x86_64.a 6914OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.fuzzer-aarch64.a 6915OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.fuzzer-x86_64.a 6916OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 6917OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 6918OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.msan-aarch64.a 6919OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.msan-x86_64.a 6920OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 6921OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 6922OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-aarch64.a 6923OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-arm.a 6924OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-armhf.a 6925OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-i386.a 6926OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-powerpc.a 6927OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-powerpc64.a 6928OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 6929OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.safestack-aarch64.a 6930OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.safestack-i386.a 6931OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 6932OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats-aarch64.a 6933OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats-arm.a 6934OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats-armhf.a 6935OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats-i386.a 6936OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 6937OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats_client-aarch64.a 6938OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats_client-arm.a 6939OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats_client-armhf.a 6940OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 6941OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 6942OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.tsan-aarch64.a 6943OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 6944OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 6945OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 6946OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 6947OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 6948OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 6949OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 6950OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 6951OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 6952OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 6953OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 6954OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 6955OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 6956OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 6957OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 6958OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 6959OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 6960OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 6961OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-aarch64.a 6962OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-arm.a 6963OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-armhf.a 6964OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-basic-aarch64.a 6965OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-basic-arm.a 6966OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-basic-armhf.a 6967OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-basic-x86_64.a 6968OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 6969OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-fdr-arm.a 6970OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-fdr-armhf.a 6971OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 6972OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 6973OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-profiling-arm.a 6974OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-profiling-armhf.a 6975OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 6976OLD_FILES+=usr/lib/clang/10.0.1/lib/freebsd/libclang_rt.xray-x86_64.a 6977OLD_DIRS+=usr/lib/clang/10.0.1/lib/freebsd 6978OLD_DIRS+=usr/lib/clang/10.0.1/lib 6979OLD_DIRS+=usr/lib/clang/10.0.1 6980 6981# 20200803: remove free_domain(9) and uma_zfree_domain(9) 6982OLD_FILES+=usr/share/man/man9/free_domain.9.gz 6983OLD_FILES+=usr/share/man/man9/uma_zfree_domain.9.gz 6984 6985# 20200729: remove long expired serial drivers 6986OLD_FILES+=usr/share/man/man4/cy.4.gz 6987OLD_FILES+=usr/share/man/man4/rc.4.gz 6988OLD_FILES+=usr/share/man/man4/rp.4.gz 6989 6990# 20200721: sys/iommu.h moved to dev/iommu/ 6991OLD_FILES+=usr/include/sys/iommu.h 6992 6993# 20200715: rework of devstat(9) man page 6994OLD_FILES+=usr/share/man/man9/devstat_add_entry.9.gz 6995 6996# 20200714: update byacc to 20200330 6997OLD_FILES+=usr/tests/usr.bin/yacc/btyacc_calc1.y 6998OLD_FILES+=usr/tests/usr.bin/yacc/btyacc_demo.y 6999OLD_FILES+=usr/tests/usr.bin/yacc/btyacc_destroy1.y 7000OLD_FILES+=usr/tests/usr.bin/yacc/btyacc_destroy2.y 7001OLD_FILES+=usr/tests/usr.bin/yacc/btyacc_destroy3.y 7002OLD_FILES+=usr/tests/usr.bin/yacc/err_inherit1.y 7003OLD_FILES+=usr/tests/usr.bin/yacc/err_inherit2.y 7004OLD_FILES+=usr/tests/usr.bin/yacc/err_inherit3.y 7005OLD_FILES+=usr/tests/usr.bin/yacc/err_inherit4.y 7006OLD_FILES+=usr/tests/usr.bin/yacc/err_inherit5.y 7007OLD_FILES+=usr/tests/usr.bin/yacc/inherit0.y 7008OLD_FILES+=usr/tests/usr.bin/yacc/inherit1.y 7009OLD_FILES+=usr/tests/usr.bin/yacc/inherit2.y 7010 7011# 20200706: update of sglist(9), r360574 7012OLD_FILES+=usr/share/man/man9/sglist_append_ext_pgs.9.gz 7013OLD_FILES+=usr/share/man/man9/sglist_append_mb_ext_pgs.9.gz 7014OLD_FILES+=usr/share/man/man9/sglist_count_ext_pgs.9.gz 7015OLD_FILES+=usr/share/man/man9/sglist_count_mb_ext_pgs.9.gz 7016 7017# 20200617: update opencsd to 0.14.2 7018OLD_FILES+=usr/include/opencsd/etmv4/trc_pkt_elem_etmv4d.h 7019 7020# 20200606: retire binutils build infrastructure 7021OLD_FILES+=usr/bin/as 7022OLD_FILES+=usr/bin/ld.bfd 7023OLD_FILES+=usr/share/man/man1/as.1.gz 7024OLD_FILES+=usr/share/man/man1/ld.bfd.1.gz 7025OLD_FILES+=usr/share/man/man7/as.7.gz 7026OLD_FILES+=usr/share/man/man7/ld.7.gz 7027OLD_FILES+=usr/share/man/man7/ldint.7.gz 7028OLD_FILES+=usr/share/man/man7/binutils.7.gz 7029OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.x 7030OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xbn 7031OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xc 7032OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xd 7033OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xdc 7034OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xdw 7035OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xn 7036OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xr 7037OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xs 7038OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xsc 7039OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xsw 7040OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xu 7041OLD_FILES+=usr/libdata/ldscripts/armelf_fbsd.xw 7042OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.x 7043OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xbn 7044OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xc 7045OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xd 7046OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xdc 7047OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xdw 7048OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xn 7049OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xr 7050OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xs 7051OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xsc 7052OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xsw 7053OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xu 7054OLD_FILES+=usr/libdata/ldscripts/armelfb_fbsd.xw 7055OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.x 7056OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xbn 7057OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xc 7058OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xd 7059OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xdc 7060OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xdw 7061OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xn 7062OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xr 7063OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xs 7064OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xsc 7065OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xsw 7066OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xu 7067OLD_FILES+=usr/libdata/ldscripts/elf32_sparc.xw 7068OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.x 7069OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xbn 7070OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xc 7071OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xd 7072OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xdc 7073OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xdw 7074OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xn 7075OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xr 7076OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xs 7077OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xsc 7078OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xsw 7079OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xu 7080OLD_FILES+=usr/libdata/ldscripts/elf32btsmip_fbsd.xw 7081OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.x 7082OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xbn 7083OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xc 7084OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xd 7085OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xdc 7086OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xdw 7087OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xn 7088OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xr 7089OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xs 7090OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xsc 7091OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xsw 7092OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xu 7093OLD_FILES+=usr/libdata/ldscripts/elf32btsmipn32_fbsd.xw 7094OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.x 7095OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xbn 7096OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xc 7097OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xd 7098OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xdc 7099OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xdw 7100OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xn 7101OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xr 7102OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xs 7103OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xsc 7104OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xsw 7105OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xu 7106OLD_FILES+=usr/libdata/ldscripts/elf32ltsmip_fbsd.xw 7107OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.x 7108OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xbn 7109OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xc 7110OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xd 7111OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xdc 7112OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xdw 7113OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xn 7114OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xr 7115OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xs 7116OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xsc 7117OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xsw 7118OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xu 7119OLD_FILES+=usr/libdata/ldscripts/elf32ltsmipn32_fbsd.xw 7120OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.x 7121OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xbn 7122OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xc 7123OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xd 7124OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xdc 7125OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xdw 7126OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xn 7127OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xr 7128OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xs 7129OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xsc 7130OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xsw 7131OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xu 7132OLD_FILES+=usr/libdata/ldscripts/elf32ppc_fbsd.xw 7133OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.x 7134OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xbn 7135OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xc 7136OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xd 7137OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xdc 7138OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xdw 7139OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xn 7140OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xr 7141OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xs 7142OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xsc 7143OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xsw 7144OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xu 7145OLD_FILES+=usr/libdata/ldscripts/elf64_sparc.xw 7146OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.x 7147OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xbn 7148OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xc 7149OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xd 7150OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xdc 7151OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xdw 7152OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xn 7153OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xr 7154OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xs 7155OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xsc 7156OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xsw 7157OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xu 7158OLD_FILES+=usr/libdata/ldscripts/elf64_sparc_fbsd.xw 7159OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.x 7160OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xbn 7161OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xc 7162OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xd 7163OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xdc 7164OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xdw 7165OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xn 7166OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xr 7167OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xs 7168OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xsc 7169OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xsw 7170OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xu 7171OLD_FILES+=usr/libdata/ldscripts/elf64btsmip_fbsd.xw 7172OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.x 7173OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xbn 7174OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xc 7175OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xd 7176OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xdc 7177OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xdw 7178OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xn 7179OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xr 7180OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xs 7181OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xsc 7182OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xsw 7183OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xu 7184OLD_FILES+=usr/libdata/ldscripts/elf64ltsmip_fbsd.xw 7185OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.x 7186OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xbn 7187OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xc 7188OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xd 7189OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xdc 7190OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xdw 7191OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xn 7192OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xr 7193OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xs 7194OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xsc 7195OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xsw 7196OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xu 7197OLD_FILES+=usr/libdata/ldscripts/elf64ppc_fbsd.xw 7198OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.x 7199OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xbn 7200OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xc 7201OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xd 7202OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xdc 7203OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xdw 7204OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xn 7205OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xr 7206OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xs 7207OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xsc 7208OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xsw 7209OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xu 7210OLD_FILES+=usr/libdata/ldscripts/elf_i386_fbsd.xw 7211OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.x 7212OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xbn 7213OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xc 7214OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xd 7215OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xdc 7216OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xdw 7217OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xn 7218OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xr 7219OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xs 7220OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xsc 7221OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xsw 7222OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xu 7223OLD_FILES+=usr/libdata/ldscripts/elf_x86_64_fbsd.xw 7224 7225# 20200601: OpenSSL 32-bit compat engines moved to /usr/lib32/engines 7226OLD_LIBS+=usr/lib32/capi.so 7227OLD_LIBS+=usr/lib32/padlock.so 7228 7229# 20200528: libevent renamed libevent1 7230OLD_FILES+=usr/include/private/event/event.h 7231OLD_DIRS+=usr/include/private/event 7232OLD_FILES+=usr/lib/libprivateevent.a 7233OLD_FILES+=usr/lib/libprivateevent.so 7234OLD_LIBS+=usr/lib/libprivateevent.so.1 7235OLD_FILES+=usr/lib/libprivateevent_p.a 7236 7237# 20200523: new clang import which bumps version from 10.0.0 to 10.0.1 7238OLD_FILES+=usr/lib/clang/10.0.0/include/cuda_wrappers/algorithm 7239OLD_FILES+=usr/lib/clang/10.0.0/include/cuda_wrappers/complex 7240OLD_FILES+=usr/lib/clang/10.0.0/include/cuda_wrappers/new 7241OLD_DIRS+=usr/lib/clang/10.0.0/include/cuda_wrappers 7242OLD_FILES+=usr/lib/clang/10.0.0/include/fuzzer/FuzzedDataProvider.h 7243OLD_DIRS+=usr/lib/clang/10.0.0/include/fuzzer 7244OLD_FILES+=usr/lib/clang/10.0.0/include/openmp_wrappers/__clang_openmp_math.h 7245OLD_FILES+=usr/lib/clang/10.0.0/include/openmp_wrappers/__clang_openmp_math_declares.h 7246OLD_FILES+=usr/lib/clang/10.0.0/include/openmp_wrappers/cmath 7247OLD_FILES+=usr/lib/clang/10.0.0/include/openmp_wrappers/math.h 7248OLD_DIRS+=usr/lib/clang/10.0.0/include/openmp_wrappers 7249OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/emmintrin.h 7250OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/mm_malloc.h 7251OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/mmintrin.h 7252OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/pmmintrin.h 7253OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/smmintrin.h 7254OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/tmmintrin.h 7255OLD_FILES+=usr/lib/clang/10.0.0/include/ppc_wrappers/xmmintrin.h 7256OLD_DIRS+=usr/lib/clang/10.0.0/include/ppc_wrappers 7257OLD_FILES+=usr/lib/clang/10.0.0/include/profile/InstrProfData.inc 7258OLD_DIRS+=usr/lib/clang/10.0.0/include/profile 7259OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/allocator_interface.h 7260OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/asan_interface.h 7261OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/common_interface_defs.h 7262OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/coverage_interface.h 7263OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/dfsan_interface.h 7264OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/hwasan_interface.h 7265OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/linux_syscall_hooks.h 7266OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/lsan_interface.h 7267OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/msan_interface.h 7268OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/netbsd_syscall_hooks.h 7269OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/scudo_interface.h 7270OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/tsan_interface.h 7271OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/tsan_interface_atomic.h 7272OLD_FILES+=usr/lib/clang/10.0.0/include/sanitizer/ubsan_interface.h 7273OLD_DIRS+=usr/lib/clang/10.0.0/include/sanitizer 7274OLD_FILES+=usr/lib/clang/10.0.0/include/xray/xray_interface.h 7275OLD_FILES+=usr/lib/clang/10.0.0/include/xray/xray_log_interface.h 7276OLD_FILES+=usr/lib/clang/10.0.0/include/xray/xray_records.h 7277OLD_DIRS+=usr/lib/clang/10.0.0/include/xray 7278OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_builtin_vars.h 7279OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_cmath.h 7280OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_complex_builtins.h 7281OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_device_functions.h 7282OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_intrinsics.h 7283OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_libdevice_declares.h 7284OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_math_forward_declares.h 7285OLD_FILES+=usr/lib/clang/10.0.0/include/__clang_cuda_runtime_wrapper.h 7286OLD_FILES+=usr/lib/clang/10.0.0/include/__stddef_max_align_t.h 7287OLD_FILES+=usr/lib/clang/10.0.0/include/__wmmintrin_aes.h 7288OLD_FILES+=usr/lib/clang/10.0.0/include/__wmmintrin_pclmul.h 7289OLD_FILES+=usr/lib/clang/10.0.0/include/adxintrin.h 7290OLD_FILES+=usr/lib/clang/10.0.0/include/altivec.h 7291OLD_FILES+=usr/lib/clang/10.0.0/include/ammintrin.h 7292OLD_FILES+=usr/lib/clang/10.0.0/include/arm64intr.h 7293OLD_FILES+=usr/lib/clang/10.0.0/include/arm_acle.h 7294OLD_FILES+=usr/lib/clang/10.0.0/include/arm_cmse.h 7295OLD_FILES+=usr/lib/clang/10.0.0/include/arm_fp16.h 7296OLD_FILES+=usr/lib/clang/10.0.0/include/arm_mve.h 7297OLD_FILES+=usr/lib/clang/10.0.0/include/arm_neon.h 7298OLD_FILES+=usr/lib/clang/10.0.0/include/armintr.h 7299OLD_FILES+=usr/lib/clang/10.0.0/include/avx2intrin.h 7300OLD_FILES+=usr/lib/clang/10.0.0/include/avx512bf16intrin.h 7301OLD_FILES+=usr/lib/clang/10.0.0/include/avx512bitalgintrin.h 7302OLD_FILES+=usr/lib/clang/10.0.0/include/avx512bwintrin.h 7303OLD_FILES+=usr/lib/clang/10.0.0/include/avx512cdintrin.h 7304OLD_FILES+=usr/lib/clang/10.0.0/include/avx512dqintrin.h 7305OLD_FILES+=usr/lib/clang/10.0.0/include/avx512erintrin.h 7306OLD_FILES+=usr/lib/clang/10.0.0/include/avx512fintrin.h 7307OLD_FILES+=usr/lib/clang/10.0.0/include/avx512ifmaintrin.h 7308OLD_FILES+=usr/lib/clang/10.0.0/include/avx512ifmavlintrin.h 7309OLD_FILES+=usr/lib/clang/10.0.0/include/avx512pfintrin.h 7310OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vbmi2intrin.h 7311OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vbmiintrin.h 7312OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vbmivlintrin.h 7313OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlbf16intrin.h 7314OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlbitalgintrin.h 7315OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlbwintrin.h 7316OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlcdintrin.h 7317OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vldqintrin.h 7318OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlintrin.h 7319OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlvbmi2intrin.h 7320OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlvnniintrin.h 7321OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vlvp2intersectintrin.h 7322OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vnniintrin.h 7323OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vp2intersectintrin.h 7324OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vpopcntdqintrin.h 7325OLD_FILES+=usr/lib/clang/10.0.0/include/avx512vpopcntdqvlintrin.h 7326OLD_FILES+=usr/lib/clang/10.0.0/include/avxintrin.h 7327OLD_FILES+=usr/lib/clang/10.0.0/include/bmi2intrin.h 7328OLD_FILES+=usr/lib/clang/10.0.0/include/bmiintrin.h 7329OLD_FILES+=usr/lib/clang/10.0.0/include/cetintrin.h 7330OLD_FILES+=usr/lib/clang/10.0.0/include/cldemoteintrin.h 7331OLD_FILES+=usr/lib/clang/10.0.0/include/clflushoptintrin.h 7332OLD_FILES+=usr/lib/clang/10.0.0/include/clwbintrin.h 7333OLD_FILES+=usr/lib/clang/10.0.0/include/clzerointrin.h 7334OLD_FILES+=usr/lib/clang/10.0.0/include/cpuid.h 7335OLD_FILES+=usr/lib/clang/10.0.0/include/emmintrin.h 7336OLD_FILES+=usr/lib/clang/10.0.0/include/enqcmdintrin.h 7337OLD_FILES+=usr/lib/clang/10.0.0/include/f16cintrin.h 7338OLD_FILES+=usr/lib/clang/10.0.0/include/fma4intrin.h 7339OLD_FILES+=usr/lib/clang/10.0.0/include/fmaintrin.h 7340OLD_FILES+=usr/lib/clang/10.0.0/include/fxsrintrin.h 7341OLD_FILES+=usr/lib/clang/10.0.0/include/gfniintrin.h 7342OLD_FILES+=usr/lib/clang/10.0.0/include/htmintrin.h 7343OLD_FILES+=usr/lib/clang/10.0.0/include/htmxlintrin.h 7344OLD_FILES+=usr/lib/clang/10.0.0/include/ia32intrin.h 7345OLD_FILES+=usr/lib/clang/10.0.0/include/immintrin.h 7346OLD_FILES+=usr/lib/clang/10.0.0/include/invpcidintrin.h 7347OLD_FILES+=usr/lib/clang/10.0.0/include/lwpintrin.h 7348OLD_FILES+=usr/lib/clang/10.0.0/include/lzcntintrin.h 7349OLD_FILES+=usr/lib/clang/10.0.0/include/mm3dnow.h 7350OLD_FILES+=usr/lib/clang/10.0.0/include/mm_malloc.h 7351OLD_FILES+=usr/lib/clang/10.0.0/include/mmintrin.h 7352OLD_FILES+=usr/lib/clang/10.0.0/include/module.modulemap 7353OLD_FILES+=usr/lib/clang/10.0.0/include/movdirintrin.h 7354OLD_FILES+=usr/lib/clang/10.0.0/include/msa.h 7355OLD_FILES+=usr/lib/clang/10.0.0/include/mwaitxintrin.h 7356OLD_FILES+=usr/lib/clang/10.0.0/include/nmmintrin.h 7357OLD_FILES+=usr/lib/clang/10.0.0/include/opencl-c-base.h 7358OLD_FILES+=usr/lib/clang/10.0.0/include/opencl-c.h 7359OLD_FILES+=usr/lib/clang/10.0.0/include/pconfigintrin.h 7360OLD_FILES+=usr/lib/clang/10.0.0/include/pkuintrin.h 7361OLD_FILES+=usr/lib/clang/10.0.0/include/pmmintrin.h 7362OLD_FILES+=usr/lib/clang/10.0.0/include/popcntintrin.h 7363OLD_FILES+=usr/lib/clang/10.0.0/include/prfchwintrin.h 7364OLD_FILES+=usr/lib/clang/10.0.0/include/ptwriteintrin.h 7365OLD_FILES+=usr/lib/clang/10.0.0/include/rdseedintrin.h 7366OLD_FILES+=usr/lib/clang/10.0.0/include/rtmintrin.h 7367OLD_FILES+=usr/lib/clang/10.0.0/include/s390intrin.h 7368OLD_FILES+=usr/lib/clang/10.0.0/include/sgxintrin.h 7369OLD_FILES+=usr/lib/clang/10.0.0/include/shaintrin.h 7370OLD_FILES+=usr/lib/clang/10.0.0/include/smmintrin.h 7371OLD_FILES+=usr/lib/clang/10.0.0/include/tbmintrin.h 7372OLD_FILES+=usr/lib/clang/10.0.0/include/tmmintrin.h 7373OLD_FILES+=usr/lib/clang/10.0.0/include/vadefs.h 7374OLD_FILES+=usr/lib/clang/10.0.0/include/vaesintrin.h 7375OLD_FILES+=usr/lib/clang/10.0.0/include/vecintrin.h 7376OLD_FILES+=usr/lib/clang/10.0.0/include/vpclmulqdqintrin.h 7377OLD_FILES+=usr/lib/clang/10.0.0/include/waitpkgintrin.h 7378OLD_FILES+=usr/lib/clang/10.0.0/include/wbnoinvdintrin.h 7379OLD_FILES+=usr/lib/clang/10.0.0/include/wmmintrin.h 7380OLD_FILES+=usr/lib/clang/10.0.0/include/x86intrin.h 7381OLD_FILES+=usr/lib/clang/10.0.0/include/xmmintrin.h 7382OLD_FILES+=usr/lib/clang/10.0.0/include/xopintrin.h 7383OLD_FILES+=usr/lib/clang/10.0.0/include/xsavecintrin.h 7384OLD_FILES+=usr/lib/clang/10.0.0/include/xsaveintrin.h 7385OLD_FILES+=usr/lib/clang/10.0.0/include/xsaveoptintrin.h 7386OLD_FILES+=usr/lib/clang/10.0.0/include/xsavesintrin.h 7387OLD_FILES+=usr/lib/clang/10.0.0/include/xtestintrin.h 7388OLD_DIRS+=usr/lib/clang/10.0.0/include 7389OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-aarch64.a 7390OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-aarch64.so 7391OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-arm.a 7392OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-arm.so 7393OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-armhf.a 7394OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-armhf.so 7395OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-i386.a 7396OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-i386.so 7397OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 7398OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a 7399OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-preinit-armhf.a 7400OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 7401OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 7402OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 7403OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 7404OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 7405OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a 7406OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan_cxx-armhf.a 7407OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 7408OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 7409OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi-aarch64.a 7410OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi-arm.a 7411OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi-armhf.a 7412OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi-i386.a 7413OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi-x86_64.a 7414OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 7415OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi_diag-arm.a 7416OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi_diag-armhf.a 7417OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi_diag-i386.a 7418OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 7419OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.dd-aarch64.a 7420OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.dd-x86_64.a 7421OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.fuzzer-aarch64.a 7422OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.fuzzer-x86_64.a 7423OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 7424OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 7425OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.msan-aarch64.a 7426OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.msan-x86_64.a 7427OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 7428OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 7429OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-aarch64.a 7430OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-arm.a 7431OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-armhf.a 7432OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-i386.a 7433OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-powerpc.a 7434OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-powerpc64.a 7435OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 7436OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.safestack-aarch64.a 7437OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.safestack-i386.a 7438OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 7439OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats-aarch64.a 7440OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats-arm.a 7441OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats-armhf.a 7442OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats-i386.a 7443OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 7444OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats_client-aarch64.a 7445OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats_client-arm.a 7446OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats_client-armhf.a 7447OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 7448OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 7449OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.tsan-aarch64.a 7450OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 7451OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 7452OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 7453OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 7454OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 7455OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 7456OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 7457OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 7458OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 7459OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 7460OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 7461OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 7462OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 7463OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 7464OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 7465OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 7466OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 7467OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 7468OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-aarch64.a 7469OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-arm.a 7470OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-armhf.a 7471OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-basic-aarch64.a 7472OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-basic-arm.a 7473OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-basic-armhf.a 7474OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-basic-x86_64.a 7475OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 7476OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-fdr-arm.a 7477OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-fdr-armhf.a 7478OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 7479OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 7480OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-profiling-arm.a 7481OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-profiling-armhf.a 7482OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 7483OLD_FILES+=usr/lib/clang/10.0.0/lib/freebsd/libclang_rt.xray-x86_64.a 7484OLD_DIRS+=usr/lib/clang/10.0.0/lib/freebsd 7485OLD_DIRS+=usr/lib/clang/10.0.0/lib 7486OLD_DIRS+=usr/lib/clang/10.0.0 7487 7488# 20200520: xform_userland.h removed 7489OLD_FILES+=usr/include/crypto/xform_userland.h 7490 7491# 20200515: libalias cuseeme protocol support retired 7492OLD_LIBS+=lib/libalias_cuseeme.so 7493OLD_FILES+=usr/lib/libalias_cuseeme.a 7494OLD_FILES+=usr/lib/libalias_cuseeme_p.a 7495 7496# 20200511: Remove deprecated crypto algorithms 7497OLD_FILES+=usr/include/crypto/cast.h 7498OLD_FILES+=usr/include/crypto/castsb.h 7499OLD_FILES+=usr/include/crypto/skipjack.h 7500 7501# 20200511: Remove ubsec(4) 7502OLD_FILES+=usr/share/man/man4/ubsec.4.gz 7503 7504# 20200428: route_var.h moved to net/route 7505OLD_FILES+=usr/include/net/route_var.h 7506 7507# 20200418: Make libauditd private 7508OLD_FILES+=usr/lib/libauditd.a 7509OLD_FILES+=usr/lib/libauditd.so 7510OLD_LIBS+=usr/lib/libauditd.so.5 7511OLD_FILES+=usr/lib/libauditd_p.a 7512 7513# 20200418: Remove bogus man links 7514OLD_FILES+=usr/share/man/man3/getauusernam_R.3.gz 7515OLD_FILES+=usr/share/man/man3/getauclassnam_3.3.gz 7516 7517# 20200414: NFS file handle affinity code for the NFS server re-organized 7518OLD_FILES+=usr/include/nfs/nfs_fha.h 7519 7520# 20200401: Remove procfs-based process debugging 7521OLD_FILES+=usr/include/sys/pioctl.h 7522 7523# 20200330: GDB_LIBEXEC option retired (always true) 7524OLD_FILES+=usr/bin/gdb 7525OLD_FILES+=usr/bin/gdbserver 7526OLD_FILES+=usr/bin/kgdb 7527OLD_FILES+=usr/share/man/man1/gdb.1.gz 7528OLD_FILES+=usr/share/man/man1/gdbserver.1.gz 7529OLD_FILES+=usr/share/man/man1/kgdb.1.gz 7530 7531# 20200327: OCF refactoring 7532OLD_FILES+=usr/include/crypto/cryptosoft.h 7533OLD_FILES+=usr/share/man/man9/crypto_find_driver.9.gz 7534OLD_FILES+=usr/share/man/man9/crypto_register.9.gz 7535OLD_FILES+=usr/share/man/man9/crypto_unregister.9.gz 7536 7537# 20200326: compat libs for libl are no longer built 7538OLD_FILES+=usr/lib32/libfl.a 7539OLD_FILES+=usr/lib32/libl.a 7540OLD_FILES+=usr/lib32/libln.a 7541 7542# 20200323: INTERNALLIB don't install headers anymore 7543OLD_FILES+=usr/include/libelftc.h 7544OLD_FILES+=usr/include/libifconfig.h 7545OLD_FILES+=usr/include/libpmcstat.h 7546 7547# 20200320: cx and ctau drivers retired 7548OLD_FILES+=usr/share/man/man4/ctau.4.gz 7549OLD_FILES+=usr/share/man/man4/cx.4.gz 7550 7551# 20200318: host.conf was deprecated a long time ago 7552OLD_FILES+=etc/host.conf 7553OLD_FILES+=etc/rc.d/nsswitch 7554 7555# 20200310: new clang import which bumps version from 9.0.1 to 10.0.0 7556OLD_FILES+=usr/lib/clang/9.0.1/include/cuda_wrappers/algorithm 7557OLD_FILES+=usr/lib/clang/9.0.1/include/cuda_wrappers/complex 7558OLD_FILES+=usr/lib/clang/9.0.1/include/cuda_wrappers/new 7559OLD_DIRS+=usr/lib/clang/9.0.1/include/cuda_wrappers 7560OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math.h 7561OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/__clang_openmp_math_declares.h 7562OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/cmath 7563OLD_FILES+=usr/lib/clang/9.0.1/include/openmp_wrappers/math.h 7564OLD_DIRS+=usr/lib/clang/9.0.1/include/openmp_wrappers 7565OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/emmintrin.h 7566OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/mm_malloc.h 7567OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/mmintrin.h 7568OLD_FILES+=usr/lib/clang/9.0.1/include/ppc_wrappers/xmmintrin.h 7569OLD_DIRS+=usr/lib/clang/9.0.1/include/ppc_wrappers 7570OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/allocator_interface.h 7571OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/asan_interface.h 7572OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/common_interface_defs.h 7573OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/coverage_interface.h 7574OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/dfsan_interface.h 7575OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/hwasan_interface.h 7576OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/linux_syscall_hooks.h 7577OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/lsan_interface.h 7578OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/msan_interface.h 7579OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/netbsd_syscall_hooks.h 7580OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/scudo_interface.h 7581OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/tsan_interface.h 7582OLD_FILES+=usr/lib/clang/9.0.1/include/sanitizer/tsan_interface_atomic.h 7583OLD_DIRS+=usr/lib/clang/9.0.1/include/sanitizer 7584OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_builtin_vars.h 7585OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_cmath.h 7586OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_complex_builtins.h 7587OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_device_functions.h 7588OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_intrinsics.h 7589OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_libdevice_declares.h 7590OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_math_forward_declares.h 7591OLD_FILES+=usr/lib/clang/9.0.1/include/__clang_cuda_runtime_wrapper.h 7592OLD_FILES+=usr/lib/clang/9.0.1/include/__stddef_max_align_t.h 7593OLD_FILES+=usr/lib/clang/9.0.1/include/__wmmintrin_aes.h 7594OLD_FILES+=usr/lib/clang/9.0.1/include/__wmmintrin_pclmul.h 7595OLD_FILES+=usr/lib/clang/9.0.1/include/adxintrin.h 7596OLD_FILES+=usr/lib/clang/9.0.1/include/altivec.h 7597OLD_FILES+=usr/lib/clang/9.0.1/include/ammintrin.h 7598OLD_FILES+=usr/lib/clang/9.0.1/include/arm64intr.h 7599OLD_FILES+=usr/lib/clang/9.0.1/include/arm_acle.h 7600OLD_FILES+=usr/lib/clang/9.0.1/include/arm_fp16.h 7601OLD_FILES+=usr/lib/clang/9.0.1/include/arm_neon.h 7602OLD_FILES+=usr/lib/clang/9.0.1/include/armintr.h 7603OLD_FILES+=usr/lib/clang/9.0.1/include/avx2intrin.h 7604OLD_FILES+=usr/lib/clang/9.0.1/include/avx512bf16intrin.h 7605OLD_FILES+=usr/lib/clang/9.0.1/include/avx512bitalgintrin.h 7606OLD_FILES+=usr/lib/clang/9.0.1/include/avx512bwintrin.h 7607OLD_FILES+=usr/lib/clang/9.0.1/include/avx512cdintrin.h 7608OLD_FILES+=usr/lib/clang/9.0.1/include/avx512dqintrin.h 7609OLD_FILES+=usr/lib/clang/9.0.1/include/avx512erintrin.h 7610OLD_FILES+=usr/lib/clang/9.0.1/include/avx512fintrin.h 7611OLD_FILES+=usr/lib/clang/9.0.1/include/avx512ifmaintrin.h 7612OLD_FILES+=usr/lib/clang/9.0.1/include/avx512ifmavlintrin.h 7613OLD_FILES+=usr/lib/clang/9.0.1/include/avx512pfintrin.h 7614OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vbmi2intrin.h 7615OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vbmiintrin.h 7616OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vbmivlintrin.h 7617OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlbf16intrin.h 7618OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlbitalgintrin.h 7619OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlbwintrin.h 7620OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlcdintrin.h 7621OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vldqintrin.h 7622OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlintrin.h 7623OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlvbmi2intrin.h 7624OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlvnniintrin.h 7625OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vlvp2intersectintrin.h 7626OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vnniintrin.h 7627OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vp2intersectintrin.h 7628OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vpopcntdqintrin.h 7629OLD_FILES+=usr/lib/clang/9.0.1/include/avx512vpopcntdqvlintrin.h 7630OLD_FILES+=usr/lib/clang/9.0.1/include/avxintrin.h 7631OLD_FILES+=usr/lib/clang/9.0.1/include/bmi2intrin.h 7632OLD_FILES+=usr/lib/clang/9.0.1/include/bmiintrin.h 7633OLD_FILES+=usr/lib/clang/9.0.1/include/cetintrin.h 7634OLD_FILES+=usr/lib/clang/9.0.1/include/cldemoteintrin.h 7635OLD_FILES+=usr/lib/clang/9.0.1/include/clflushoptintrin.h 7636OLD_FILES+=usr/lib/clang/9.0.1/include/clwbintrin.h 7637OLD_FILES+=usr/lib/clang/9.0.1/include/clzerointrin.h 7638OLD_FILES+=usr/lib/clang/9.0.1/include/cpuid.h 7639OLD_FILES+=usr/lib/clang/9.0.1/include/emmintrin.h 7640OLD_FILES+=usr/lib/clang/9.0.1/include/enqcmdintrin.h 7641OLD_FILES+=usr/lib/clang/9.0.1/include/f16cintrin.h 7642OLD_FILES+=usr/lib/clang/9.0.1/include/fma4intrin.h 7643OLD_FILES+=usr/lib/clang/9.0.1/include/fmaintrin.h 7644OLD_FILES+=usr/lib/clang/9.0.1/include/fxsrintrin.h 7645OLD_FILES+=usr/lib/clang/9.0.1/include/gfniintrin.h 7646OLD_FILES+=usr/lib/clang/9.0.1/include/htmintrin.h 7647OLD_FILES+=usr/lib/clang/9.0.1/include/htmxlintrin.h 7648OLD_FILES+=usr/lib/clang/9.0.1/include/ia32intrin.h 7649OLD_FILES+=usr/lib/clang/9.0.1/include/immintrin.h 7650OLD_FILES+=usr/lib/clang/9.0.1/include/invpcidintrin.h 7651OLD_FILES+=usr/lib/clang/9.0.1/include/lwpintrin.h 7652OLD_FILES+=usr/lib/clang/9.0.1/include/lzcntintrin.h 7653OLD_FILES+=usr/lib/clang/9.0.1/include/mm3dnow.h 7654OLD_FILES+=usr/lib/clang/9.0.1/include/mm_malloc.h 7655OLD_FILES+=usr/lib/clang/9.0.1/include/mmintrin.h 7656OLD_FILES+=usr/lib/clang/9.0.1/include/module.modulemap 7657OLD_FILES+=usr/lib/clang/9.0.1/include/movdirintrin.h 7658OLD_FILES+=usr/lib/clang/9.0.1/include/msa.h 7659OLD_FILES+=usr/lib/clang/9.0.1/include/mwaitxintrin.h 7660OLD_FILES+=usr/lib/clang/9.0.1/include/nmmintrin.h 7661OLD_FILES+=usr/lib/clang/9.0.1/include/opencl-c-base.h 7662OLD_FILES+=usr/lib/clang/9.0.1/include/opencl-c.h 7663OLD_FILES+=usr/lib/clang/9.0.1/include/pconfigintrin.h 7664OLD_FILES+=usr/lib/clang/9.0.1/include/pkuintrin.h 7665OLD_FILES+=usr/lib/clang/9.0.1/include/pmmintrin.h 7666OLD_FILES+=usr/lib/clang/9.0.1/include/popcntintrin.h 7667OLD_FILES+=usr/lib/clang/9.0.1/include/prfchwintrin.h 7668OLD_FILES+=usr/lib/clang/9.0.1/include/ptwriteintrin.h 7669OLD_FILES+=usr/lib/clang/9.0.1/include/rdseedintrin.h 7670OLD_FILES+=usr/lib/clang/9.0.1/include/rtmintrin.h 7671OLD_FILES+=usr/lib/clang/9.0.1/include/s390intrin.h 7672OLD_FILES+=usr/lib/clang/9.0.1/include/sgxintrin.h 7673OLD_FILES+=usr/lib/clang/9.0.1/include/shaintrin.h 7674OLD_FILES+=usr/lib/clang/9.0.1/include/smmintrin.h 7675OLD_FILES+=usr/lib/clang/9.0.1/include/tbmintrin.h 7676OLD_FILES+=usr/lib/clang/9.0.1/include/tmmintrin.h 7677OLD_FILES+=usr/lib/clang/9.0.1/include/vadefs.h 7678OLD_FILES+=usr/lib/clang/9.0.1/include/vaesintrin.h 7679OLD_FILES+=usr/lib/clang/9.0.1/include/vecintrin.h 7680OLD_FILES+=usr/lib/clang/9.0.1/include/vpclmulqdqintrin.h 7681OLD_FILES+=usr/lib/clang/9.0.1/include/waitpkgintrin.h 7682OLD_FILES+=usr/lib/clang/9.0.1/include/wbnoinvdintrin.h 7683OLD_FILES+=usr/lib/clang/9.0.1/include/wmmintrin.h 7684OLD_FILES+=usr/lib/clang/9.0.1/include/x86intrin.h 7685OLD_FILES+=usr/lib/clang/9.0.1/include/xmmintrin.h 7686OLD_FILES+=usr/lib/clang/9.0.1/include/xopintrin.h 7687OLD_FILES+=usr/lib/clang/9.0.1/include/xsavecintrin.h 7688OLD_FILES+=usr/lib/clang/9.0.1/include/xsaveintrin.h 7689OLD_FILES+=usr/lib/clang/9.0.1/include/xsaveoptintrin.h 7690OLD_FILES+=usr/lib/clang/9.0.1/include/xsavesintrin.h 7691OLD_FILES+=usr/lib/clang/9.0.1/include/xtestintrin.h 7692OLD_DIRS+=usr/lib/clang/9.0.1/include 7693OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-aarch64.a 7694OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-aarch64.so 7695OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-arm.a 7696OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-arm.so 7697OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-armhf.a 7698OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-armhf.so 7699OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-i386.a 7700OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-i386.so 7701OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 7702OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-arm.a 7703OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-armhf.a 7704OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 7705OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 7706OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 7707OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 7708OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 7709OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-arm.a 7710OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-armhf.a 7711OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 7712OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 7713OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-aarch64.a 7714OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-arm.a 7715OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-armhf.a 7716OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-i386.a 7717OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi-x86_64.a 7718OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 7719OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-arm.a 7720OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-armhf.a 7721OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-i386.a 7722OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 7723OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.dd-aarch64.a 7724OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.dd-x86_64.a 7725OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer-aarch64.a 7726OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer-x86_64.a 7727OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 7728OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 7729OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan-aarch64.a 7730OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan-x86_64.a 7731OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 7732OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 7733OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-aarch64.a 7734OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-arm.a 7735OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-armhf.a 7736OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-i386.a 7737OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-powerpc.a 7738OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-powerpc64.a 7739OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 7740OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.safestack-aarch64.a 7741OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.safestack-i386.a 7742OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 7743OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-aarch64.a 7744OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-arm.a 7745OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-armhf.a 7746OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-i386.a 7747OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 7748OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-aarch64.a 7749OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-arm.a 7750OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-armhf.a 7751OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 7752OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 7753OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan-aarch64.a 7754OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 7755OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 7756OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 7757OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 7758OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 7759OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 7760OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 7761OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 7762OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 7763OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 7764OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 7765OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 7766OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 7767OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 7768OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 7769OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 7770OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 7771OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 7772OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-aarch64.a 7773OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-arm.a 7774OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-armhf.a 7775OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-aarch64.a 7776OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-arm.a 7777OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-armhf.a 7778OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-basic-x86_64.a 7779OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 7780OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-arm.a 7781OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-armhf.a 7782OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 7783OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 7784OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-arm.a 7785OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-armhf.a 7786OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 7787OLD_FILES+=usr/lib/clang/9.0.1/lib/freebsd/libclang_rt.xray-x86_64.a 7788OLD_DIRS+=usr/lib/clang/9.0.1/lib/freebsd 7789OLD_DIRS+=usr/lib/clang/9.0.1/lib 7790OLD_DIRS+=usr/lib/clang/9.0.1 7791 7792# 20200309: amd(8) retired 7793OLD_FILES+=etc/amd.map 7794OLD_FILES+=etc/newsyslog.conf.d/amd.conf 7795OLD_FILES+=etc/rc.d/amd 7796OLD_FILES+=usr/bin/pawd 7797OLD_FILES+=usr/sbin/amd 7798OLD_FILES+=usr/sbin/amq 7799OLD_FILES+=usr/sbin/fixmount 7800OLD_FILES+=usr/sbin/fsinfo 7801OLD_FILES+=usr/sbin/hlfsd 7802OLD_FILES+=usr/sbin/mk-amd-map 7803OLD_FILES+=usr/sbin/wire-test 7804OLD_FILES+=usr/share/examples/etc/amd.map 7805OLD_FILES+=usr/share/man/man1/pawd.1.gz 7806OLD_FILES+=usr/share/man/man5/amd.conf.5.gz 7807OLD_FILES+=usr/share/man/man8/amd.8.gz 7808OLD_FILES+=usr/share/man/man8/amq.8.gz 7809OLD_FILES+=usr/share/man/man8/fixmount.8.gz 7810OLD_FILES+=usr/share/man/man8/fsinfo.8.gz 7811OLD_FILES+=usr/share/man/man8/hlfsd.8.gz 7812OLD_FILES+=usr/share/man/man8/mk-amd-map.8.gz 7813OLD_FILES+=usr/share/man/man8/wire-test.8.gz 7814 7815# 20200301: bktr removed 7816OLD_DIRS+=usr/include/dev/bktr 7817OLD_FILES+=usr/include/dev/bktr/ioctl_bktr.h 7818OLD_FILES+=usr/include/dev/bktr/ioctl_bt848.h 7819OLD_FILES+=usr/include/dev/bktr/ioctl_meteor.h 7820.if ${TARGET_ARCH} == "i386" 7821OLD_FILES+=usr/include/machine/ioctl_bktr.h 7822OLD_FILES+=usr/include/machine/ioctl_meteor.h 7823.endif 7824OLD_FILES+=usr/share/man/man4/bktr.4.gz 7825OLD_FILES+=usr/share/man/man4/brooktree.4.gz 7826 7827# 20200229: GCC 4.2.1 removed 7828OLD_FILES+=usr/bin/g++ 7829OLD_FILES+=usr/bin/gcc 7830OLD_FILES+=usr/share/man/man1/g++.1.gz 7831OLD_FILES+=usr/share/man/man1/gcc.1.gz 7832OLD_FILES+=usr/bin/gcpp 7833OLD_FILES+=usr/bin/gperf 7834OLD_FILES+=usr/include/c++/4.2/algorithm 7835OLD_FILES+=usr/include/c++/4.2/backward/algo.h 7836OLD_FILES+=usr/include/c++/4.2/backward/algobase.h 7837OLD_FILES+=usr/include/c++/4.2/backward/alloc.h 7838OLD_FILES+=usr/include/c++/4.2/backward/backward_warning.h 7839OLD_FILES+=usr/include/c++/4.2/backward/bvector.h 7840OLD_FILES+=usr/include/c++/4.2/backward/complex.h 7841OLD_FILES+=usr/include/c++/4.2/backward/defalloc.h 7842OLD_FILES+=usr/include/c++/4.2/backward/deque.h 7843OLD_FILES+=usr/include/c++/4.2/backward/fstream.h 7844OLD_FILES+=usr/include/c++/4.2/backward/function.h 7845OLD_FILES+=usr/include/c++/4.2/backward/hash_map.h 7846OLD_FILES+=usr/include/c++/4.2/backward/hash_set.h 7847OLD_FILES+=usr/include/c++/4.2/backward/hashtable.h 7848OLD_FILES+=usr/include/c++/4.2/backward/heap.h 7849OLD_FILES+=usr/include/c++/4.2/backward/iomanip.h 7850OLD_FILES+=usr/include/c++/4.2/backward/iostream.h 7851OLD_FILES+=usr/include/c++/4.2/backward/istream.h 7852OLD_FILES+=usr/include/c++/4.2/backward/iterator.h 7853OLD_FILES+=usr/include/c++/4.2/backward/list.h 7854OLD_FILES+=usr/include/c++/4.2/backward/map.h 7855OLD_FILES+=usr/include/c++/4.2/backward/multimap.h 7856OLD_FILES+=usr/include/c++/4.2/backward/multiset.h 7857OLD_FILES+=usr/include/c++/4.2/backward/new.h 7858OLD_FILES+=usr/include/c++/4.2/backward/ostream.h 7859OLD_FILES+=usr/include/c++/4.2/backward/pair.h 7860OLD_FILES+=usr/include/c++/4.2/backward/queue.h 7861OLD_FILES+=usr/include/c++/4.2/backward/rope.h 7862OLD_FILES+=usr/include/c++/4.2/backward/set.h 7863OLD_FILES+=usr/include/c++/4.2/backward/slist.h 7864OLD_FILES+=usr/include/c++/4.2/backward/stack.h 7865OLD_FILES+=usr/include/c++/4.2/backward/stream.h 7866OLD_FILES+=usr/include/c++/4.2/backward/streambuf.h 7867OLD_FILES+=usr/include/c++/4.2/backward/strstream 7868OLD_FILES+=usr/include/c++/4.2/backward/tempbuf.h 7869OLD_FILES+=usr/include/c++/4.2/backward/tree.h 7870OLD_FILES+=usr/include/c++/4.2/backward/vector.h 7871OLD_FILES+=usr/include/c++/4.2/bits/allocator.h 7872OLD_FILES+=usr/include/c++/4.2/bits/atomic_word.h 7873OLD_FILES+=usr/include/c++/4.2/bits/basic_file.h 7874OLD_FILES+=usr/include/c++/4.2/bits/basic_ios.h 7875OLD_FILES+=usr/include/c++/4.2/bits/basic_ios.tcc 7876OLD_FILES+=usr/include/c++/4.2/bits/basic_string.h 7877OLD_FILES+=usr/include/c++/4.2/bits/basic_string.tcc 7878OLD_FILES+=usr/include/c++/4.2/bits/boost_concept_check.h 7879OLD_FILES+=usr/include/c++/4.2/bits/c++allocator.h 7880OLD_FILES+=usr/include/c++/4.2/bits/c++config.h 7881OLD_FILES+=usr/include/c++/4.2/bits/c++io.h 7882OLD_FILES+=usr/include/c++/4.2/bits/c++locale.h 7883OLD_FILES+=usr/include/c++/4.2/bits/c++locale_internal.h 7884OLD_FILES+=usr/include/c++/4.2/bits/char_traits.h 7885OLD_FILES+=usr/include/c++/4.2/bits/cmath.tcc 7886OLD_FILES+=usr/include/c++/4.2/bits/codecvt.h 7887OLD_FILES+=usr/include/c++/4.2/bits/compatibility.h 7888OLD_FILES+=usr/include/c++/4.2/bits/concept_check.h 7889OLD_FILES+=usr/include/c++/4.2/bits/cpp_type_traits.h 7890OLD_FILES+=usr/include/c++/4.2/bits/cpu_defines.h 7891OLD_FILES+=usr/include/c++/4.2/bits/ctype_base.h 7892OLD_FILES+=usr/include/c++/4.2/bits/ctype_inline.h 7893OLD_FILES+=usr/include/c++/4.2/bits/ctype_noninline.h 7894OLD_FILES+=usr/include/c++/4.2/bits/cxxabi_tweaks.h 7895OLD_FILES+=usr/include/c++/4.2/bits/deque.tcc 7896OLD_FILES+=usr/include/c++/4.2/bits/fstream.tcc 7897OLD_FILES+=usr/include/c++/4.2/bits/functexcept.h 7898OLD_FILES+=usr/include/c++/4.2/bits/gslice.h 7899OLD_FILES+=usr/include/c++/4.2/bits/gslice_array.h 7900OLD_FILES+=usr/include/c++/4.2/bits/gthr-default.h 7901OLD_FILES+=usr/include/c++/4.2/bits/gthr-posix.h 7902OLD_FILES+=usr/include/c++/4.2/bits/gthr-single.h 7903OLD_FILES+=usr/include/c++/4.2/bits/gthr-tpf.h 7904OLD_FILES+=usr/include/c++/4.2/bits/gthr.h 7905OLD_FILES+=usr/include/c++/4.2/bits/indirect_array.h 7906OLD_FILES+=usr/include/c++/4.2/bits/ios_base.h 7907OLD_FILES+=usr/include/c++/4.2/bits/istream.tcc 7908OLD_FILES+=usr/include/c++/4.2/bits/list.tcc 7909OLD_FILES+=usr/include/c++/4.2/bits/locale_classes.h 7910OLD_FILES+=usr/include/c++/4.2/bits/locale_facets.h 7911OLD_FILES+=usr/include/c++/4.2/bits/locale_facets.tcc 7912OLD_FILES+=usr/include/c++/4.2/bits/localefwd.h 7913OLD_FILES+=usr/include/c++/4.2/bits/mask_array.h 7914OLD_FILES+=usr/include/c++/4.2/bits/messages_members.h 7915OLD_FILES+=usr/include/c++/4.2/bits/os_defines.h 7916OLD_FILES+=usr/include/c++/4.2/bits/ostream.tcc 7917OLD_FILES+=usr/include/c++/4.2/bits/ostream_insert.h 7918OLD_FILES+=usr/include/c++/4.2/bits/postypes.h 7919OLD_FILES+=usr/include/c++/4.2/bits/slice_array.h 7920OLD_FILES+=usr/include/c++/4.2/bits/sstream.tcc 7921OLD_FILES+=usr/include/c++/4.2/bits/stl_algo.h 7922OLD_FILES+=usr/include/c++/4.2/bits/stl_algobase.h 7923OLD_FILES+=usr/include/c++/4.2/bits/stl_bvector.h 7924OLD_FILES+=usr/include/c++/4.2/bits/stl_construct.h 7925OLD_FILES+=usr/include/c++/4.2/bits/stl_deque.h 7926OLD_FILES+=usr/include/c++/4.2/bits/stl_function.h 7927OLD_FILES+=usr/include/c++/4.2/bits/stl_heap.h 7928OLD_FILES+=usr/include/c++/4.2/bits/stl_iterator.h 7929OLD_FILES+=usr/include/c++/4.2/bits/stl_iterator_base_funcs.h 7930OLD_FILES+=usr/include/c++/4.2/bits/stl_iterator_base_types.h 7931OLD_FILES+=usr/include/c++/4.2/bits/stl_list.h 7932OLD_FILES+=usr/include/c++/4.2/bits/stl_map.h 7933OLD_FILES+=usr/include/c++/4.2/bits/stl_multimap.h 7934OLD_FILES+=usr/include/c++/4.2/bits/stl_multiset.h 7935OLD_FILES+=usr/include/c++/4.2/bits/stl_numeric.h 7936OLD_FILES+=usr/include/c++/4.2/bits/stl_pair.h 7937OLD_FILES+=usr/include/c++/4.2/bits/stl_queue.h 7938OLD_FILES+=usr/include/c++/4.2/bits/stl_raw_storage_iter.h 7939OLD_FILES+=usr/include/c++/4.2/bits/stl_relops.h 7940OLD_FILES+=usr/include/c++/4.2/bits/stl_set.h 7941OLD_FILES+=usr/include/c++/4.2/bits/stl_stack.h 7942OLD_FILES+=usr/include/c++/4.2/bits/stl_tempbuf.h 7943OLD_FILES+=usr/include/c++/4.2/bits/stl_tree.h 7944OLD_FILES+=usr/include/c++/4.2/bits/stl_uninitialized.h 7945OLD_FILES+=usr/include/c++/4.2/bits/stl_vector.h 7946OLD_FILES+=usr/include/c++/4.2/bits/stream_iterator.h 7947OLD_FILES+=usr/include/c++/4.2/bits/streambuf.tcc 7948OLD_FILES+=usr/include/c++/4.2/bits/streambuf_iterator.h 7949OLD_FILES+=usr/include/c++/4.2/bits/stringfwd.h 7950OLD_FILES+=usr/include/c++/4.2/bits/time_members.h 7951OLD_FILES+=usr/include/c++/4.2/bits/valarray_after.h 7952OLD_FILES+=usr/include/c++/4.2/bits/valarray_array.h 7953OLD_FILES+=usr/include/c++/4.2/bits/valarray_array.tcc 7954OLD_FILES+=usr/include/c++/4.2/bits/valarray_before.h 7955OLD_FILES+=usr/include/c++/4.2/bits/vector.tcc 7956OLD_FILES+=usr/include/c++/4.2/bitset 7957OLD_FILES+=usr/include/c++/4.2/cassert 7958OLD_FILES+=usr/include/c++/4.2/cctype 7959OLD_FILES+=usr/include/c++/4.2/cerrno 7960OLD_FILES+=usr/include/c++/4.2/cfloat 7961OLD_FILES+=usr/include/c++/4.2/ciso646 7962OLD_FILES+=usr/include/c++/4.2/climits 7963OLD_FILES+=usr/include/c++/4.2/clocale 7964OLD_FILES+=usr/include/c++/4.2/cmath 7965OLD_FILES+=usr/include/c++/4.2/complex 7966OLD_FILES+=usr/include/c++/4.2/csetjmp 7967OLD_FILES+=usr/include/c++/4.2/csignal 7968OLD_FILES+=usr/include/c++/4.2/cstdarg 7969OLD_FILES+=usr/include/c++/4.2/cstddef 7970OLD_FILES+=usr/include/c++/4.2/cstdio 7971OLD_FILES+=usr/include/c++/4.2/cstdlib 7972OLD_FILES+=usr/include/c++/4.2/cstring 7973OLD_FILES+=usr/include/c++/4.2/ctime 7974OLD_FILES+=usr/include/c++/4.2/cwchar 7975OLD_FILES+=usr/include/c++/4.2/cwctype 7976OLD_FILES+=usr/include/c++/4.2/cxxabi.h 7977OLD_FILES+=usr/include/c++/4.2/debug/bitset 7978OLD_FILES+=usr/include/c++/4.2/debug/debug.h 7979OLD_FILES+=usr/include/c++/4.2/debug/deque 7980OLD_FILES+=usr/include/c++/4.2/debug/formatter.h 7981OLD_FILES+=usr/include/c++/4.2/debug/functions.h 7982OLD_FILES+=usr/include/c++/4.2/debug/hash_map 7983OLD_FILES+=usr/include/c++/4.2/debug/hash_map.h 7984OLD_FILES+=usr/include/c++/4.2/debug/hash_multimap.h 7985OLD_FILES+=usr/include/c++/4.2/debug/hash_multiset.h 7986OLD_FILES+=usr/include/c++/4.2/debug/hash_set 7987OLD_FILES+=usr/include/c++/4.2/debug/hash_set.h 7988OLD_FILES+=usr/include/c++/4.2/debug/list 7989OLD_FILES+=usr/include/c++/4.2/debug/macros.h 7990OLD_FILES+=usr/include/c++/4.2/debug/map 7991OLD_FILES+=usr/include/c++/4.2/debug/map.h 7992OLD_FILES+=usr/include/c++/4.2/debug/multimap.h 7993OLD_FILES+=usr/include/c++/4.2/debug/multiset.h 7994OLD_FILES+=usr/include/c++/4.2/debug/safe_base.h 7995OLD_FILES+=usr/include/c++/4.2/debug/safe_iterator.h 7996OLD_FILES+=usr/include/c++/4.2/debug/safe_iterator.tcc 7997OLD_FILES+=usr/include/c++/4.2/debug/safe_sequence.h 7998OLD_FILES+=usr/include/c++/4.2/debug/set 7999OLD_FILES+=usr/include/c++/4.2/debug/set.h 8000OLD_FILES+=usr/include/c++/4.2/debug/string 8001OLD_FILES+=usr/include/c++/4.2/debug/vector 8002OLD_FILES+=usr/include/c++/4.2/deque 8003OLD_FILES+=usr/include/c++/4.2/exception 8004OLD_FILES+=usr/include/c++/4.2/exception_defines.h 8005OLD_FILES+=usr/include/c++/4.2/ext/algorithm 8006OLD_FILES+=usr/include/c++/4.2/ext/array_allocator.h 8007OLD_FILES+=usr/include/c++/4.2/ext/atomicity.h 8008OLD_FILES+=usr/include/c++/4.2/ext/bitmap_allocator.h 8009OLD_FILES+=usr/include/c++/4.2/ext/codecvt_specializations.h 8010OLD_FILES+=usr/include/c++/4.2/ext/concurrence.h 8011OLD_FILES+=usr/include/c++/4.2/ext/debug_allocator.h 8012OLD_FILES+=usr/include/c++/4.2/ext/functional 8013OLD_FILES+=usr/include/c++/4.2/ext/hash_fun.h 8014OLD_FILES+=usr/include/c++/4.2/ext/hash_map 8015OLD_FILES+=usr/include/c++/4.2/ext/hash_set 8016OLD_FILES+=usr/include/c++/4.2/ext/hashtable.h 8017OLD_FILES+=usr/include/c++/4.2/ext/iterator 8018OLD_FILES+=usr/include/c++/4.2/ext/malloc_allocator.h 8019OLD_FILES+=usr/include/c++/4.2/ext/memory 8020OLD_FILES+=usr/include/c++/4.2/ext/mt_allocator.h 8021OLD_FILES+=usr/include/c++/4.2/ext/new_allocator.h 8022OLD_FILES+=usr/include/c++/4.2/ext/numeric 8023OLD_FILES+=usr/include/c++/4.2/ext/numeric_traits.h 8024OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/assoc_container.hpp 8025OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy/basic_tree_policy_base.hpp 8026OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy/null_node_metadata.hpp 8027OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy/traits.hpp 8028OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/basic_types.hpp 8029OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp 8030OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp 8031OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp 8032OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp 8033OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp 8034OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp 8035OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp 8036OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp 8037OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp 8038OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp 8039OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp 8040OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp 8041OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp 8042OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp 8043OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp 8044OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp 8045OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_/traits.hpp 8046OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp 8047OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/const_iterator.hpp 8048OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/const_point_iterator.hpp 8049OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp 8050OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp 8051OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp 8052OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/entry_pred.hpp 8053OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp 8054OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp 8055OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp 8056OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp 8057OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp 8058OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp 8059OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/resize_policy.hpp 8060OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp 8061OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp 8062OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp 8063OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp 8064OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp 8065OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp 8066OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp 8067OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp 8068OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp 8069OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp 8070OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp 8071OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp 8072OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp 8073OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp 8074OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp 8075OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp 8076OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp 8077OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp 8078OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp 8079OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp 8080OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp 8081OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp 8082OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp 8083OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp 8084OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp 8085OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp 8086OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp 8087OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp 8088OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp 8089OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp 8090OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp 8091OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp 8092OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp 8093OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp 8094OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp 8095OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp 8096OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp 8097OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/standard_policies.hpp 8098OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp 8099OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/cond_dealtor.hpp 8100OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/constructors_destructor_fn_imps.hpp 8101OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/container_base_dispatch.hpp 8102OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/eq_fn/eq_by_less.hpp 8103OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp 8104OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp 8105OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp 8106OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp 8107OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp 8108OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp 8109OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp 8110OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp 8111OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp 8112OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp 8113OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp 8114OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp 8115OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp 8116OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp 8117OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp 8118OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp 8119OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp 8120OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp 8121OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp 8122OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp 8123OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp 8124OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp 8125OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp 8126OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/standard_policies.hpp 8127OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp 8128OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp 8129OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp 8130OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp 8131OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp 8132OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp 8133OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp 8134OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp 8135OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp 8136OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp 8137OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp 8138OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp 8139OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp 8140OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp 8141OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp 8142OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/const_point_iterator.hpp 8143OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp 8144OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp 8145OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp 8146OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp 8147OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp 8148OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp 8149OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp 8150OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp 8151OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/null_metadata.hpp 8152OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp 8153OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp 8154OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp 8155OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp 8156OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp 8157OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp 8158OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp 8159OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp 8160OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp 8161OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp 8162OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/lu_map_.hpp 8163OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp 8164OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/counter_lu_metadata.hpp 8165OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/counter_lu_policy_imp.hpp 8166OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/mtf_lu_policy_imp.hpp 8167OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp 8168OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/map_debug_base.hpp 8169OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/cond_dtor.hpp 8170OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp 8171OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp 8172OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp 8173OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp 8174OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp 8175OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp 8176OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp 8177OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp 8178OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp 8179OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp 8180OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_/traits.hpp 8181OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp 8182OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp 8183OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp 8184OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp 8185OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp 8186OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp 8187OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp 8188OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/child_iterator.hpp 8189OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/cond_dtor_entry_dealtor.hpp 8190OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/const_child_iterator.hpp 8191OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp 8192OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp 8193OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp 8194OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp 8195OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/head.hpp 8196OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp 8197OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp 8198OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/internal_node.hpp 8199OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp 8200OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/leaf.hpp 8201OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/node_base.hpp 8202OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/node_iterators.hpp 8203OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/node_metadata_base.hpp 8204OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp 8205OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/point_iterators.hpp 8206OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp 8207OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp 8208OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp 8209OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp 8210OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/split_join_branch_bag.hpp 8211OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/synth_e_access_traits.hpp 8212OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp 8213OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/traits.hpp 8214OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp 8215OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/priority_queue_base_dispatch.hpp 8216OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp 8217OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp 8218OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp 8219OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp 8220OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp 8221OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp 8222OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/node.hpp 8223OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp 8224OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp 8225OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_/traits.hpp 8226OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp 8227OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp 8228OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp 8229OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp 8230OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp 8231OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp 8232OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp 8233OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp 8234OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp 8235OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp 8236OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp 8237OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp 8238OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp 8239OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp 8240OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp 8241OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp 8242OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp 8243OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp 8244OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp 8245OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp 8246OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp 8247OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp 8248OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp 8249OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/node.hpp 8250OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp 8251OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp 8252OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp 8253OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_/traits.hpp 8254OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/standard_policies.hpp 8255OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp 8256OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp 8257OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp 8258OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp 8259OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp 8260OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp 8261OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp 8262OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp 8263OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp 8264OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/null_node_update_imp.hpp 8265OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp 8266OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp 8267OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/tree_trace_base.hpp 8268OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp 8269OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/null_node_update_imp.hpp 8270OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp 8271OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp 8272OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/sample_trie_e_access_traits.hpp 8273OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp 8274OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/string_trie_e_access_traits_imp.hpp 8275OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp 8276OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/type_utils.hpp 8277OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/types_traits.hpp 8278OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp 8279OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/const_point_iterator.hpp 8280OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/iterator.hpp 8281OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp 8282OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/exception.hpp 8283OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/hash_policy.hpp 8284OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/list_update_policy.hpp 8285OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/priority_queue.hpp 8286OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/tag_and_trait.hpp 8287OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/tree_policy.hpp 8288OLD_FILES+=usr/include/c++/4.2/ext/pb_ds/trie_policy.hpp 8289OLD_FILES+=usr/include/c++/4.2/ext/pod_char_traits.h 8290OLD_FILES+=usr/include/c++/4.2/ext/pool_allocator.h 8291OLD_FILES+=usr/include/c++/4.2/ext/rb_tree 8292OLD_FILES+=usr/include/c++/4.2/ext/rc_string_base.h 8293OLD_FILES+=usr/include/c++/4.2/ext/rope 8294OLD_FILES+=usr/include/c++/4.2/ext/ropeimpl.h 8295OLD_FILES+=usr/include/c++/4.2/ext/slist 8296OLD_FILES+=usr/include/c++/4.2/ext/sso_string_base.h 8297OLD_FILES+=usr/include/c++/4.2/ext/stdio_filebuf.h 8298OLD_FILES+=usr/include/c++/4.2/ext/stdio_sync_filebuf.h 8299OLD_FILES+=usr/include/c++/4.2/ext/throw_allocator.h 8300OLD_FILES+=usr/include/c++/4.2/ext/type_traits.h 8301OLD_FILES+=usr/include/c++/4.2/ext/typelist.h 8302OLD_FILES+=usr/include/c++/4.2/ext/vstring.h 8303OLD_FILES+=usr/include/c++/4.2/ext/vstring.tcc 8304OLD_FILES+=usr/include/c++/4.2/ext/vstring_fwd.h 8305OLD_FILES+=usr/include/c++/4.2/ext/vstring_util.h 8306OLD_FILES+=usr/include/c++/4.2/fstream 8307OLD_FILES+=usr/include/c++/4.2/functional 8308OLD_FILES+=usr/include/c++/4.2/iomanip 8309OLD_FILES+=usr/include/c++/4.2/ios 8310OLD_FILES+=usr/include/c++/4.2/iosfwd 8311OLD_FILES+=usr/include/c++/4.2/iostream 8312OLD_FILES+=usr/include/c++/4.2/istream 8313OLD_FILES+=usr/include/c++/4.2/iterator 8314OLD_FILES+=usr/include/c++/4.2/limits 8315OLD_FILES+=usr/include/c++/4.2/list 8316OLD_FILES+=usr/include/c++/4.2/locale 8317OLD_FILES+=usr/include/c++/4.2/map 8318OLD_FILES+=usr/include/c++/4.2/memory 8319OLD_FILES+=usr/include/c++/4.2/new 8320OLD_FILES+=usr/include/c++/4.2/numeric 8321OLD_FILES+=usr/include/c++/4.2/ostream 8322OLD_FILES+=usr/include/c++/4.2/queue 8323OLD_FILES+=usr/include/c++/4.2/set 8324OLD_FILES+=usr/include/c++/4.2/sstream 8325OLD_FILES+=usr/include/c++/4.2/stack 8326OLD_FILES+=usr/include/c++/4.2/stdexcept 8327OLD_FILES+=usr/include/c++/4.2/streambuf 8328OLD_FILES+=usr/include/c++/4.2/string 8329OLD_FILES+=usr/include/c++/4.2/tr1/array 8330OLD_FILES+=usr/include/c++/4.2/tr1/bind_iterate.h 8331OLD_FILES+=usr/include/c++/4.2/tr1/bind_repeat.h 8332OLD_FILES+=usr/include/c++/4.2/tr1/boost_shared_ptr.h 8333OLD_FILES+=usr/include/c++/4.2/tr1/cctype 8334OLD_FILES+=usr/include/c++/4.2/tr1/cfenv 8335OLD_FILES+=usr/include/c++/4.2/tr1/cfloat 8336OLD_FILES+=usr/include/c++/4.2/tr1/cinttypes 8337OLD_FILES+=usr/include/c++/4.2/tr1/climits 8338OLD_FILES+=usr/include/c++/4.2/tr1/cmath 8339OLD_FILES+=usr/include/c++/4.2/tr1/common.h 8340OLD_FILES+=usr/include/c++/4.2/tr1/complex 8341OLD_FILES+=usr/include/c++/4.2/tr1/cstdarg 8342OLD_FILES+=usr/include/c++/4.2/tr1/cstdbool 8343OLD_FILES+=usr/include/c++/4.2/tr1/cstdint 8344OLD_FILES+=usr/include/c++/4.2/tr1/cstdio 8345OLD_FILES+=usr/include/c++/4.2/tr1/cstdlib 8346OLD_FILES+=usr/include/c++/4.2/tr1/ctgmath 8347OLD_FILES+=usr/include/c++/4.2/tr1/ctime 8348OLD_FILES+=usr/include/c++/4.2/tr1/ctype.h 8349OLD_FILES+=usr/include/c++/4.2/tr1/cwchar 8350OLD_FILES+=usr/include/c++/4.2/tr1/cwctype 8351OLD_FILES+=usr/include/c++/4.2/tr1/fenv.h 8352OLD_FILES+=usr/include/c++/4.2/tr1/float.h 8353OLD_FILES+=usr/include/c++/4.2/tr1/functional 8354OLD_FILES+=usr/include/c++/4.2/tr1/functional_hash.h 8355OLD_FILES+=usr/include/c++/4.2/tr1/functional_iterate.h 8356OLD_FILES+=usr/include/c++/4.2/tr1/hashtable 8357OLD_FILES+=usr/include/c++/4.2/tr1/hashtable_policy.h 8358OLD_FILES+=usr/include/c++/4.2/tr1/inttypes.h 8359OLD_FILES+=usr/include/c++/4.2/tr1/limits.h 8360OLD_FILES+=usr/include/c++/4.2/tr1/math.h 8361OLD_FILES+=usr/include/c++/4.2/tr1/memory 8362OLD_FILES+=usr/include/c++/4.2/tr1/mu_iterate.h 8363OLD_FILES+=usr/include/c++/4.2/tr1/random 8364OLD_FILES+=usr/include/c++/4.2/tr1/random.tcc 8365OLD_FILES+=usr/include/c++/4.2/tr1/ref_fwd.h 8366OLD_FILES+=usr/include/c++/4.2/tr1/ref_wrap_iterate.h 8367OLD_FILES+=usr/include/c++/4.2/tr1/repeat.h 8368OLD_FILES+=usr/include/c++/4.2/tr1/stdarg.h 8369OLD_FILES+=usr/include/c++/4.2/tr1/stdbool.h 8370OLD_FILES+=usr/include/c++/4.2/tr1/stdint.h 8371OLD_FILES+=usr/include/c++/4.2/tr1/stdio.h 8372OLD_FILES+=usr/include/c++/4.2/tr1/stdlib.h 8373OLD_FILES+=usr/include/c++/4.2/tr1/tgmath.h 8374OLD_FILES+=usr/include/c++/4.2/tr1/tuple 8375OLD_FILES+=usr/include/c++/4.2/tr1/tuple_defs.h 8376OLD_FILES+=usr/include/c++/4.2/tr1/tuple_iterate.h 8377OLD_FILES+=usr/include/c++/4.2/tr1/type_traits 8378OLD_FILES+=usr/include/c++/4.2/tr1/type_traits_fwd.h 8379OLD_FILES+=usr/include/c++/4.2/tr1/unordered_map 8380OLD_FILES+=usr/include/c++/4.2/tr1/unordered_set 8381OLD_FILES+=usr/include/c++/4.2/tr1/utility 8382OLD_FILES+=usr/include/c++/4.2/tr1/wchar.h 8383OLD_FILES+=usr/include/c++/4.2/tr1/wctype.h 8384OLD_FILES+=usr/include/c++/4.2/typeinfo 8385OLD_FILES+=usr/include/c++/4.2/utility 8386OLD_FILES+=usr/include/c++/4.2/valarray 8387OLD_FILES+=usr/include/c++/4.2/vector 8388.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 8389OLD_FILES+=usr/include/gcc/4.2/__wmmintrin_aes.h 8390OLD_FILES+=usr/include/gcc/4.2/__wmmintrin_pclmul.h 8391OLD_FILES+=usr/include/gcc/4.2/ammintrin.h 8392OLD_FILES+=usr/include/gcc/4.2/emmintrin.h 8393OLD_FILES+=usr/include/gcc/4.2/mm3dnow.h 8394OLD_FILES+=usr/include/gcc/4.2/mm_malloc.h 8395OLD_FILES+=usr/include/gcc/4.2/mmintrin.h 8396OLD_FILES+=usr/include/gcc/4.2/pmmintrin.h 8397OLD_FILES+=usr/include/gcc/4.2/tmmintrin.h 8398OLD_FILES+=usr/include/gcc/4.2/wmmintrin.h 8399OLD_FILES+=usr/include/gcc/4.2/xmmintrin.h 8400.elif ${TARGET_ARCH} == "arm" 8401OLD_FILES+=usr/include/gcc/4.2/mmintrin.h 8402.elif ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "powerpc64" 8403OLD_FILES+=usr/include/gcc/4.2/altivec.h 8404OLD_FILES+=usr/include/gcc/4.2/ppc-asm.h 8405OLD_FILES+=usr/include/gcc/4.2/spe.h 8406.endif 8407OLD_FILES+=usr/lib/libgcov.a 8408OLD_FILES+=usr/lib/libgomp.a 8409OLD_FILES+=usr/lib/libstdc++.a 8410OLD_FILES+=usr/lib/libstdc++.so 8411OLD_LIBS+=usr/lib/libstdc++.so.6 8412OLD_FILES+=usr/lib/libstdc++_p.a 8413OLD_FILES+=usr/lib/libsupc++.a 8414OLD_FILES+=usr/lib/libsupc++.so 8415OLD_LIBS+=usr/lib/libsupc++.so.1 8416OLD_FILES+=usr/lib/libsupc++_p.a 8417OLD_LIBS+=usr/lib/libgomp.so.1 8418OLD_FILES+=usr/lib/libgomp_p.a 8419OLD_FILES+=usr/libexec/cc1 8420OLD_FILES+=usr/libexec/cc1plus 8421OLD_FILES+=usr/share/man/man1/gcpp.1.gz 8422OLD_FILES+=usr/share/man/man1/gperf.1.gz 8423OLD_FILES+=usr/share/man/man7/gperf.7.gz 8424OLD_DIRS+=usr/include/c++/4.2/tr1 8425OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/unordered_iterator 8426OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/trie_policy 8427OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/tree_policy 8428OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/thin_heap_ 8429OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/splay_tree_ 8430OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/resize_policy 8431OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/rc_binomial_heap_ 8432OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/rb_tree_map_ 8433OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/pat_trie_ 8434OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/pairing_heap_ 8435OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/ov_tree_map_ 8436OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_policy 8437OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/list_update_map_ 8438OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/left_child_next_sibling_heap_ 8439OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/hash_fn 8440OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/gp_hash_table_map_ 8441OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/eq_fn 8442OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/cc_hash_table_map_ 8443OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_base_ 8444OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/binomial_heap_ 8445OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/binary_heap_ 8446OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/bin_search_tree_ 8447OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail/basic_tree_policy 8448OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds/detail 8449OLD_DIRS+=usr/include/c++/4.2/ext/pb_ds 8450OLD_DIRS+=usr/include/c++/4.2/ext 8451OLD_DIRS+=usr/include/c++/4.2/debug 8452OLD_DIRS+=usr/include/c++/4.2/bits 8453OLD_DIRS+=usr/include/c++/4.2/backward 8454OLD_DIRS+=usr/include/c++/4.2 8455OLD_DIRS+=usr/include/gcc/4.2 8456OLD_DIRS+=usr/include/gcc 8457 8458# 20200220: Upgrade of ncurses, shlib bumped to version 9 8459OLD_LIBS+=lib/libncurses.so.8 8460OLD_LIBS+=lib/libncursesw.so.8 8461 8462# 20200206: Remove elf2aout 8463OLD_FILES+=usr/bin/elf2aout 8464OLD_FILES+=usr/share/man/man1/elf2aout.1.gz 8465 8466# 20200204: simple_httpd removed 8467OLD_FILES+=usr/sbin/simple_httpd 8468 8469# 20200127: vpo removed 8470OLD_FILES+=usr/include/dev/ppbus/vpoio.h 8471OLD_FILES+=usr/share/man/man4/imm.4.gz 8472OLD_FILES+=usr/share/man/man4/vpo.4.gz 8473 8474# 20200104: gcc libssp removed 8475OLD_FILES+=usr/include/ssp/ssp.h 8476OLD_FILES+=usr/include/ssp/stdio.h 8477OLD_FILES+=usr/include/ssp/string.h 8478OLD_FILES+=usr/include/ssp/unistd.h 8479OLD_DIRS+=usr/include/ssp 8480OLD_FILES+=usr/lib/libssp.a 8481 8482# 20191229: GEOM_SCHED class and gsched tool removed 8483OLD_LIBS+=lib/geom/geom_sched.so 8484OLD_FILES+=sbin/gsched 8485OLD_FILES+=usr/share/man/man8/gsched.8.gz 8486 8487# 20191222: new clang import which bumps version from 9.0.0 to 9.0.1 8488OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/algorithm 8489OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/complex 8490OLD_FILES+=usr/lib/clang/9.0.0/include/cuda_wrappers/new 8491OLD_DIRS+=usr/lib/clang/9.0.0/include/cuda_wrappers 8492OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/__clang_openmp_math.h 8493OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/__clang_openmp_math_declares.h 8494OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/cmath 8495OLD_FILES+=usr/lib/clang/9.0.0/include/openmp_wrappers/math.h 8496OLD_DIRS+=usr/lib/clang/9.0.0/include/openmp_wrappers 8497OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/emmintrin.h 8498OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/mm_malloc.h 8499OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/mmintrin.h 8500OLD_FILES+=usr/lib/clang/9.0.0/include/ppc_wrappers/xmmintrin.h 8501OLD_DIRS+=usr/lib/clang/9.0.0/include/ppc_wrappers 8502OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/allocator_interface.h 8503OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/asan_interface.h 8504OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/common_interface_defs.h 8505OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/coverage_interface.h 8506OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/dfsan_interface.h 8507OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/hwasan_interface.h 8508OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/linux_syscall_hooks.h 8509OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/lsan_interface.h 8510OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/msan_interface.h 8511OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/netbsd_syscall_hooks.h 8512OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/scudo_interface.h 8513OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/tsan_interface.h 8514OLD_FILES+=usr/lib/clang/9.0.0/include/sanitizer/tsan_interface_atomic.h 8515OLD_DIRS+=usr/lib/clang/9.0.0/include/sanitizer 8516OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_builtin_vars.h 8517OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_cmath.h 8518OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_complex_builtins.h 8519OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_device_functions.h 8520OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_intrinsics.h 8521OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_libdevice_declares.h 8522OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_math_forward_declares.h 8523OLD_FILES+=usr/lib/clang/9.0.0/include/__clang_cuda_runtime_wrapper.h 8524OLD_FILES+=usr/lib/clang/9.0.0/include/__stddef_max_align_t.h 8525OLD_FILES+=usr/lib/clang/9.0.0/include/__wmmintrin_aes.h 8526OLD_FILES+=usr/lib/clang/9.0.0/include/__wmmintrin_pclmul.h 8527OLD_FILES+=usr/lib/clang/9.0.0/include/adxintrin.h 8528OLD_FILES+=usr/lib/clang/9.0.0/include/altivec.h 8529OLD_FILES+=usr/lib/clang/9.0.0/include/ammintrin.h 8530OLD_FILES+=usr/lib/clang/9.0.0/include/arm64intr.h 8531OLD_FILES+=usr/lib/clang/9.0.0/include/arm_acle.h 8532OLD_FILES+=usr/lib/clang/9.0.0/include/arm_fp16.h 8533OLD_FILES+=usr/lib/clang/9.0.0/include/arm_neon.h 8534OLD_FILES+=usr/lib/clang/9.0.0/include/armintr.h 8535OLD_FILES+=usr/lib/clang/9.0.0/include/avx2intrin.h 8536OLD_FILES+=usr/lib/clang/9.0.0/include/avx512bf16intrin.h 8537OLD_FILES+=usr/lib/clang/9.0.0/include/avx512bitalgintrin.h 8538OLD_FILES+=usr/lib/clang/9.0.0/include/avx512bwintrin.h 8539OLD_FILES+=usr/lib/clang/9.0.0/include/avx512cdintrin.h 8540OLD_FILES+=usr/lib/clang/9.0.0/include/avx512dqintrin.h 8541OLD_FILES+=usr/lib/clang/9.0.0/include/avx512erintrin.h 8542OLD_FILES+=usr/lib/clang/9.0.0/include/avx512fintrin.h 8543OLD_FILES+=usr/lib/clang/9.0.0/include/avx512ifmaintrin.h 8544OLD_FILES+=usr/lib/clang/9.0.0/include/avx512ifmavlintrin.h 8545OLD_FILES+=usr/lib/clang/9.0.0/include/avx512pfintrin.h 8546OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vbmi2intrin.h 8547OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vbmiintrin.h 8548OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vbmivlintrin.h 8549OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlbf16intrin.h 8550OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlbitalgintrin.h 8551OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlbwintrin.h 8552OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlcdintrin.h 8553OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vldqintrin.h 8554OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlintrin.h 8555OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlvbmi2intrin.h 8556OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlvnniintrin.h 8557OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vlvp2intersectintrin.h 8558OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vnniintrin.h 8559OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vp2intersectintrin.h 8560OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vpopcntdqintrin.h 8561OLD_FILES+=usr/lib/clang/9.0.0/include/avx512vpopcntdqvlintrin.h 8562OLD_FILES+=usr/lib/clang/9.0.0/include/avxintrin.h 8563OLD_FILES+=usr/lib/clang/9.0.0/include/bmi2intrin.h 8564OLD_FILES+=usr/lib/clang/9.0.0/include/bmiintrin.h 8565OLD_FILES+=usr/lib/clang/9.0.0/include/cetintrin.h 8566OLD_FILES+=usr/lib/clang/9.0.0/include/cldemoteintrin.h 8567OLD_FILES+=usr/lib/clang/9.0.0/include/clflushoptintrin.h 8568OLD_FILES+=usr/lib/clang/9.0.0/include/clwbintrin.h 8569OLD_FILES+=usr/lib/clang/9.0.0/include/clzerointrin.h 8570OLD_FILES+=usr/lib/clang/9.0.0/include/cpuid.h 8571OLD_FILES+=usr/lib/clang/9.0.0/include/emmintrin.h 8572OLD_FILES+=usr/lib/clang/9.0.0/include/enqcmdintrin.h 8573OLD_FILES+=usr/lib/clang/9.0.0/include/f16cintrin.h 8574OLD_FILES+=usr/lib/clang/9.0.0/include/fma4intrin.h 8575OLD_FILES+=usr/lib/clang/9.0.0/include/fmaintrin.h 8576OLD_FILES+=usr/lib/clang/9.0.0/include/fxsrintrin.h 8577OLD_FILES+=usr/lib/clang/9.0.0/include/gfniintrin.h 8578OLD_FILES+=usr/lib/clang/9.0.0/include/htmintrin.h 8579OLD_FILES+=usr/lib/clang/9.0.0/include/htmxlintrin.h 8580OLD_FILES+=usr/lib/clang/9.0.0/include/ia32intrin.h 8581OLD_FILES+=usr/lib/clang/9.0.0/include/immintrin.h 8582OLD_FILES+=usr/lib/clang/9.0.0/include/invpcidintrin.h 8583OLD_FILES+=usr/lib/clang/9.0.0/include/lwpintrin.h 8584OLD_FILES+=usr/lib/clang/9.0.0/include/lzcntintrin.h 8585OLD_FILES+=usr/lib/clang/9.0.0/include/mm3dnow.h 8586OLD_FILES+=usr/lib/clang/9.0.0/include/mm_malloc.h 8587OLD_FILES+=usr/lib/clang/9.0.0/include/mmintrin.h 8588OLD_FILES+=usr/lib/clang/9.0.0/include/module.modulemap 8589OLD_FILES+=usr/lib/clang/9.0.0/include/movdirintrin.h 8590OLD_FILES+=usr/lib/clang/9.0.0/include/msa.h 8591OLD_FILES+=usr/lib/clang/9.0.0/include/mwaitxintrin.h 8592OLD_FILES+=usr/lib/clang/9.0.0/include/nmmintrin.h 8593OLD_FILES+=usr/lib/clang/9.0.0/include/opencl-c-base.h 8594OLD_FILES+=usr/lib/clang/9.0.0/include/opencl-c.h 8595OLD_FILES+=usr/lib/clang/9.0.0/include/pconfigintrin.h 8596OLD_FILES+=usr/lib/clang/9.0.0/include/pkuintrin.h 8597OLD_FILES+=usr/lib/clang/9.0.0/include/pmmintrin.h 8598OLD_FILES+=usr/lib/clang/9.0.0/include/popcntintrin.h 8599OLD_FILES+=usr/lib/clang/9.0.0/include/prfchwintrin.h 8600OLD_FILES+=usr/lib/clang/9.0.0/include/ptwriteintrin.h 8601OLD_FILES+=usr/lib/clang/9.0.0/include/rdseedintrin.h 8602OLD_FILES+=usr/lib/clang/9.0.0/include/rtmintrin.h 8603OLD_FILES+=usr/lib/clang/9.0.0/include/s390intrin.h 8604OLD_FILES+=usr/lib/clang/9.0.0/include/sgxintrin.h 8605OLD_FILES+=usr/lib/clang/9.0.0/include/shaintrin.h 8606OLD_FILES+=usr/lib/clang/9.0.0/include/smmintrin.h 8607OLD_FILES+=usr/lib/clang/9.0.0/include/tbmintrin.h 8608OLD_FILES+=usr/lib/clang/9.0.0/include/tmmintrin.h 8609OLD_FILES+=usr/lib/clang/9.0.0/include/vadefs.h 8610OLD_FILES+=usr/lib/clang/9.0.0/include/vaesintrin.h 8611OLD_FILES+=usr/lib/clang/9.0.0/include/vecintrin.h 8612OLD_FILES+=usr/lib/clang/9.0.0/include/vpclmulqdqintrin.h 8613OLD_FILES+=usr/lib/clang/9.0.0/include/waitpkgintrin.h 8614OLD_FILES+=usr/lib/clang/9.0.0/include/wbnoinvdintrin.h 8615OLD_FILES+=usr/lib/clang/9.0.0/include/wmmintrin.h 8616OLD_FILES+=usr/lib/clang/9.0.0/include/x86intrin.h 8617OLD_FILES+=usr/lib/clang/9.0.0/include/xmmintrin.h 8618OLD_FILES+=usr/lib/clang/9.0.0/include/xopintrin.h 8619OLD_FILES+=usr/lib/clang/9.0.0/include/xsavecintrin.h 8620OLD_FILES+=usr/lib/clang/9.0.0/include/xsaveintrin.h 8621OLD_FILES+=usr/lib/clang/9.0.0/include/xsaveoptintrin.h 8622OLD_FILES+=usr/lib/clang/9.0.0/include/xsavesintrin.h 8623OLD_FILES+=usr/lib/clang/9.0.0/include/xtestintrin.h 8624OLD_DIRS+=usr/lib/clang/9.0.0/include 8625OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-aarch64.a 8626OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-aarch64.so 8627OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-arm.a 8628OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-arm.so 8629OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-armhf.a 8630OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-armhf.so 8631OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-i386.a 8632OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-i386.so 8633OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-aarch64.a 8634OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a 8635OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-armhf.a 8636OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 8637OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 8638OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 8639OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 8640OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-aarch64.a 8641OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a 8642OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-armhf.a 8643OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 8644OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 8645OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-aarch64.a 8646OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-arm.a 8647OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-armhf.a 8648OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-i386.a 8649OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi-x86_64.a 8650OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-aarch64.a 8651OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-arm.a 8652OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-armhf.a 8653OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-i386.a 8654OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.cfi_diag-x86_64.a 8655OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.dd-aarch64.a 8656OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.dd-x86_64.a 8657OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer-aarch64.a 8658OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer-x86_64.a 8659OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-aarch64.a 8660OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.fuzzer_no_main-x86_64.a 8661OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan-aarch64.a 8662OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan-x86_64.a 8663OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan_cxx-aarch64.a 8664OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 8665OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-aarch64.a 8666OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-arm.a 8667OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-armhf.a 8668OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-i386.a 8669OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-powerpc.a 8670OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-powerpc64.a 8671OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 8672OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.safestack-aarch64.a 8673OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.safestack-i386.a 8674OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 8675OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-aarch64.a 8676OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-arm.a 8677OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-armhf.a 8678OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-i386.a 8679OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 8680OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-aarch64.a 8681OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-arm.a 8682OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-armhf.a 8683OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 8684OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 8685OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan-aarch64.a 8686OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 8687OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan_cxx-aarch64.a 8688OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 8689OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-aarch64.a 8690OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-arm.a 8691OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-armhf.a 8692OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 8693OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 8694OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-aarch64.a 8695OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 8696OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-armhf.a 8697OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 8698OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 8699OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-aarch64.a 8700OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 8701OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-armhf.a 8702OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 8703OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 8704OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-aarch64.a 8705OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-arm.a 8706OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-armhf.a 8707OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-aarch64.a 8708OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-arm.a 8709OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-armhf.a 8710OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-basic-x86_64.a 8711OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-aarch64.a 8712OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-arm.a 8713OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-armhf.a 8714OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-fdr-x86_64.a 8715OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-aarch64.a 8716OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-arm.a 8717OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-armhf.a 8718OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-profiling-x86_64.a 8719OLD_FILES+=usr/lib/clang/9.0.0/lib/freebsd/libclang_rt.xray-x86_64.a 8720OLD_DIRS+=usr/lib/clang/9.0.0/lib/freebsd 8721OLD_DIRS+=usr/lib/clang/9.0.0/lib 8722OLD_DIRS+=usr/lib/clang/9.0.0 8723# 20191221: Update libpcap from 1.9.0 to 1.9.1 8724OLD_FILES+=usr/share/man/man3/pcap_set_immediate_mode.3.gz 8725OLD_FILES+=usr/share/man/man3/pcap_set_protocol.3.gz 8726# 20191214: Removal of sranddev(3) 8727OLD_FILES+=usr/share/man/man3/sranddev.3.gz 8728# 20191213: Renamed (BIT|CPU)_NAND to (BIT|CPU)_ANDNOT 8729OLD_FILES+=usr/share/man/man9/BIT_NAND.9.gz 8730OLD_FILES+=usr/share/man/man9/CPU_NAND.9.gz 8731# 20191213: remove timeout(9) 8732OLD_FILES+=usr/share/man/man9/callout_handle_init.9.gz 8733OLD_FILES+=usr/share/man/man9/timeout.9.gz 8734OLD_FILES+=usr/share/man/man9/untimeout.9.gz 8735# 20191128: Removal of trm(4) 8736OLD_FILES+=usr/share/man/man4/trm.4.gz 8737# 20191121: Removal of sio(4) 8738OLD_FILES+=usr/share/man/man4/sio.4.gz 8739# 20191105: picobsd(8), et al, removed 8740OLD_FILES+=usr/share/man/man8/picobsd.8.gz 8741# 20191017: taskqueue_start_threads_pinned became taskqueue_start_threads_cpuset 8742OLD_FILES+=usr/share/man/man9/taskqueue_start_threads_pinned.9.gz 8743# 20191009: new clang import which bumps version from 8.0.1 to 9.0.0 8744OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/allocator_interface.h 8745OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/asan_interface.h 8746OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/common_interface_defs.h 8747OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/coverage_interface.h 8748OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/dfsan_interface.h 8749OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/esan_interface.h 8750OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/hwasan_interface.h 8751OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/linux_syscall_hooks.h 8752OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/lsan_interface.h 8753OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/msan_interface.h 8754OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/netbsd_syscall_hooks.h 8755OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/scudo_interface.h 8756OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/tsan_interface.h 8757OLD_FILES+=usr/lib/clang/8.0.1/include/sanitizer/tsan_interface_atomic.h 8758OLD_DIRS+=usr/lib/clang/8.0.1/include/sanitizer 8759OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_builtin_vars.h 8760OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_cmath.h 8761OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_complex_builtins.h 8762OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_device_functions.h 8763OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_intrinsics.h 8764OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_libdevice_declares.h 8765OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_math_forward_declares.h 8766OLD_FILES+=usr/lib/clang/8.0.1/include/__clang_cuda_runtime_wrapper.h 8767OLD_FILES+=usr/lib/clang/8.0.1/include/__stddef_max_align_t.h 8768OLD_FILES+=usr/lib/clang/8.0.1/include/__wmmintrin_aes.h 8769OLD_FILES+=usr/lib/clang/8.0.1/include/__wmmintrin_pclmul.h 8770OLD_FILES+=usr/lib/clang/8.0.1/include/adxintrin.h 8771OLD_FILES+=usr/lib/clang/8.0.1/include/altivec.h 8772OLD_FILES+=usr/lib/clang/8.0.1/include/ammintrin.h 8773OLD_FILES+=usr/lib/clang/8.0.1/include/arm64intr.h 8774OLD_FILES+=usr/lib/clang/8.0.1/include/arm_acle.h 8775OLD_FILES+=usr/lib/clang/8.0.1/include/arm_fp16.h 8776OLD_FILES+=usr/lib/clang/8.0.1/include/arm_neon.h 8777OLD_FILES+=usr/lib/clang/8.0.1/include/armintr.h 8778OLD_FILES+=usr/lib/clang/8.0.1/include/avx2intrin.h 8779OLD_FILES+=usr/lib/clang/8.0.1/include/avx512bitalgintrin.h 8780OLD_FILES+=usr/lib/clang/8.0.1/include/avx512bwintrin.h 8781OLD_FILES+=usr/lib/clang/8.0.1/include/avx512cdintrin.h 8782OLD_FILES+=usr/lib/clang/8.0.1/include/avx512dqintrin.h 8783OLD_FILES+=usr/lib/clang/8.0.1/include/avx512erintrin.h 8784OLD_FILES+=usr/lib/clang/8.0.1/include/avx512fintrin.h 8785OLD_FILES+=usr/lib/clang/8.0.1/include/avx512ifmaintrin.h 8786OLD_FILES+=usr/lib/clang/8.0.1/include/avx512ifmavlintrin.h 8787OLD_FILES+=usr/lib/clang/8.0.1/include/avx512pfintrin.h 8788OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vbmi2intrin.h 8789OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vbmiintrin.h 8790OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vbmivlintrin.h 8791OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vlbitalgintrin.h 8792OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vlbwintrin.h 8793OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vlcdintrin.h 8794OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vldqintrin.h 8795OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vlintrin.h 8796OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vlvbmi2intrin.h 8797OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vlvnniintrin.h 8798OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vnniintrin.h 8799OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vpopcntdqintrin.h 8800OLD_FILES+=usr/lib/clang/8.0.1/include/avx512vpopcntdqvlintrin.h 8801OLD_FILES+=usr/lib/clang/8.0.1/include/avxintrin.h 8802OLD_FILES+=usr/lib/clang/8.0.1/include/bmi2intrin.h 8803OLD_FILES+=usr/lib/clang/8.0.1/include/bmiintrin.h 8804OLD_FILES+=usr/lib/clang/8.0.1/include/cetintrin.h 8805OLD_FILES+=usr/lib/clang/8.0.1/include/cldemoteintrin.h 8806OLD_FILES+=usr/lib/clang/8.0.1/include/clflushoptintrin.h 8807OLD_FILES+=usr/lib/clang/8.0.1/include/clwbintrin.h 8808OLD_FILES+=usr/lib/clang/8.0.1/include/clzerointrin.h 8809OLD_FILES+=usr/lib/clang/8.0.1/include/cpuid.h 8810OLD_FILES+=usr/lib/clang/8.0.1/include/emmintrin.h 8811OLD_FILES+=usr/lib/clang/8.0.1/include/f16cintrin.h 8812OLD_FILES+=usr/lib/clang/8.0.1/include/fma4intrin.h 8813OLD_FILES+=usr/lib/clang/8.0.1/include/fmaintrin.h 8814OLD_FILES+=usr/lib/clang/8.0.1/include/fxsrintrin.h 8815OLD_FILES+=usr/lib/clang/8.0.1/include/gfniintrin.h 8816OLD_FILES+=usr/lib/clang/8.0.1/include/htmintrin.h 8817OLD_FILES+=usr/lib/clang/8.0.1/include/htmxlintrin.h 8818OLD_FILES+=usr/lib/clang/8.0.1/include/ia32intrin.h 8819OLD_FILES+=usr/lib/clang/8.0.1/include/immintrin.h 8820OLD_FILES+=usr/lib/clang/8.0.1/include/invpcidintrin.h 8821OLD_FILES+=usr/lib/clang/8.0.1/include/lwpintrin.h 8822OLD_FILES+=usr/lib/clang/8.0.1/include/lzcntintrin.h 8823OLD_FILES+=usr/lib/clang/8.0.1/include/mm3dnow.h 8824OLD_FILES+=usr/lib/clang/8.0.1/include/mm_malloc.h 8825OLD_FILES+=usr/lib/clang/8.0.1/include/mmintrin.h 8826OLD_FILES+=usr/lib/clang/8.0.1/include/module.modulemap 8827OLD_FILES+=usr/lib/clang/8.0.1/include/movdirintrin.h 8828OLD_FILES+=usr/lib/clang/8.0.1/include/msa.h 8829OLD_FILES+=usr/lib/clang/8.0.1/include/mwaitxintrin.h 8830OLD_FILES+=usr/lib/clang/8.0.1/include/nmmintrin.h 8831OLD_FILES+=usr/lib/clang/8.0.1/include/opencl-c.h 8832OLD_FILES+=usr/lib/clang/8.0.1/include/pconfigintrin.h 8833OLD_FILES+=usr/lib/clang/8.0.1/include/pkuintrin.h 8834OLD_FILES+=usr/lib/clang/8.0.1/include/pmmintrin.h 8835OLD_FILES+=usr/lib/clang/8.0.1/include/popcntintrin.h 8836OLD_FILES+=usr/lib/clang/8.0.1/include/prfchwintrin.h 8837OLD_FILES+=usr/lib/clang/8.0.1/include/ptwriteintrin.h 8838OLD_FILES+=usr/lib/clang/8.0.1/include/rdseedintrin.h 8839OLD_FILES+=usr/lib/clang/8.0.1/include/rtmintrin.h 8840OLD_FILES+=usr/lib/clang/8.0.1/include/s390intrin.h 8841OLD_FILES+=usr/lib/clang/8.0.1/include/sgxintrin.h 8842OLD_FILES+=usr/lib/clang/8.0.1/include/shaintrin.h 8843OLD_FILES+=usr/lib/clang/8.0.1/include/smmintrin.h 8844OLD_FILES+=usr/lib/clang/8.0.1/include/tbmintrin.h 8845OLD_FILES+=usr/lib/clang/8.0.1/include/tmmintrin.h 8846OLD_FILES+=usr/lib/clang/8.0.1/include/vadefs.h 8847OLD_FILES+=usr/lib/clang/8.0.1/include/vaesintrin.h 8848OLD_FILES+=usr/lib/clang/8.0.1/include/vecintrin.h 8849OLD_FILES+=usr/lib/clang/8.0.1/include/vpclmulqdqintrin.h 8850OLD_FILES+=usr/lib/clang/8.0.1/include/waitpkgintrin.h 8851OLD_FILES+=usr/lib/clang/8.0.1/include/wbnoinvdintrin.h 8852OLD_FILES+=usr/lib/clang/8.0.1/include/wmmintrin.h 8853OLD_FILES+=usr/lib/clang/8.0.1/include/x86intrin.h 8854OLD_FILES+=usr/lib/clang/8.0.1/include/xmmintrin.h 8855OLD_FILES+=usr/lib/clang/8.0.1/include/xopintrin.h 8856OLD_FILES+=usr/lib/clang/8.0.1/include/xsavecintrin.h 8857OLD_FILES+=usr/lib/clang/8.0.1/include/xsaveintrin.h 8858OLD_FILES+=usr/lib/clang/8.0.1/include/xsaveoptintrin.h 8859OLD_FILES+=usr/lib/clang/8.0.1/include/xsavesintrin.h 8860OLD_FILES+=usr/lib/clang/8.0.1/include/xtestintrin.h 8861OLD_DIRS+=usr/lib/clang/8.0.1/include 8862OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan-i386.a 8863OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan-i386.so 8864OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 8865OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 8866OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 8867OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 8868OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 8869OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 8870OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.msan-x86_64.a 8871OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 8872OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.profile-aarch64.a 8873OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.profile-arm.a 8874OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.profile-armhf.a 8875OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.profile-i386.a 8876OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 8877OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.safestack-i386.a 8878OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 8879OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.stats-i386.a 8880OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 8881OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 8882OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 8883OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 8884OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 8885OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 8886OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 8887OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 8888OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 8889OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 8890OLD_FILES+=usr/lib/clang/8.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 8891OLD_DIRS+=usr/lib/clang/8.0.1/lib/freebsd 8892OLD_DIRS+=usr/lib/clang/8.0.1/lib 8893OLD_DIRS+=usr/lib/clang/8.0.1 8894# 20191009: libc++ 9.0.0 removed some experimental files 8895OLD_FILES+=usr/include/c++/v1/experimental/any 8896OLD_FILES+=usr/include/c++/v1/experimental/chrono 8897OLD_FILES+=usr/include/c++/v1/experimental/numeric 8898OLD_FILES+=usr/include/c++/v1/experimental/optional 8899OLD_FILES+=usr/include/c++/v1/experimental/ratio 8900OLD_FILES+=usr/include/c++/v1/experimental/string_view 8901OLD_FILES+=usr/include/c++/v1/experimental/system_error 8902OLD_FILES+=usr/include/c++/v1/experimental/tuple 8903OLD_FILES+=usr/lib/libc++fs.a 8904# 20191003: Remove useless ZFS tests 8905OLD_FILES+=usr/tests/sys/cddl/zfs/tests/cli_root/zpool_create/zpool_create_013_neg.ksh 8906OLD_FILES+=usr/tests/sys/cddl/zfs/tests/cli_root/zpool_create/zpool_create_014_neg.ksh 8907OLD_FILES+=usr/tests/sys/cddl/zfs/tests/cli_root/zpool_create/zpool_create_016_pos.ksh 8908# 20190910: mklocale(1) and colldef(1) removed 8909OLD_FILES+=usr/bin/mklocale 8910OLD_FILES+=usr/share/man/man1/mklocale.1.gz 8911OLD_FILES+=usr/bin/colldef 8912OLD_FILES+=usr/share/man/man1/colldef.1.gz 8913# 20190904: Remove boot1.efifat and gptboot.efifat (which never should have been) 8914OLD_FILES+=boot/boot1.efifat 8915OLD_FILES+=boot/gptboot.efifat 8916# 20190903: pc-sysinstall(8) removed 8917OLD_FILES+=usr/share/examples/pc-sysinstall/README 8918OLD_FILES+=usr/share/examples/pc-sysinstall/pc-autoinstall.conf 8919OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.fbsd-netinstall 8920OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.geli 8921OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.gmirror 8922OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.netinstall 8923OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.restore 8924OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.rsync 8925OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.upgrade 8926OLD_FILES+=usr/share/examples/pc-sysinstall/pcinstall.cfg.zfs 8927OLD_FILES+=usr/share/man/man8/pc-sysinstall.8.gz 8928OLD_FILES+=usr/share/pc-sysinstall/backend-partmanager/create-part.sh 8929OLD_FILES+=usr/share/pc-sysinstall/backend-partmanager/delete-part.sh 8930OLD_FILES+=usr/share/pc-sysinstall/backend-query/detect-emulation.sh 8931OLD_FILES+=usr/share/pc-sysinstall/backend-query/detect-laptop.sh 8932OLD_FILES+=usr/share/pc-sysinstall/backend-query/detect-nics.sh 8933OLD_FILES+=usr/share/pc-sysinstall/backend-query/disk-info.sh 8934OLD_FILES+=usr/share/pc-sysinstall/backend-query/disk-list.sh 8935OLD_FILES+=usr/share/pc-sysinstall/backend-query/disk-part.sh 8936OLD_FILES+=usr/share/pc-sysinstall/backend-query/enable-net.sh 8937OLD_FILES+=usr/share/pc-sysinstall/backend-query/get-packages.sh 8938OLD_FILES+=usr/share/pc-sysinstall/backend-query/list-components.sh 8939OLD_FILES+=usr/share/pc-sysinstall/backend-query/list-config.sh 8940OLD_FILES+=usr/share/pc-sysinstall/backend-query/list-mirrors.sh 8941OLD_FILES+=usr/share/pc-sysinstall/backend-query/list-packages.sh 8942OLD_FILES+=usr/share/pc-sysinstall/backend-query/list-rsync-backups.sh 8943OLD_FILES+=usr/share/pc-sysinstall/backend-query/list-tzones.sh 8944OLD_FILES+=usr/share/pc-sysinstall/backend-query/query-langs.sh 8945OLD_FILES+=usr/share/pc-sysinstall/backend-query/send-logs.sh 8946OLD_FILES+=usr/share/pc-sysinstall/backend-query/setup-ssh-keys.sh 8947OLD_FILES+=usr/share/pc-sysinstall/backend-query/set-mirror.sh 8948OLD_FILES+=usr/share/pc-sysinstall/backend-query/sys-mem.sh 8949OLD_FILES+=usr/share/pc-sysinstall/backend-query/test-live.sh 8950OLD_FILES+=usr/share/pc-sysinstall/backend-query/test-netup.sh 8951OLD_FILES+=usr/share/pc-sysinstall/backend-query/update-part-list.sh 8952OLD_FILES+=usr/share/pc-sysinstall/backend-query/xkeyboard-layouts.sh 8953OLD_FILES+=usr/share/pc-sysinstall/backend-query/xkeyboard-models.sh 8954OLD_FILES+=usr/share/pc-sysinstall/backend-query/xkeyboard-variants.sh 8955OLD_FILES+=usr/share/pc-sysinstall/backend/functions-bsdlabel.sh 8956OLD_FILES+=usr/share/pc-sysinstall/backend/functions-cleanup.sh 8957OLD_FILES+=usr/share/pc-sysinstall/backend/functions-disk.sh 8958OLD_FILES+=usr/share/pc-sysinstall/backend/functions-extractimage.sh 8959OLD_FILES+=usr/share/pc-sysinstall/backend/functions-ftp.sh 8960OLD_FILES+=usr/share/pc-sysinstall/backend/functions-installcomponents.sh 8961OLD_FILES+=usr/share/pc-sysinstall/backend/functions-installpackages.sh 8962OLD_FILES+=usr/share/pc-sysinstall/backend/functions-localize.sh 8963OLD_FILES+=usr/share/pc-sysinstall/backend/functions-mountdisk.sh 8964OLD_FILES+=usr/share/pc-sysinstall/backend/functions-mountoptical.sh 8965OLD_FILES+=usr/share/pc-sysinstall/backend/functions-networking.sh 8966OLD_FILES+=usr/share/pc-sysinstall/backend/functions-newfs.sh 8967OLD_FILES+=usr/share/pc-sysinstall/backend/functions-parse.sh 8968OLD_FILES+=usr/share/pc-sysinstall/backend/functions-packages.sh 8969OLD_FILES+=usr/share/pc-sysinstall/backend/functions-runcommands.sh 8970OLD_FILES+=usr/share/pc-sysinstall/backend/functions-unmount.sh 8971OLD_FILES+=usr/share/pc-sysinstall/backend/functions-upgrade.sh 8972OLD_FILES+=usr/share/pc-sysinstall/backend/functions-users.sh 8973OLD_FILES+=usr/share/pc-sysinstall/backend/functions.sh 8974OLD_FILES+=usr/share/pc-sysinstall/backend/installimage.sh 8975OLD_FILES+=usr/share/pc-sysinstall/backend/parseconfig.sh 8976OLD_FILES+=usr/share/pc-sysinstall/backend/startautoinstall.sh 8977OLD_FILES+=usr/share/pc-sysinstall/conf/avail-langs 8978OLD_FILES+=usr/share/pc-sysinstall/conf/exclude-from-upgrade 8979OLD_FILES+=usr/share/pc-sysinstall/conf/license/bsd-en.txt 8980OLD_FILES+=usr/share/pc-sysinstall/conf/license/intel-en.txt 8981OLD_FILES+=usr/share/pc-sysinstall/conf/license/nvidia-en.txt 8982OLD_FILES+=usr/share/pc-sysinstall/conf/pc-sysinstall.conf 8983OLD_FILES+=usr/share/pc-sysinstall/doc/help-disk-list 8984OLD_FILES+=usr/share/pc-sysinstall/doc/help-disk-size 8985OLD_FILES+=usr/share/pc-sysinstall/doc/help-index 8986OLD_FILES+=usr/share/pc-sysinstall/doc/help-start-autoinstall 8987OLD_FILES+=usr/sbin/pc-sysinstall 8988OLD_DIRS+=usr/share/examples/pc-sysinstall 8989OLD_DIRS+=usr/share/pc-sysinstall/backend 8990OLD_DIRS+=usr/share/pc-sysinstall/backend-partmanager 8991OLD_DIRS+=usr/share/pc-sysinstall/backend-query 8992OLD_DIRS+=usr/share/pc-sysinstall/conf/license 8993OLD_DIRS+=usr/share/pc-sysinstall/conf 8994OLD_DIRS+=usr/share/pc-sysinstall/doc 8995OLD_DIRS+=usr/share/pc-sysinstall 8996# 20190825: zlib 1.0.4 removed from kernel 8997OLD_FILES+=usr/include/sys/zlib.h 8998OLD_FILES+=usr/include/sys/zutil.h 8999# 20190817: pft_ping.py and sniffer.py moved to /usr/tests/sys/netpfil/common 9000OLD_FILES+=usr/tests/sys/netpfil/pf/sniffer.py 9001OLD_FILES+=usr/tests/sys/netpfil/pf/pft_ping.py 9002# 20190816: dir.h removed from POSIX 9003OLD_FILES+=usr/include/sys/dir.h 9004# 20190813: deprecated GEOM classes removed 9005OLD_FILES+=usr/share/man/man4/geom_fox.4.gz 9006# 20190729: gzip'ed a.out support removed 9007OLD_FILES+=usr/include/sys/inflate.h 9008# 20190722: cap_random(3) removed 9009OLD_LIBS+=lib/casper/libcap_random.so.1 9010OLD_FILES+=usr/include/casper/cap_random.h 9011OLD_LIBS+=usr/lib/libcap_random.so 9012OLD_FILES+=usr/share/man/man3/libcap_random.3.gz 9013OLD_FILES+=usr/share/man/man3/cap_random.3.gz 9014OLD_FILES+=usr/share/man/man3/cap_random_buf.3.gz 9015# 20190708: vm_page_hold() and _unhold() removed 9016OLD_FILES+=usr/share/man/man9/vm_page_hold.9.gz 9017OLD_FILES+=usr/share/man/man9/vm_page_unhold.9.gz 9018# 20190625: Remove NAND and NANDFS support 9019OLD_FILES+=usr/share/man/man4/nand.4.gz 9020OLD_FILES+=usr/share/man/man4/nandsim.4.gz 9021# 20190618: sys/capability.h removed (sys/capsicum.h is the one to use) 9022OLD_FILES+=usr/include/sys/capability.h 9023# 20190615: sys/pwm.h renamed to dev/pwmc.h 9024OLD_FILES+=usr/include/sys/pwm.h 9025# 20190612: new clang import which bumps version from 8.0.0 to 8.0.1 9026OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/allocator_interface.h 9027OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/asan_interface.h 9028OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/common_interface_defs.h 9029OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/coverage_interface.h 9030OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/dfsan_interface.h 9031OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/esan_interface.h 9032OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/hwasan_interface.h 9033OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/linux_syscall_hooks.h 9034OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/lsan_interface.h 9035OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/msan_interface.h 9036OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/netbsd_syscall_hooks.h 9037OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/scudo_interface.h 9038OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/tsan_interface.h 9039OLD_FILES+=usr/lib/clang/8.0.0/include/sanitizer/tsan_interface_atomic.h 9040OLD_DIRS+=usr/lib/clang/8.0.0/include/sanitizer 9041OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_builtin_vars.h 9042OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_cmath.h 9043OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_complex_builtins.h 9044OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_device_functions.h 9045OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_intrinsics.h 9046OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_libdevice_declares.h 9047OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_math_forward_declares.h 9048OLD_FILES+=usr/lib/clang/8.0.0/include/__clang_cuda_runtime_wrapper.h 9049OLD_FILES+=usr/lib/clang/8.0.0/include/__stddef_max_align_t.h 9050OLD_FILES+=usr/lib/clang/8.0.0/include/__wmmintrin_aes.h 9051OLD_FILES+=usr/lib/clang/8.0.0/include/__wmmintrin_pclmul.h 9052OLD_FILES+=usr/lib/clang/8.0.0/include/adxintrin.h 9053OLD_FILES+=usr/lib/clang/8.0.0/include/altivec.h 9054OLD_FILES+=usr/lib/clang/8.0.0/include/ammintrin.h 9055OLD_FILES+=usr/lib/clang/8.0.0/include/arm64intr.h 9056OLD_FILES+=usr/lib/clang/8.0.0/include/arm_acle.h 9057OLD_FILES+=usr/lib/clang/8.0.0/include/arm_fp16.h 9058OLD_FILES+=usr/lib/clang/8.0.0/include/arm_neon.h 9059OLD_FILES+=usr/lib/clang/8.0.0/include/armintr.h 9060OLD_FILES+=usr/lib/clang/8.0.0/include/avx2intrin.h 9061OLD_FILES+=usr/lib/clang/8.0.0/include/avx512bitalgintrin.h 9062OLD_FILES+=usr/lib/clang/8.0.0/include/avx512bwintrin.h 9063OLD_FILES+=usr/lib/clang/8.0.0/include/avx512cdintrin.h 9064OLD_FILES+=usr/lib/clang/8.0.0/include/avx512dqintrin.h 9065OLD_FILES+=usr/lib/clang/8.0.0/include/avx512erintrin.h 9066OLD_FILES+=usr/lib/clang/8.0.0/include/avx512fintrin.h 9067OLD_FILES+=usr/lib/clang/8.0.0/include/avx512ifmaintrin.h 9068OLD_FILES+=usr/lib/clang/8.0.0/include/avx512ifmavlintrin.h 9069OLD_FILES+=usr/lib/clang/8.0.0/include/avx512pfintrin.h 9070OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vbmi2intrin.h 9071OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vbmiintrin.h 9072OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vbmivlintrin.h 9073OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vlbitalgintrin.h 9074OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vlbwintrin.h 9075OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vlcdintrin.h 9076OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vldqintrin.h 9077OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vlintrin.h 9078OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vlvbmi2intrin.h 9079OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vlvnniintrin.h 9080OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vnniintrin.h 9081OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vpopcntdqintrin.h 9082OLD_FILES+=usr/lib/clang/8.0.0/include/avx512vpopcntdqvlintrin.h 9083OLD_FILES+=usr/lib/clang/8.0.0/include/avxintrin.h 9084OLD_FILES+=usr/lib/clang/8.0.0/include/bmi2intrin.h 9085OLD_FILES+=usr/lib/clang/8.0.0/include/bmiintrin.h 9086OLD_FILES+=usr/lib/clang/8.0.0/include/cetintrin.h 9087OLD_FILES+=usr/lib/clang/8.0.0/include/cldemoteintrin.h 9088OLD_FILES+=usr/lib/clang/8.0.0/include/clflushoptintrin.h 9089OLD_FILES+=usr/lib/clang/8.0.0/include/clwbintrin.h 9090OLD_FILES+=usr/lib/clang/8.0.0/include/clzerointrin.h 9091OLD_FILES+=usr/lib/clang/8.0.0/include/cpuid.h 9092OLD_FILES+=usr/lib/clang/8.0.0/include/emmintrin.h 9093OLD_FILES+=usr/lib/clang/8.0.0/include/f16cintrin.h 9094OLD_FILES+=usr/lib/clang/8.0.0/include/fma4intrin.h 9095OLD_FILES+=usr/lib/clang/8.0.0/include/fmaintrin.h 9096OLD_FILES+=usr/lib/clang/8.0.0/include/fxsrintrin.h 9097OLD_FILES+=usr/lib/clang/8.0.0/include/gfniintrin.h 9098OLD_FILES+=usr/lib/clang/8.0.0/include/htmintrin.h 9099OLD_FILES+=usr/lib/clang/8.0.0/include/htmxlintrin.h 9100OLD_FILES+=usr/lib/clang/8.0.0/include/ia32intrin.h 9101OLD_FILES+=usr/lib/clang/8.0.0/include/immintrin.h 9102OLD_FILES+=usr/lib/clang/8.0.0/include/invpcidintrin.h 9103OLD_FILES+=usr/lib/clang/8.0.0/include/lwpintrin.h 9104OLD_FILES+=usr/lib/clang/8.0.0/include/lzcntintrin.h 9105OLD_FILES+=usr/lib/clang/8.0.0/include/mm3dnow.h 9106OLD_FILES+=usr/lib/clang/8.0.0/include/mm_malloc.h 9107OLD_FILES+=usr/lib/clang/8.0.0/include/mmintrin.h 9108OLD_FILES+=usr/lib/clang/8.0.0/include/module.modulemap 9109OLD_FILES+=usr/lib/clang/8.0.0/include/movdirintrin.h 9110OLD_FILES+=usr/lib/clang/8.0.0/include/msa.h 9111OLD_FILES+=usr/lib/clang/8.0.0/include/mwaitxintrin.h 9112OLD_FILES+=usr/lib/clang/8.0.0/include/nmmintrin.h 9113OLD_FILES+=usr/lib/clang/8.0.0/include/opencl-c.h 9114OLD_FILES+=usr/lib/clang/8.0.0/include/pconfigintrin.h 9115OLD_FILES+=usr/lib/clang/8.0.0/include/pkuintrin.h 9116OLD_FILES+=usr/lib/clang/8.0.0/include/pmmintrin.h 9117OLD_FILES+=usr/lib/clang/8.0.0/include/popcntintrin.h 9118OLD_FILES+=usr/lib/clang/8.0.0/include/prfchwintrin.h 9119OLD_FILES+=usr/lib/clang/8.0.0/include/ptwriteintrin.h 9120OLD_FILES+=usr/lib/clang/8.0.0/include/rdseedintrin.h 9121OLD_FILES+=usr/lib/clang/8.0.0/include/rtmintrin.h 9122OLD_FILES+=usr/lib/clang/8.0.0/include/s390intrin.h 9123OLD_FILES+=usr/lib/clang/8.0.0/include/sgxintrin.h 9124OLD_FILES+=usr/lib/clang/8.0.0/include/shaintrin.h 9125OLD_FILES+=usr/lib/clang/8.0.0/include/smmintrin.h 9126OLD_FILES+=usr/lib/clang/8.0.0/include/tbmintrin.h 9127OLD_FILES+=usr/lib/clang/8.0.0/include/tmmintrin.h 9128OLD_FILES+=usr/lib/clang/8.0.0/include/vadefs.h 9129OLD_FILES+=usr/lib/clang/8.0.0/include/vaesintrin.h 9130OLD_FILES+=usr/lib/clang/8.0.0/include/vecintrin.h 9131OLD_FILES+=usr/lib/clang/8.0.0/include/vpclmulqdqintrin.h 9132OLD_FILES+=usr/lib/clang/8.0.0/include/waitpkgintrin.h 9133OLD_FILES+=usr/lib/clang/8.0.0/include/wbnoinvdintrin.h 9134OLD_FILES+=usr/lib/clang/8.0.0/include/wmmintrin.h 9135OLD_FILES+=usr/lib/clang/8.0.0/include/x86intrin.h 9136OLD_FILES+=usr/lib/clang/8.0.0/include/xmmintrin.h 9137OLD_FILES+=usr/lib/clang/8.0.0/include/xopintrin.h 9138OLD_FILES+=usr/lib/clang/8.0.0/include/xsavecintrin.h 9139OLD_FILES+=usr/lib/clang/8.0.0/include/xsaveintrin.h 9140OLD_FILES+=usr/lib/clang/8.0.0/include/xsaveoptintrin.h 9141OLD_FILES+=usr/lib/clang/8.0.0/include/xsavesintrin.h 9142OLD_FILES+=usr/lib/clang/8.0.0/include/xtestintrin.h 9143OLD_DIRS+=usr/lib/clang/8.0.0/include 9144OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan-i386.a 9145OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan-i386.so 9146OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 9147OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 9148OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 9149OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 9150OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 9151OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 9152OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.msan-x86_64.a 9153OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 9154OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.profile-arm.a 9155OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.profile-armhf.a 9156OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.profile-i386.a 9157OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 9158OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.safestack-i386.a 9159OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 9160OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.stats-i386.a 9161OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 9162OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 9163OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 9164OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 9165OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 9166OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 9167OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 9168OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 9169OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 9170OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 9171OLD_FILES+=usr/lib/clang/8.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 9172OLD_DIRS+=usr/lib/clang/8.0.0/lib/freebsd 9173OLD_DIRS+=usr/lib/clang/8.0.0/lib 9174OLD_DIRS+=usr/lib/clang/8.0.0 9175# 20190523: Remove obsolete kgzip and support files 9176OLD_FILES+=usr/sbin/kgzip 9177OLD_FILES+=usr/lib/kgzldr.o 9178OLD_FILES+=usr/share/man/man8/kgzip.8.gz 9179# 20190517: Remove obsolete 10 and 10/100 ethernet drivers 9180OLD_FILES+=usr/share/man/man4/bm.4.gz 9181OLD_FILES+=usr/share/man/man4/cs.4.gz 9182OLD_FILES+=usr/share/man/man4/de.4.gz 9183OLD_FILES+=usr/share/man/man4/if_de.4.gz 9184OLD_FILES+=usr/share/man/man4/ed.4.gz 9185OLD_FILES+=usr/share/man/man4/if_ed.4.gz 9186OLD_FILES+=usr/share/man/man4/ep.4.gz 9187OLD_FILES+=usr/share/man/man4/ex.4.gz 9188OLD_FILES+=usr/share/man/man4/fe.4.gz 9189OLD_FILES+=usr/share/man/man4/pcn.4.gz 9190OLD_FILES+=usr/share/man/man4/if_pcn.4.gz 9191OLD_FILES+=usr/share/man/man4/sf.4.gz 9192OLD_FILES+=usr/share/man/man4/if_sf.4.gz 9193OLD_FILES+=usr/share/man/man4/sn.4.gz 9194OLD_FILES+=usr/share/man/man4/if_sn.4.gz 9195OLD_FILES+=usr/share/man/man4/tl.4.gz 9196OLD_FILES+=usr/share/man/man4/if_tl.4.gz 9197OLD_FILES+=usr/share/man/man4/tx.4.gz 9198OLD_FILES+=usr/share/man/man4/if_tx.4.gz 9199OLD_FILES+=usr/share/man/man4/txp.4.gz 9200OLD_FILES+=usr/share/man/man4/if_txp.4.gz 9201OLD_FILES+=usr/share/man/man4/vx.4.gz 9202OLD_FILES+=usr/share/man/man4/wb.4.gz 9203OLD_FILES+=usr/share/man/man4/if_wb.4.gz 9204OLD_FILES+=usr/share/man/man4/xe.4.gz 9205OLD_FILES+=usr/share/man/man4/if_xe.4.gz 9206# 20190513: libcap_sysctl interface change 9207OLD_LIBS+=lib/casper/libcap_sysctl.so.1 9208# 20190509: tests/sys/opencrypto requires the net/py-dpkt package 9209OLD_FILES+=usr/tests/sys/opencrypto/dpkt.py 9210OLD_FILES+=usr/tests/sys/opencrypto/dpkt.pyc 9211# 20190304: new libc++ import which bumps version from 7.0.1 to 8.0.0 9212OLD_FILES+=usr/include/c++/v1/experimental/dynarray 9213# 20190304: new clang import which bumps version from 7.0.1 to 8.0.0 9214OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/allocator_interface.h 9215OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/asan_interface.h 9216OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/common_interface_defs.h 9217OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/coverage_interface.h 9218OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/dfsan_interface.h 9219OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/esan_interface.h 9220OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/hwasan_interface.h 9221OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/linux_syscall_hooks.h 9222OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/lsan_interface.h 9223OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/msan_interface.h 9224OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/netbsd_syscall_hooks.h 9225OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/scudo_interface.h 9226OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/tsan_interface.h 9227OLD_FILES+=usr/lib/clang/7.0.1/include/sanitizer/tsan_interface_atomic.h 9228OLD_DIRS+=usr/lib/clang/7.0.1/include/sanitizer 9229OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_builtin_vars.h 9230OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_cmath.h 9231OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_complex_builtins.h 9232OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_device_functions.h 9233OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_intrinsics.h 9234OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_libdevice_declares.h 9235OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_math_forward_declares.h 9236OLD_FILES+=usr/lib/clang/7.0.1/include/__clang_cuda_runtime_wrapper.h 9237OLD_FILES+=usr/lib/clang/7.0.1/include/__stddef_max_align_t.h 9238OLD_FILES+=usr/lib/clang/7.0.1/include/__wmmintrin_aes.h 9239OLD_FILES+=usr/lib/clang/7.0.1/include/__wmmintrin_pclmul.h 9240OLD_FILES+=usr/lib/clang/7.0.1/include/adxintrin.h 9241OLD_FILES+=usr/lib/clang/7.0.1/include/altivec.h 9242OLD_FILES+=usr/lib/clang/7.0.1/include/ammintrin.h 9243OLD_FILES+=usr/lib/clang/7.0.1/include/arm64intr.h 9244OLD_FILES+=usr/lib/clang/7.0.1/include/arm_acle.h 9245OLD_FILES+=usr/lib/clang/7.0.1/include/arm_fp16.h 9246OLD_FILES+=usr/lib/clang/7.0.1/include/arm_neon.h 9247OLD_FILES+=usr/lib/clang/7.0.1/include/armintr.h 9248OLD_FILES+=usr/lib/clang/7.0.1/include/avx2intrin.h 9249OLD_FILES+=usr/lib/clang/7.0.1/include/avx512bitalgintrin.h 9250OLD_FILES+=usr/lib/clang/7.0.1/include/avx512bwintrin.h 9251OLD_FILES+=usr/lib/clang/7.0.1/include/avx512cdintrin.h 9252OLD_FILES+=usr/lib/clang/7.0.1/include/avx512dqintrin.h 9253OLD_FILES+=usr/lib/clang/7.0.1/include/avx512erintrin.h 9254OLD_FILES+=usr/lib/clang/7.0.1/include/avx512fintrin.h 9255OLD_FILES+=usr/lib/clang/7.0.1/include/avx512ifmaintrin.h 9256OLD_FILES+=usr/lib/clang/7.0.1/include/avx512ifmavlintrin.h 9257OLD_FILES+=usr/lib/clang/7.0.1/include/avx512pfintrin.h 9258OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmi2intrin.h 9259OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmiintrin.h 9260OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vbmivlintrin.h 9261OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlbitalgintrin.h 9262OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlbwintrin.h 9263OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlcdintrin.h 9264OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vldqintrin.h 9265OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlintrin.h 9266OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlvbmi2intrin.h 9267OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vlvnniintrin.h 9268OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vnniintrin.h 9269OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vpopcntdqintrin.h 9270OLD_FILES+=usr/lib/clang/7.0.1/include/avx512vpopcntdqvlintrin.h 9271OLD_FILES+=usr/lib/clang/7.0.1/include/avxintrin.h 9272OLD_FILES+=usr/lib/clang/7.0.1/include/bmi2intrin.h 9273OLD_FILES+=usr/lib/clang/7.0.1/include/bmiintrin.h 9274OLD_FILES+=usr/lib/clang/7.0.1/include/cetintrin.h 9275OLD_FILES+=usr/lib/clang/7.0.1/include/cldemoteintrin.h 9276OLD_FILES+=usr/lib/clang/7.0.1/include/clflushoptintrin.h 9277OLD_FILES+=usr/lib/clang/7.0.1/include/clwbintrin.h 9278OLD_FILES+=usr/lib/clang/7.0.1/include/clzerointrin.h 9279OLD_FILES+=usr/lib/clang/7.0.1/include/cpuid.h 9280OLD_FILES+=usr/lib/clang/7.0.1/include/emmintrin.h 9281OLD_FILES+=usr/lib/clang/7.0.1/include/f16cintrin.h 9282OLD_FILES+=usr/lib/clang/7.0.1/include/fma4intrin.h 9283OLD_FILES+=usr/lib/clang/7.0.1/include/fmaintrin.h 9284OLD_FILES+=usr/lib/clang/7.0.1/include/fxsrintrin.h 9285OLD_FILES+=usr/lib/clang/7.0.1/include/gfniintrin.h 9286OLD_FILES+=usr/lib/clang/7.0.1/include/htmintrin.h 9287OLD_FILES+=usr/lib/clang/7.0.1/include/htmxlintrin.h 9288OLD_FILES+=usr/lib/clang/7.0.1/include/ia32intrin.h 9289OLD_FILES+=usr/lib/clang/7.0.1/include/immintrin.h 9290OLD_FILES+=usr/lib/clang/7.0.1/include/invpcidintrin.h 9291OLD_FILES+=usr/lib/clang/7.0.1/include/lwpintrin.h 9292OLD_FILES+=usr/lib/clang/7.0.1/include/lzcntintrin.h 9293OLD_FILES+=usr/lib/clang/7.0.1/include/mm3dnow.h 9294OLD_FILES+=usr/lib/clang/7.0.1/include/mm_malloc.h 9295OLD_FILES+=usr/lib/clang/7.0.1/include/mmintrin.h 9296OLD_FILES+=usr/lib/clang/7.0.1/include/module.modulemap 9297OLD_FILES+=usr/lib/clang/7.0.1/include/movdirintrin.h 9298OLD_FILES+=usr/lib/clang/7.0.1/include/msa.h 9299OLD_FILES+=usr/lib/clang/7.0.1/include/mwaitxintrin.h 9300OLD_FILES+=usr/lib/clang/7.0.1/include/nmmintrin.h 9301OLD_FILES+=usr/lib/clang/7.0.1/include/opencl-c.h 9302OLD_FILES+=usr/lib/clang/7.0.1/include/pconfigintrin.h 9303OLD_FILES+=usr/lib/clang/7.0.1/include/pkuintrin.h 9304OLD_FILES+=usr/lib/clang/7.0.1/include/pmmintrin.h 9305OLD_FILES+=usr/lib/clang/7.0.1/include/popcntintrin.h 9306OLD_FILES+=usr/lib/clang/7.0.1/include/prfchwintrin.h 9307OLD_FILES+=usr/lib/clang/7.0.1/include/ptwriteintrin.h 9308OLD_FILES+=usr/lib/clang/7.0.1/include/rdseedintrin.h 9309OLD_FILES+=usr/lib/clang/7.0.1/include/rtmintrin.h 9310OLD_FILES+=usr/lib/clang/7.0.1/include/s390intrin.h 9311OLD_FILES+=usr/lib/clang/7.0.1/include/sgxintrin.h 9312OLD_FILES+=usr/lib/clang/7.0.1/include/shaintrin.h 9313OLD_FILES+=usr/lib/clang/7.0.1/include/smmintrin.h 9314OLD_FILES+=usr/lib/clang/7.0.1/include/tbmintrin.h 9315OLD_FILES+=usr/lib/clang/7.0.1/include/tmmintrin.h 9316OLD_FILES+=usr/lib/clang/7.0.1/include/vadefs.h 9317OLD_FILES+=usr/lib/clang/7.0.1/include/vaesintrin.h 9318OLD_FILES+=usr/lib/clang/7.0.1/include/vecintrin.h 9319OLD_FILES+=usr/lib/clang/7.0.1/include/vpclmulqdqintrin.h 9320OLD_FILES+=usr/lib/clang/7.0.1/include/waitpkgintrin.h 9321OLD_FILES+=usr/lib/clang/7.0.1/include/wbnoinvdintrin.h 9322OLD_FILES+=usr/lib/clang/7.0.1/include/wmmintrin.h 9323OLD_FILES+=usr/lib/clang/7.0.1/include/x86intrin.h 9324OLD_FILES+=usr/lib/clang/7.0.1/include/xmmintrin.h 9325OLD_FILES+=usr/lib/clang/7.0.1/include/xopintrin.h 9326OLD_FILES+=usr/lib/clang/7.0.1/include/xsavecintrin.h 9327OLD_FILES+=usr/lib/clang/7.0.1/include/xsaveintrin.h 9328OLD_FILES+=usr/lib/clang/7.0.1/include/xsaveoptintrin.h 9329OLD_FILES+=usr/lib/clang/7.0.1/include/xsavesintrin.h 9330OLD_FILES+=usr/lib/clang/7.0.1/include/xtestintrin.h 9331OLD_DIRS+=usr/lib/clang/7.0.1/include 9332OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-i386.a 9333OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-i386.so 9334OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 9335OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 9336OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 9337OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 9338OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 9339OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 9340OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.msan-x86_64.a 9341OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.msan_cxx-x86_64.a 9342OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-arm.a 9343OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-armhf.a 9344OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-i386.a 9345OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 9346OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.safestack-i386.a 9347OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 9348OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats-i386.a 9349OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 9350OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 9351OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 9352OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 9353OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 9354OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 9355OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 9356OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 9357OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 9358OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 9359OLD_FILES+=usr/lib/clang/7.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 9360OLD_DIRS+=usr/lib/clang/7.0.1/lib/freebsd 9361OLD_DIRS+=usr/lib/clang/7.0.1/lib 9362OLD_DIRS+=usr/lib/clang/7.0.1 9363# 20190227: rename seq.h to seqc.h 9364OLD_FILES+=usr/include/sys/seq.h 9365# 20190222: libifconfig made INTERNALLIB 9366OLD_FILES+=usr/lib/libprivateifconfig.a 9367OLD_FILES+=usr/lib/libprivateifconfig_p.a 9368# 20190131: pfil(9) changed 9369OLD_FILES+=usr/share/man/man9/pfil_hook_get.9.gz 9370OLD_FILES+=usr/share/man/man9/pfil_rlock.9.gz 9371OLD_FILES+=usr/share/man/man9/pfil_runlock.9.gz 9372OLD_FILES+=usr/share/man/man9/pfil_wlock.9.gz 9373OLD_FILES+=usr/share/man/man9/pfil_wunlock.9.gz 9374# 20190126: adv(4) / adw(4) removal 9375OLD_FILES+=usr/share/man/man4/adv.4.gz 9376OLD_FILES+=usr/share/man/man4/adw.4.gz 9377# 20190123: nonexistant cred_update_thread(9) removed 9378OLD_FILES+=usr/share/man/man9/cred_update_thread.9.gz 9379# 20190114: old pbuf allocator removed 9380OLD_FILES+=usr/share/man/man9/getpbuf.9.gz 9381OLD_FILES+=usr/share/man/man9/pbuf.9.gz 9382OLD_FILES+=usr/share/man/man9/relpbuf.9.gz 9383OLD_FILES+=usr/share/man/man9/trypbuf.9.gz 9384# 20181219: ibcs removal 9385OLD_FILES+=usr/share/examples/ibcs2/hello.uu 9386OLD_FILES+=usr/share/examples/ibcs2/README 9387OLD_DIRS+=usr/share/examples/ibcs2 9388# 20181215: Migration of CTM to ports 9389OLD_FILES+=usr/sbin/ctm 9390OLD_FILES+=usr/sbin/ctm_dequeue 9391OLD_FILES+=usr/sbin/ctm_rmail 9392OLD_FILES+=usr/sbin/ctm_smail 9393OLD_FILES+=usr/share/man/man1/ctm.1.gz 9394OLD_FILES+=usr/share/man/man1/ctm_dequeue.1.gz 9395OLD_FILES+=usr/share/man/man1/ctm_rmail.1.gz 9396OLD_FILES+=usr/share/man/man1/ctm_smail.1.gz 9397OLD_FILES+=usr/share/man/man5/ctm.5.gz 9398# 20181214: Remove timed files 9399OLD_FILES+=etc/rc.d/timed 9400OLD_FILES+=usr/sbin/timed 9401OLD_FILES+=usr/sbin/timedc 9402OLD_FILES+=usr/share/man/man8/timed.8.gz 9403OLD_FILES+=usr/share/man/man8/timedc.8.gz 9404# 20181211: new clang import which bumps version from 6.0.1 to 7.0.1 9405OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/allocator_interface.h 9406OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/asan_interface.h 9407OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/common_interface_defs.h 9408OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/coverage_interface.h 9409OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/dfsan_interface.h 9410OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/esan_interface.h 9411OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/hwasan_interface.h 9412OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/linux_syscall_hooks.h 9413OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/lsan_interface.h 9414OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/msan_interface.h 9415OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/scudo_interface.h 9416OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/tsan_interface.h 9417OLD_FILES+=usr/lib/clang/6.0.1/include/sanitizer/tsan_interface_atomic.h 9418OLD_DIRS+=usr/lib/clang/6.0.1/include/sanitizer 9419OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_builtin_vars.h 9420OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_cmath.h 9421OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_complex_builtins.h 9422OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_intrinsics.h 9423OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_math_forward_declares.h 9424OLD_FILES+=usr/lib/clang/6.0.1/include/__clang_cuda_runtime_wrapper.h 9425OLD_FILES+=usr/lib/clang/6.0.1/include/__stddef_max_align_t.h 9426OLD_FILES+=usr/lib/clang/6.0.1/include/__wmmintrin_aes.h 9427OLD_FILES+=usr/lib/clang/6.0.1/include/__wmmintrin_pclmul.h 9428OLD_FILES+=usr/lib/clang/6.0.1/include/adxintrin.h 9429OLD_FILES+=usr/lib/clang/6.0.1/include/altivec.h 9430OLD_FILES+=usr/lib/clang/6.0.1/include/ammintrin.h 9431OLD_FILES+=usr/lib/clang/6.0.1/include/arm64intr.h 9432OLD_FILES+=usr/lib/clang/6.0.1/include/arm_acle.h 9433OLD_FILES+=usr/lib/clang/6.0.1/include/arm_neon.h 9434OLD_FILES+=usr/lib/clang/6.0.1/include/armintr.h 9435OLD_FILES+=usr/lib/clang/6.0.1/include/avx2intrin.h 9436OLD_FILES+=usr/lib/clang/6.0.1/include/avx512bitalgintrin.h 9437OLD_FILES+=usr/lib/clang/6.0.1/include/avx512bwintrin.h 9438OLD_FILES+=usr/lib/clang/6.0.1/include/avx512cdintrin.h 9439OLD_FILES+=usr/lib/clang/6.0.1/include/avx512dqintrin.h 9440OLD_FILES+=usr/lib/clang/6.0.1/include/avx512erintrin.h 9441OLD_FILES+=usr/lib/clang/6.0.1/include/avx512fintrin.h 9442OLD_FILES+=usr/lib/clang/6.0.1/include/avx512ifmaintrin.h 9443OLD_FILES+=usr/lib/clang/6.0.1/include/avx512ifmavlintrin.h 9444OLD_FILES+=usr/lib/clang/6.0.1/include/avx512pfintrin.h 9445OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vbmi2intrin.h 9446OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vbmiintrin.h 9447OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vbmivlintrin.h 9448OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlbitalgintrin.h 9449OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlbwintrin.h 9450OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlcdintrin.h 9451OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vldqintrin.h 9452OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlintrin.h 9453OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlvbmi2intrin.h 9454OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vlvnniintrin.h 9455OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vnniintrin.h 9456OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vpopcntdqintrin.h 9457OLD_FILES+=usr/lib/clang/6.0.1/include/avx512vpopcntdqvlintrin.h 9458OLD_FILES+=usr/lib/clang/6.0.1/include/avxintrin.h 9459OLD_FILES+=usr/lib/clang/6.0.1/include/bmi2intrin.h 9460OLD_FILES+=usr/lib/clang/6.0.1/include/bmiintrin.h 9461OLD_FILES+=usr/lib/clang/6.0.1/include/cetintrin.h 9462OLD_FILES+=usr/lib/clang/6.0.1/include/clflushoptintrin.h 9463OLD_FILES+=usr/lib/clang/6.0.1/include/clwbintrin.h 9464OLD_FILES+=usr/lib/clang/6.0.1/include/clzerointrin.h 9465OLD_FILES+=usr/lib/clang/6.0.1/include/cpuid.h 9466OLD_FILES+=usr/lib/clang/6.0.1/include/emmintrin.h 9467OLD_FILES+=usr/lib/clang/6.0.1/include/f16cintrin.h 9468OLD_FILES+=usr/lib/clang/6.0.1/include/fma4intrin.h 9469OLD_FILES+=usr/lib/clang/6.0.1/include/fmaintrin.h 9470OLD_FILES+=usr/lib/clang/6.0.1/include/fxsrintrin.h 9471OLD_FILES+=usr/lib/clang/6.0.1/include/gfniintrin.h 9472OLD_FILES+=usr/lib/clang/6.0.1/include/htmintrin.h 9473OLD_FILES+=usr/lib/clang/6.0.1/include/htmxlintrin.h 9474OLD_FILES+=usr/lib/clang/6.0.1/include/ia32intrin.h 9475OLD_FILES+=usr/lib/clang/6.0.1/include/immintrin.h 9476OLD_FILES+=usr/lib/clang/6.0.1/include/lwpintrin.h 9477OLD_FILES+=usr/lib/clang/6.0.1/include/lzcntintrin.h 9478OLD_FILES+=usr/lib/clang/6.0.1/include/mm3dnow.h 9479OLD_FILES+=usr/lib/clang/6.0.1/include/mm_malloc.h 9480OLD_FILES+=usr/lib/clang/6.0.1/include/mmintrin.h 9481OLD_FILES+=usr/lib/clang/6.0.1/include/module.modulemap 9482OLD_FILES+=usr/lib/clang/6.0.1/include/msa.h 9483OLD_FILES+=usr/lib/clang/6.0.1/include/mwaitxintrin.h 9484OLD_FILES+=usr/lib/clang/6.0.1/include/nmmintrin.h 9485OLD_FILES+=usr/lib/clang/6.0.1/include/opencl-c.h 9486OLD_FILES+=usr/lib/clang/6.0.1/include/pkuintrin.h 9487OLD_FILES+=usr/lib/clang/6.0.1/include/pmmintrin.h 9488OLD_FILES+=usr/lib/clang/6.0.1/include/popcntintrin.h 9489OLD_FILES+=usr/lib/clang/6.0.1/include/prfchwintrin.h 9490OLD_FILES+=usr/lib/clang/6.0.1/include/rdseedintrin.h 9491OLD_FILES+=usr/lib/clang/6.0.1/include/rtmintrin.h 9492OLD_FILES+=usr/lib/clang/6.0.1/include/s390intrin.h 9493OLD_FILES+=usr/lib/clang/6.0.1/include/shaintrin.h 9494OLD_FILES+=usr/lib/clang/6.0.1/include/smmintrin.h 9495OLD_FILES+=usr/lib/clang/6.0.1/include/tbmintrin.h 9496OLD_FILES+=usr/lib/clang/6.0.1/include/tmmintrin.h 9497OLD_FILES+=usr/lib/clang/6.0.1/include/vadefs.h 9498OLD_FILES+=usr/lib/clang/6.0.1/include/vaesintrin.h 9499OLD_FILES+=usr/lib/clang/6.0.1/include/vecintrin.h 9500OLD_FILES+=usr/lib/clang/6.0.1/include/vpclmulqdqintrin.h 9501OLD_FILES+=usr/lib/clang/6.0.1/include/wmmintrin.h 9502OLD_FILES+=usr/lib/clang/6.0.1/include/x86intrin.h 9503OLD_FILES+=usr/lib/clang/6.0.1/include/xmmintrin.h 9504OLD_FILES+=usr/lib/clang/6.0.1/include/xopintrin.h 9505OLD_FILES+=usr/lib/clang/6.0.1/include/xsavecintrin.h 9506OLD_FILES+=usr/lib/clang/6.0.1/include/xsaveintrin.h 9507OLD_FILES+=usr/lib/clang/6.0.1/include/xsaveoptintrin.h 9508OLD_FILES+=usr/lib/clang/6.0.1/include/xsavesintrin.h 9509OLD_FILES+=usr/lib/clang/6.0.1/include/xtestintrin.h 9510OLD_DIRS+=usr/lib/clang/6.0.1/include 9511OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-i386.a 9512OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-i386.so 9513OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 9514OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 9515OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 9516OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 9517OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 9518OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 9519OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-arm.a 9520OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-armhf.a 9521OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-i386.a 9522OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 9523OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.safestack-i386.a 9524OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 9525OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats-i386.a 9526OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 9527OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 9528OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 9529OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.tsan-x86_64.a 9530OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 9531OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 9532OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 9533OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 9534OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 9535OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 9536OLD_FILES+=usr/lib/clang/6.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 9537OLD_DIRS+=usr/lib/clang/6.0.1/lib/freebsd 9538OLD_DIRS+=usr/lib/clang/6.0.1/lib 9539OLD_DIRS+=usr/lib/clang/6.0.1 9540# 20181116: Rename test file 9541OLD_FILES+=usr/tests/sys/netinet/reuseport_lb 9542# 20181113: libufs version bumped to 7 9543OLD_LIBS+=lib/libufs.so.6 9544# 20181112: Cleanup old libcap_dns 9545OLD_LIBS+=lib/casper/libcap_dns.so.1 9546# 20181030: malloc_domain(9) KPI change 9547OLD_FILES+=usr/share/man/man9/malloc_domain.9.gz 9548# 20181026: joy(4) removal 9549OLD_FILES+=usr/share/man/man4/joy.4.gz 9550# 20181025: OpenSSL libraries version bump to avoid conflict with ports 9551OLD_LIBS+=lib/libcrypto.so.9 9552OLD_LIBS+=usr/lib/libssl.so.9 9553# 20181022: aha(4) removal 9554OLD_FILES+=usr/share/man/man4/aha.4.gz 9555# 20181022: dpt(4) removal 9556OLD_FILES+=usr/share/man/man4/dpt.4.gz 9557# 20181022: ncr(4) removal 9558OLD_FILES+=usr/share/man/man4/ncr.4.gz 9559# 20181022: ncv(4) removal 9560OLD_FILES+=usr/share/man/man4/ncv.4.gz 9561# 20181022: nsp(4) removal 9562OLD_FILES+=usr/share/man/man4/nsp.4.gz 9563# 20181022: stg(4) removal 9564OLD_FILES+=usr/share/man/man4/stg.4.gz 9565# 20181021: mse(4) removal 9566OLD_FILES+=usr/share/man/man4/mse.4.gz 9567# 20181015: Stale libcasper(3) files following r329452 9568OLD_LIBS+=lib/casper/libcap_sysctl.so.0 9569OLD_LIBS+=lib/casper/libcap_grp.so.0 9570OLD_LIBS+=lib/casper/libcap_pwd.so.0 9571OLD_LIBS+=lib/casper/libcap_random.so.0 9572OLD_LIBS+=lib/casper/libcap_dns.so.0 9573OLD_LIBS+=lib/casper/libcap_syslog.so.0 9574# 20181012: rename of ixlv(4) to iavf(4) 9575OLD_FILES+=usr/share/man/man4/if_ixlv.4.gz 9576OLD_FILES+=usr/share/man/man4/ixlv.4.gz 9577# 20181009: OpenSSL 1.1.1 9578OLD_FILES+=usr/include/openssl/des_old.h 9579OLD_FILES+=usr/include/openssl/dso.h 9580OLD_FILES+=usr/include/openssl/krb5_asn.h 9581OLD_FILES+=usr/include/openssl/kssl.h 9582OLD_FILES+=usr/include/openssl/pqueue.h 9583OLD_FILES+=usr/include/openssl/ssl23.h 9584OLD_FILES+=usr/include/openssl/ui_compat.h 9585OLD_FILES+=usr/share/openssl/man/man1/dss1.1.gz 9586OLD_FILES+=usr/share/openssl/man/man1/md2.1.gz 9587OLD_FILES+=usr/share/openssl/man/man1/md4.1.gz 9588OLD_FILES+=usr/share/openssl/man/man1/md5.1.gz 9589OLD_FILES+=usr/share/openssl/man/man1/mdc2.1.gz 9590OLD_FILES+=usr/share/openssl/man/man1/ripemd160.1.gz 9591OLD_FILES+=usr/share/openssl/man/man1/sha.1.gz 9592OLD_FILES+=usr/share/openssl/man/man1/sha1.1.gz 9593OLD_FILES+=usr/share/openssl/man/man1/sha224.1.gz 9594OLD_FILES+=usr/share/openssl/man/man1/sha256.1.gz 9595OLD_FILES+=usr/share/openssl/man/man1/sha384.1.gz 9596OLD_FILES+=usr/share/openssl/man/man1/sha512.1.gz 9597OLD_FILES+=usr/share/openssl/man/man1/x509v3_config.1.gz 9598OLD_FILES+=usr/share/openssl/man/man3/ASN1_STRING_length_set.3.gz 9599OLD_FILES+=usr/share/openssl/man/man3/BIO_get_conn_int_port.3.gz 9600OLD_FILES+=usr/share/openssl/man/man3/BIO_get_conn_ip.3.gz 9601OLD_FILES+=usr/share/openssl/man/man3/BIO_set.3.gz 9602OLD_FILES+=usr/share/openssl/man/man3/BIO_set_conn_int_port.3.gz 9603OLD_FILES+=usr/share/openssl/man/man3/BIO_set_conn_ip.3.gz 9604OLD_FILES+=usr/share/openssl/man/man3/BN_BLINDING_get_thread_id.3.gz 9605OLD_FILES+=usr/share/openssl/man/man3/BN_BLINDING_set_thread_id.3.gz 9606OLD_FILES+=usr/share/openssl/man/man3/BN_BLINDING_thread_id.3.gz 9607OLD_FILES+=usr/share/openssl/man/man3/BN_CTX_init.3.gz 9608OLD_FILES+=usr/share/openssl/man/man3/BN_MONT_CTX_init.3.gz 9609OLD_FILES+=usr/share/openssl/man/man3/BN_RECP_CTX_init.3.gz 9610OLD_FILES+=usr/share/openssl/man/man3/BN_init.3.gz 9611OLD_FILES+=usr/share/openssl/man/man3/BUF_memdup.3.gz 9612OLD_FILES+=usr/share/openssl/man/man3/BUF_memdup.3.gz 9613OLD_FILES+=usr/share/openssl/man/man3/BUF_strdup.3.gz 9614OLD_FILES+=usr/share/openssl/man/man3/BUF_strlcat.3.gz 9615OLD_FILES+=usr/share/openssl/man/man3/BUF_strlcpy.3.gz 9616OLD_FILES+=usr/share/openssl/man/man3/BUF_strndup.3.gz 9617OLD_FILES+=usr/share/openssl/man/man3/CMS_set1_signer_cert.3.gz 9618OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_cmp.3.gz 9619OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_cpy.3.gz 9620OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_current.3.gz 9621OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_get_callback.3.gz 9622OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_hash.3.gz 9623OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_THREADID_set_callback.3.gz 9624OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_destroy_dynlockid.3.gz 9625OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_get_new_dynlockid.3.gz 9626OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_lock.3.gz 9627OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_num_locks.3.gz 9628OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_dynlock_create_callback.3.gz 9629OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_dynlock_destroy_callback.3.gz 9630OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_dynlock_lock_callback.3.gz 9631OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_locking_callback.3.gz 9632OLD_FILES+=usr/share/openssl/man/man3/DES_ede3_cbcm_encrypt.3.gz 9633OLD_FILES+=usr/share/openssl/man/man3/DES_enc_read.3.gz 9634OLD_FILES+=usr/share/openssl/man/man3/DES_enc_write.3.gz 9635OLD_FILES+=usr/share/openssl/man/man3/EC_KEY_get_key_method_data.3.gz 9636OLD_FILES+=usr/share/openssl/man/man3/EC_KEY_insert_key_method_data.3.gz 9637OLD_FILES+=usr/share/openssl/man/man3/EC_POINT_set_Jprojective_coordinates.3.gz 9638OLD_FILES+=usr/share/openssl/man/man3/ERR_load_UI_strings.3.gz 9639OLD_FILES+=usr/share/openssl/man/man3/EVP_CIPHER_CTX_cleanup.3.gz 9640OLD_FILES+=usr/share/openssl/man/man3/EVP_CIPHER_CTX_init.3.gz 9641OLD_FILES+=usr/share/openssl/man/man3/EVP_MAX_MD_SIZE.3.gz 9642OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_cleanup.3.gz 9643OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_create.3.gz 9644OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_destroy.3.gz 9645OLD_FILES+=usr/share/openssl/man/man3/EVP_MD_CTX_init.3.gz 9646OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEVP_PKEY_CTX_set_app_data.3.gz 9647OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_CTX_set_rsa_rsa_keygen_bits.3.gz 9648OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_get_default_digest.3.gz 9649OLD_FILES+=usr/share/openssl/man/man3/EVP_dss.3.gz 9650OLD_FILES+=usr/share/openssl/man/man3/EVP_dss1.3.gz 9651OLD_FILES+=usr/share/openssl/man/man3/EVP_sha.3.gz 9652OLD_FILES+=usr/share/openssl/man/man3/HMAC_CTX_cleanup.3.gz 9653OLD_FILES+=usr/share/openssl/man/man3/HMAC_CTX_init.3.gz 9654OLD_FILES+=usr/share/openssl/man/man3/HMAC_cleanup.3.gz 9655OLD_FILES+=usr/share/openssl/man/man3/OPENSSL_ia32cap_loc.3.gz 9656OLD_FILES+=usr/share/openssl/man/man3/PEM.3.gz 9657OLD_FILES+=usr/share/openssl/man/man3/RAND_SSLeay.3.gz 9658OLD_FILES+=usr/share/openssl/man/man3/RSA_PKCS1_SSLeay.3.gz 9659OLD_FILES+=usr/share/openssl/man/man3/RSA_null_method.3.gz 9660OLD_FILES+=usr/share/openssl/man/man3/SSL.3.gz 9661OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_need_tmp_rsa.3.gz 9662OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_custom_cli_ext.3.gz 9663OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_default_read_ahead.3.gz 9664OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_tmp_rsa.3.gz 9665OLD_FILES+=usr/share/openssl/man/man3/SSL_CTX_set_tmp_rsa_callback.3.gz 9666OLD_FILES+=usr/share/openssl/man/man3/SSL_add_session.3.gz 9667OLD_FILES+=usr/share/openssl/man/man3/SSL_flush_sessions.3.gz 9668OLD_FILES+=usr/share/openssl/man/man3/SSL_get_accept_state.3.gz 9669OLD_FILES+=usr/share/openssl/man/man3/SSL_get_msg_callback_arg.3.gz 9670OLD_FILES+=usr/share/openssl/man/man3/SSL_need_tmp_rsa.3.gz 9671OLD_FILES+=usr/share/openssl/man/man3/SSL_remove_session.3.gz 9672OLD_FILES+=usr/share/openssl/man/man3/SSL_set_tmp_rsa.3.gz 9673OLD_FILES+=usr/share/openssl/man/man3/SSL_set_tmp_rsa_callback.3.gz 9674OLD_FILES+=usr/share/openssl/man/man3/SSLeay.3.gz 9675OLD_FILES+=usr/share/openssl/man/man3/SSLeay_add_ssl_algorithms.3.gz 9676OLD_FILES+=usr/share/openssl/man/man3/SSLeay_version.3.gz 9677OLD_FILES+=usr/share/openssl/man/man3/SSLv2_client_method.3.gz 9678OLD_FILES+=usr/share/openssl/man/man3/SSLv2_method.3.gz 9679OLD_FILES+=usr/share/openssl/man/man3/SSLv2_server_method.3.gz 9680OLD_FILES+=usr/share/openssl/man/man3/X509_STORE_CTX_set_chain.3.gz 9681OLD_FILES+=usr/share/openssl/man/man3/X509_STORE_CTX_trusted_stack.3.gz 9682OLD_FILES+=usr/share/openssl/man/man3/bio.3.gz 9683OLD_FILES+=usr/share/openssl/man/man3/blowfish.3.gz 9684OLD_FILES+=usr/share/openssl/man/man3/bn.3.gz 9685OLD_FILES+=usr/share/openssl/man/man3/bn_add_words.3.gz 9686OLD_FILES+=usr/share/openssl/man/man3/bn_check_top.3.gz 9687OLD_FILES+=usr/share/openssl/man/man3/bn_cmp_words.3.gz 9688OLD_FILES+=usr/share/openssl/man/man3/bn_div_words.3.gz 9689OLD_FILES+=usr/share/openssl/man/man3/bn_dump.3.gz 9690OLD_FILES+=usr/share/openssl/man/man3/bn_expand.3.gz 9691OLD_FILES+=usr/share/openssl/man/man3/bn_expand2.3.gz 9692OLD_FILES+=usr/share/openssl/man/man3/bn_fix_top.3.gz 9693OLD_FILES+=usr/share/openssl/man/man3/bn_internal.3.gz 9694OLD_FILES+=usr/share/openssl/man/man3/bn_mul_add_words.3.gz 9695OLD_FILES+=usr/share/openssl/man/man3/bn_mul_comba4.3.gz 9696OLD_FILES+=usr/share/openssl/man/man3/bn_mul_comba8.3.gz 9697OLD_FILES+=usr/share/openssl/man/man3/bn_mul_high.3.gz 9698OLD_FILES+=usr/share/openssl/man/man3/bn_mul_low_normal.3.gz 9699OLD_FILES+=usr/share/openssl/man/man3/bn_mul_low_recursive.3.gz 9700OLD_FILES+=usr/share/openssl/man/man3/bn_mul_normal.3.gz 9701OLD_FILES+=usr/share/openssl/man/man3/bn_mul_part_recursive.3.gz 9702OLD_FILES+=usr/share/openssl/man/man3/bn_mul_recursive.3.gz 9703OLD_FILES+=usr/share/openssl/man/man3/bn_mul_words.3.gz 9704OLD_FILES+=usr/share/openssl/man/man3/bn_print.3.gz 9705OLD_FILES+=usr/share/openssl/man/man3/bn_set_high.3.gz 9706OLD_FILES+=usr/share/openssl/man/man3/bn_set_low.3.gz 9707OLD_FILES+=usr/share/openssl/man/man3/bn_set_max.3.gz 9708OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_comba4.3.gz 9709OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_comba8.3.gz 9710OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_normal.3.gz 9711OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_recursive.3.gz 9712OLD_FILES+=usr/share/openssl/man/man3/bn_sqr_words.3.gz 9713OLD_FILES+=usr/share/openssl/man/man3/bn_sub_words.3.gz 9714OLD_FILES+=usr/share/openssl/man/man3/bn_wexpand.3.gz 9715OLD_FILES+=usr/share/openssl/man/man3/buffer.3.gz 9716OLD_FILES+=usr/share/openssl/man/man3/crypto.3.gz 9717OLD_FILES+=usr/share/openssl/man/man3/d2i_ECPKParameters_bio.3.gz 9718OLD_FILES+=usr/share/openssl/man/man3/d2i_ECPKParameters_fp.3.gz 9719OLD_FILES+=usr/share/openssl/man/man3/d2i_ECPrivate_key.3.gz 9720OLD_FILES+=usr/share/openssl/man/man3/d2i_Netscape_RSA.3.gz 9721OLD_FILES+=usr/share/openssl/man/man3/d2i_PKCS8PrivateKey.3.gz 9722OLD_FILES+=usr/share/openssl/man/man3/d2i_Private_key.3.gz 9723OLD_FILES+=usr/share/openssl/man/man3/des.3.gz 9724OLD_FILES+=usr/share/openssl/man/man3/des_read_2passwords.3.gz 9725OLD_FILES+=usr/share/openssl/man/man3/des_read_password.3.gz 9726OLD_FILES+=usr/share/openssl/man/man3/des_read_pw.3.gz 9727OLD_FILES+=usr/share/openssl/man/man3/des_read_pw_string.3.gz 9728OLD_FILES+=usr/share/openssl/man/man3/dh.3.gz 9729OLD_FILES+=usr/share/openssl/man/man3/dsa.3.gz 9730OLD_FILES+=usr/share/openssl/man/man3/ec.3.gz 9731OLD_FILES+=usr/share/openssl/man/man3/ecdsa.3.gz 9732OLD_FILES+=usr/share/openssl/man/man3/engine.3.gz 9733OLD_FILES+=usr/share/openssl/man/man3/err.3.gz 9734OLD_FILES+=usr/share/openssl/man/man3/evp.3.gz 9735OLD_FILES+=usr/share/openssl/man/man3/hmac.3.gz 9736OLD_FILES+=usr/share/openssl/man/man3/i2d_ECPKParameters_bio.3.gz 9737OLD_FILES+=usr/share/openssl/man/man3/i2d_ECPKParameters_fp.3.gz 9738OLD_FILES+=usr/share/openssl/man/man3/i2d_Netscape_RSA.3.gz 9739OLD_FILES+=usr/share/openssl/man/man3/lh_delete.3.gz 9740OLD_FILES+=usr/share/openssl/man/man3/lh_doall.3.gz 9741OLD_FILES+=usr/share/openssl/man/man3/lh_doall_arg.3.gz 9742OLD_FILES+=usr/share/openssl/man/man3/lh_error.3.gz 9743OLD_FILES+=usr/share/openssl/man/man3/lh_free.3.gz 9744OLD_FILES+=usr/share/openssl/man/man3/lh_insert.3.gz 9745OLD_FILES+=usr/share/openssl/man/man3/lh_new.3.gz 9746OLD_FILES+=usr/share/openssl/man/man3/lh_node_stats.3.gz 9747OLD_FILES+=usr/share/openssl/man/man3/lh_node_stats_bio.3.gz 9748OLD_FILES+=usr/share/openssl/man/man3/lh_node_usage_stats.3.gz 9749OLD_FILES+=usr/share/openssl/man/man3/lh_node_usage_stats_bio.3.gz 9750OLD_FILES+=usr/share/openssl/man/man3/lh_retrieve.3.gz 9751OLD_FILES+=usr/share/openssl/man/man3/lh_stats.3.gz 9752OLD_FILES+=usr/share/openssl/man/man3/lh_stats_bio.3.gz 9753OLD_FILES+=usr/share/openssl/man/man3/lhash.3.gz 9754OLD_FILES+=usr/share/openssl/man/man3/md5.3.gz 9755OLD_FILES+=usr/share/openssl/man/man3/mdc2.3.gz 9756OLD_FILES+=usr/share/openssl/man/man3/pem.3.gz 9757OLD_FILES+=usr/share/openssl/man/man3/rand.3.gz 9758OLD_FILES+=usr/share/openssl/man/man3/rc4.3.gz 9759OLD_FILES+=usr/share/openssl/man/man3/ripemd.3.gz 9760OLD_FILES+=usr/share/openssl/man/man3/rsa.3.gz 9761OLD_FILES+=usr/share/openssl/man/man3/sha.3.gz 9762OLD_FILES+=usr/share/openssl/man/man3/ssl.3.gz 9763OLD_FILES+=usr/share/openssl/man/man3/threads.3.gz 9764OLD_FILES+=usr/share/openssl/man/man3/ui.3.gz 9765OLD_FILES+=usr/share/openssl/man/man3/ui_compat.3.gz 9766OLD_FILES+=usr/share/openssl/man/man3/x509.3.gz 9767OLD_LIBS+=lib/libcrypto.so.8 9768OLD_LIBS+=usr/lib/engines/lib4758cca.so 9769OLD_LIBS+=usr/lib/engines/libaep.so 9770OLD_LIBS+=usr/lib/engines/libatalla.so 9771OLD_LIBS+=usr/lib/engines/libcapi.so 9772OLD_LIBS+=usr/lib/engines/libchil.so 9773OLD_LIBS+=usr/lib/engines/libcswift.so 9774OLD_LIBS+=usr/lib/engines/libgost.so 9775OLD_LIBS+=usr/lib/engines/libnuron.so 9776OLD_LIBS+=usr/lib/engines/libsureware.so 9777OLD_LIBS+=usr/lib/engines/libubsec.so 9778OLD_LIBS+=usr/lib/libssl.so.8 9779OLD_LIBS+=usr/lib32/lib4758cca.so 9780OLD_LIBS+=usr/lib32/libaep.so 9781OLD_LIBS+=usr/lib32/libatalla.so 9782OLD_LIBS+=usr/lib32/libcapi.so 9783OLD_LIBS+=usr/lib32/libchil.so 9784OLD_LIBS+=usr/lib32/libcswift.so 9785OLD_LIBS+=usr/lib32/libgost.so 9786OLD_LIBS+=usr/lib32/libnuron.so 9787OLD_LIBS+=usr/lib32/libsureware.so 9788OLD_LIBS+=usr/lib32/libubsec.so 9789# 20180824: libbe(3) SHLIBDIR fixed to reflect correct location 9790MOVED_LIBS+=usr/lib/libbe.so.1 9791# 20180819: Remove deprecated arc4random(3) stir/addrandom interfaces 9792OLD_FILES+=usr/share/man/man3/arc4random_addrandom.3.gz 9793OLD_FILES+=usr/share/man/man3/arc4random_stir.3.gz 9794# 20180819: send-pr(1) placeholder removal 9795OLD_FILES+=usr/bin/send-pr 9796# 20180801: jedec_ts(4) removed 9797OLD_FILES+=usr/share/man/man4/jedec_ts.4.gz 9798# 20180725: Cleanup old libcasper.so.0 9799OLD_LIBS+=lib/libcasper.so.0 9800# 20180722: indent(1) option renamed, test files follow 9801OLD_FILES+=usr/bin/indent/tests/nsac.0 9802OLD_FILES+=usr/bin/indent/tests/nsac.0.pro 9803OLD_FILES+=usr/bin/indent/tests/nsac.0.stdout 9804OLD_FILES+=usr/bin/indent/tests/sac.0 9805OLD_FILES+=usr/bin/indent/tests/sac.0.pro 9806OLD_FILES+=usr/bin/indent/tests/sac.0.stdout 9807# 20180721: move of libmlx5.so.1 and libibverbs.so.1 9808MOVED_LIBS+=usr/lib/libmlx5.so.1 9809MOVED_LIBS+=usr/lib/libibverbs.so.1 9810# 20180720: zfsloader.8 merged into loader.8 9811OLD_FILES+=usr/share/man/man8/zfsloader.8.gz 9812# 20180710: old numa cleanup 9813OLD_FILES+=usr/include/sys/numa.h 9814OLD_FILES+=usr/share/man/man2/numa_getaffinity.2.gz 9815OLD_FILES+=usr/share/man/man2/numa_setaffinity.2.gz 9816OLD_FILES+=usr/share/man/man1/numactl.1.gz 9817OLD_FILES+=usr/bin/numactl 9818# 20180630: new clang import which bumps version from 6.0.0 to 6.0.1 9819OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/allocator_interface.h 9820OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/asan_interface.h 9821OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/common_interface_defs.h 9822OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/coverage_interface.h 9823OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/dfsan_interface.h 9824OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/esan_interface.h 9825OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/hwasan_interface.h 9826OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/linux_syscall_hooks.h 9827OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/lsan_interface.h 9828OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/msan_interface.h 9829OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/scudo_interface.h 9830OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/tsan_interface.h 9831OLD_FILES+=usr/lib/clang/6.0.0/include/sanitizer/tsan_interface_atomic.h 9832OLD_DIRS+=usr/lib/clang/6.0.0/include/sanitizer 9833OLD_FILES+=usr/lib/clang/6.0.0/include/__clang_cuda_builtin_vars.h 9834OLD_FILES+=usr/lib/clang/6.0.0/include/__clang_cuda_cmath.h 9835OLD_FILES+=usr/lib/clang/6.0.0/include/__clang_cuda_complex_builtins.h 9836OLD_FILES+=usr/lib/clang/6.0.0/include/__clang_cuda_intrinsics.h 9837OLD_FILES+=usr/lib/clang/6.0.0/include/__clang_cuda_math_forward_declares.h 9838OLD_FILES+=usr/lib/clang/6.0.0/include/__clang_cuda_runtime_wrapper.h 9839OLD_FILES+=usr/lib/clang/6.0.0/include/__stddef_max_align_t.h 9840OLD_FILES+=usr/lib/clang/6.0.0/include/__wmmintrin_aes.h 9841OLD_FILES+=usr/lib/clang/6.0.0/include/__wmmintrin_pclmul.h 9842OLD_FILES+=usr/lib/clang/6.0.0/include/adxintrin.h 9843OLD_FILES+=usr/lib/clang/6.0.0/include/altivec.h 9844OLD_FILES+=usr/lib/clang/6.0.0/include/ammintrin.h 9845OLD_FILES+=usr/lib/clang/6.0.0/include/arm64intr.h 9846OLD_FILES+=usr/lib/clang/6.0.0/include/arm_acle.h 9847OLD_FILES+=usr/lib/clang/6.0.0/include/arm_neon.h 9848OLD_FILES+=usr/lib/clang/6.0.0/include/armintr.h 9849OLD_FILES+=usr/lib/clang/6.0.0/include/avx2intrin.h 9850OLD_FILES+=usr/lib/clang/6.0.0/include/avx512bitalgintrin.h 9851OLD_FILES+=usr/lib/clang/6.0.0/include/avx512bwintrin.h 9852OLD_FILES+=usr/lib/clang/6.0.0/include/avx512cdintrin.h 9853OLD_FILES+=usr/lib/clang/6.0.0/include/avx512dqintrin.h 9854OLD_FILES+=usr/lib/clang/6.0.0/include/avx512erintrin.h 9855OLD_FILES+=usr/lib/clang/6.0.0/include/avx512fintrin.h 9856OLD_FILES+=usr/lib/clang/6.0.0/include/avx512ifmaintrin.h 9857OLD_FILES+=usr/lib/clang/6.0.0/include/avx512ifmavlintrin.h 9858OLD_FILES+=usr/lib/clang/6.0.0/include/avx512pfintrin.h 9859OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vbmi2intrin.h 9860OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vbmiintrin.h 9861OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vbmivlintrin.h 9862OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vlbitalgintrin.h 9863OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vlbwintrin.h 9864OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vlcdintrin.h 9865OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vldqintrin.h 9866OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vlintrin.h 9867OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vlvbmi2intrin.h 9868OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vlvnniintrin.h 9869OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vnniintrin.h 9870OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vpopcntdqintrin.h 9871OLD_FILES+=usr/lib/clang/6.0.0/include/avx512vpopcntdqvlintrin.h 9872OLD_FILES+=usr/lib/clang/6.0.0/include/avxintrin.h 9873OLD_FILES+=usr/lib/clang/6.0.0/include/bmi2intrin.h 9874OLD_FILES+=usr/lib/clang/6.0.0/include/bmiintrin.h 9875OLD_FILES+=usr/lib/clang/6.0.0/include/cetintrin.h 9876OLD_FILES+=usr/lib/clang/6.0.0/include/clflushoptintrin.h 9877OLD_FILES+=usr/lib/clang/6.0.0/include/clwbintrin.h 9878OLD_FILES+=usr/lib/clang/6.0.0/include/clzerointrin.h 9879OLD_FILES+=usr/lib/clang/6.0.0/include/cpuid.h 9880OLD_FILES+=usr/lib/clang/6.0.0/include/emmintrin.h 9881OLD_FILES+=usr/lib/clang/6.0.0/include/f16cintrin.h 9882OLD_FILES+=usr/lib/clang/6.0.0/include/fma4intrin.h 9883OLD_FILES+=usr/lib/clang/6.0.0/include/fmaintrin.h 9884OLD_FILES+=usr/lib/clang/6.0.0/include/fxsrintrin.h 9885OLD_FILES+=usr/lib/clang/6.0.0/include/gfniintrin.h 9886OLD_FILES+=usr/lib/clang/6.0.0/include/htmintrin.h 9887OLD_FILES+=usr/lib/clang/6.0.0/include/htmxlintrin.h 9888OLD_FILES+=usr/lib/clang/6.0.0/include/ia32intrin.h 9889OLD_FILES+=usr/lib/clang/6.0.0/include/immintrin.h 9890OLD_FILES+=usr/lib/clang/6.0.0/include/lwpintrin.h 9891OLD_FILES+=usr/lib/clang/6.0.0/include/lzcntintrin.h 9892OLD_FILES+=usr/lib/clang/6.0.0/include/mm3dnow.h 9893OLD_FILES+=usr/lib/clang/6.0.0/include/mm_malloc.h 9894OLD_FILES+=usr/lib/clang/6.0.0/include/mmintrin.h 9895OLD_FILES+=usr/lib/clang/6.0.0/include/module.modulemap 9896OLD_FILES+=usr/lib/clang/6.0.0/include/msa.h 9897OLD_FILES+=usr/lib/clang/6.0.0/include/mwaitxintrin.h 9898OLD_FILES+=usr/lib/clang/6.0.0/include/nmmintrin.h 9899OLD_FILES+=usr/lib/clang/6.0.0/include/opencl-c.h 9900OLD_FILES+=usr/lib/clang/6.0.0/include/pkuintrin.h 9901OLD_FILES+=usr/lib/clang/6.0.0/include/pmmintrin.h 9902OLD_FILES+=usr/lib/clang/6.0.0/include/popcntintrin.h 9903OLD_FILES+=usr/lib/clang/6.0.0/include/prfchwintrin.h 9904OLD_FILES+=usr/lib/clang/6.0.0/include/rdseedintrin.h 9905OLD_FILES+=usr/lib/clang/6.0.0/include/rtmintrin.h 9906OLD_FILES+=usr/lib/clang/6.0.0/include/s390intrin.h 9907OLD_FILES+=usr/lib/clang/6.0.0/include/shaintrin.h 9908OLD_FILES+=usr/lib/clang/6.0.0/include/smmintrin.h 9909OLD_FILES+=usr/lib/clang/6.0.0/include/tbmintrin.h 9910OLD_FILES+=usr/lib/clang/6.0.0/include/tmmintrin.h 9911OLD_FILES+=usr/lib/clang/6.0.0/include/vadefs.h 9912OLD_FILES+=usr/lib/clang/6.0.0/include/vaesintrin.h 9913OLD_FILES+=usr/lib/clang/6.0.0/include/vecintrin.h 9914OLD_FILES+=usr/lib/clang/6.0.0/include/vpclmulqdqintrin.h 9915OLD_FILES+=usr/lib/clang/6.0.0/include/wmmintrin.h 9916OLD_FILES+=usr/lib/clang/6.0.0/include/x86intrin.h 9917OLD_FILES+=usr/lib/clang/6.0.0/include/xmmintrin.h 9918OLD_FILES+=usr/lib/clang/6.0.0/include/xopintrin.h 9919OLD_FILES+=usr/lib/clang/6.0.0/include/xsavecintrin.h 9920OLD_FILES+=usr/lib/clang/6.0.0/include/xsaveintrin.h 9921OLD_FILES+=usr/lib/clang/6.0.0/include/xsaveoptintrin.h 9922OLD_FILES+=usr/lib/clang/6.0.0/include/xsavesintrin.h 9923OLD_FILES+=usr/lib/clang/6.0.0/include/xtestintrin.h 9924OLD_DIRS+=usr/lib/clang/6.0.0/include 9925OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan-i386.a 9926OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan-i386.so 9927OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 9928OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 9929OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 9930OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 9931OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 9932OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 9933OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.profile-arm.a 9934OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.profile-armhf.a 9935OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.profile-i386.a 9936OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 9937OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.safestack-i386.a 9938OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 9939OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.stats-i386.a 9940OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 9941OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 9942OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 9943OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.tsan-x86_64.a 9944OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.tsan_cxx-x86_64.a 9945OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.ubsan_minimal-i386.a 9946OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.ubsan_minimal-x86_64.a 9947OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 9948OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 9949OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 9950OLD_FILES+=usr/lib/clang/6.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 9951OLD_DIRS+=usr/lib/clang/6.0.0/lib/freebsd 9952OLD_DIRS+=usr/lib/clang/6.0.0/lib 9953OLD_DIRS+=usr/lib/clang/6.0.0 9954# 20180615: asf(8) removed 9955OLD_FILES+=usr/sbin/asf 9956OLD_FILES+=usr/share/man/man8/asf.8.gz 9957# 20180609: obsolete libc++ files missed from the 5.0.0 import 9958OLD_FILES+=usr/include/c++/v1/__refstring 9959OLD_FILES+=usr/include/c++/v1/__undef_min_max 9960OLD_FILES+=usr/include/c++/v1/tr1/__refstring 9961OLD_FILES+=usr/include/c++/v1/tr1/__undef_min_max 9962# 20180607: remove nls support from grep 9963OLD_FILES+=usr/share/nls/pt_BR.ISO8859-1/grep.cat 9964OLD_FILES+=usr/share/nls/hu_HU.ISO8859-2/grep.cat 9965OLD_FILES+=usr/share/nls/ja_JP.SJIS/grep.cat 9966OLD_FILES+=usr/share/nls/ja_JP.eucJP/grep.cat 9967OLD_FILES+=usr/share/nls/gl_ES.ISO8859-1/grep.cat 9968OLD_FILES+=usr/share/nls/zh_CN.UTF-8/grep.cat 9969OLD_FILES+=usr/share/nls/es_ES.ISO8859-1/grep.cat 9970OLD_FILES+=usr/share/nls/ru_RU.KOI8-R/grep.cat 9971OLD_FILES+=usr/share/nls/uk_UA.UTF-8/grep.cat 9972OLD_FILES+=usr/share/nls/ja_JP.UTF-8/grep.cat 9973# 20180528: libpcap update removed header file 9974OLD_FILES+=usr/include/pcap/export-defs.h 9975# 20180517: retire vxge 9976OLD_FILES+=usr/share/man/man4/if_vxge.4.gz 9977OLD_FILES+=usr/share/man/man4/vxge.4.gz 9978# 20180512: Rename Unbound tools 9979OLD_FILES+=usr/sbin/unbound 9980OLD_FILES+=usr/sbin/unbound-anchor 9981OLD_FILES+=usr/sbin/unbound-checkconf 9982OLD_FILES+=usr/sbin/unbound-control 9983OLD_FILES+=usr/share/man/man5/unbound.conf.5.gz 9984OLD_FILES+=usr/share/man/man8/unbound-anchor.8.gz 9985OLD_FILES+=usr/share/man/man8/unbound-checkconf.8.gz 9986OLD_FILES+=usr/share/man/man8/unbound-control.8.gz 9987OLD_FILES+=usr/share/man/man8/unbound.8.gz 9988# 20180508: retire nxge 9989OLD_FILES+=usr/share/man/man4/if_nxge.4.gz 9990OLD_FILES+=usr/share/man/man4/nxge.4.gz 9991# 20180505: rhosts 9992OLD_FILES+=usr/share/skel/dot.rhosts 9993# 20180502: retire ixgb 9994OLD_FILES+=usr/share/man/man4/if_ixgb.4.gz 9995OLD_FILES+=usr/share/man/man4/ixgb.4.gz 9996# 20180501: retire lmc 9997OLD_FILES+=usr/include/dev/lmc/if_lmc.h 9998OLD_DIRS+=usr/include/dev/lmc 9999OLD_FILES+=usr/sbin/lmcconfig 10000OLD_FILES+=usr/share/man/man4/lmc.4.gz 10001OLD_FILES+=usr/share/man/man4/if_lmc.4.gz 10002OLD_FILES+=usr/share/man/man8/lmcconfig.8.gz 10003# 20180417: remove fuswintr and suswintr 10004OLD_FILES+=usr/share/man/man9/fuswintr.9.gz 10005OLD_FILES+=usr/share/man/man9/suswintr.9.gz 10006# 20180413: remove Arcnet support 10007OLD_FILES+=usr/include/net/if_arc.h 10008OLD_FILES+=usr/share/man/man4/cm.4.gz 10009# 20180409: remove FDDI support 10010OLD_FILES+=usr/include/net/fddi.h 10011OLD_FILES+=usr/share/man/man4/fpa.4.gz 10012# 20180319: remove /boot/overlays, replaced by /boot/dtb/overlays 10013OLD_DIRS+=boot/overlays 10014# 20180311: remove sys/sys/i386/include/pcaudioio.h 10015.if ${TARGET_ARCH} == "i386" 10016OLD_FILES+=usr/include/machine/pcaudioio.h 10017.endif 10018# 20180310: remove sys/sys/dataacq.h 10019OLD_FILES+=usr/include/sys/dataacq.h 10020# 20180306: remove DTrace scripts made obsolete by dwatch(1) 10021OLD_FILES+=usr/share/dtrace/watch_execve 10022OLD_FILES+=usr/share/dtrace/watch_kill 10023OLD_FILES+=usr/share/dtrace/watch_vop_remove 10024# 20180212: move devmatch 10025OLD_FILES+=usr/sbin/devmatch 10026# 20180211: remove usb.conf 10027OLD_FILES+=etc/devd/usb.conf 10028# 20180208: remove c_rehash(1) 10029OLD_FILES+=usr/share/openssl/man/man1/c_rehash.1.gz 10030# 20180206: remove gdbtui 10031OLD_FILES+=usr/bin/gdbtui 10032# 20180201: Obsolete forth files 10033OLD_FILES+=boot/pcibios.4th 10034# 20180114: new clang import which bumps version from 5.0.1 to 6.0.0 10035OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/allocator_interface.h 10036OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/asan_interface.h 10037OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/common_interface_defs.h 10038OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/coverage_interface.h 10039OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/dfsan_interface.h 10040OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/esan_interface.h 10041OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/linux_syscall_hooks.h 10042OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/lsan_interface.h 10043OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/msan_interface.h 10044OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/tsan_interface.h 10045OLD_FILES+=usr/lib/clang/5.0.1/include/sanitizer/tsan_interface_atomic.h 10046OLD_DIRS+=usr/lib/clang/5.0.1/include/sanitizer 10047OLD_FILES+=usr/lib/clang/5.0.1/include/__clang_cuda_builtin_vars.h 10048OLD_FILES+=usr/lib/clang/5.0.1/include/__clang_cuda_cmath.h 10049OLD_FILES+=usr/lib/clang/5.0.1/include/__clang_cuda_complex_builtins.h 10050OLD_FILES+=usr/lib/clang/5.0.1/include/__clang_cuda_intrinsics.h 10051OLD_FILES+=usr/lib/clang/5.0.1/include/__clang_cuda_math_forward_declares.h 10052OLD_FILES+=usr/lib/clang/5.0.1/include/__clang_cuda_runtime_wrapper.h 10053OLD_FILES+=usr/lib/clang/5.0.1/include/__stddef_max_align_t.h 10054OLD_FILES+=usr/lib/clang/5.0.1/include/__wmmintrin_aes.h 10055OLD_FILES+=usr/lib/clang/5.0.1/include/__wmmintrin_pclmul.h 10056OLD_FILES+=usr/lib/clang/5.0.1/include/adxintrin.h 10057OLD_FILES+=usr/lib/clang/5.0.1/include/altivec.h 10058OLD_FILES+=usr/lib/clang/5.0.1/include/ammintrin.h 10059OLD_FILES+=usr/lib/clang/5.0.1/include/arm_acle.h 10060OLD_FILES+=usr/lib/clang/5.0.1/include/arm_neon.h 10061OLD_FILES+=usr/lib/clang/5.0.1/include/armintr.h 10062OLD_FILES+=usr/lib/clang/5.0.1/include/avx2intrin.h 10063OLD_FILES+=usr/lib/clang/5.0.1/include/avx512bwintrin.h 10064OLD_FILES+=usr/lib/clang/5.0.1/include/avx512cdintrin.h 10065OLD_FILES+=usr/lib/clang/5.0.1/include/avx512dqintrin.h 10066OLD_FILES+=usr/lib/clang/5.0.1/include/avx512erintrin.h 10067OLD_FILES+=usr/lib/clang/5.0.1/include/avx512fintrin.h 10068OLD_FILES+=usr/lib/clang/5.0.1/include/avx512ifmaintrin.h 10069OLD_FILES+=usr/lib/clang/5.0.1/include/avx512ifmavlintrin.h 10070OLD_FILES+=usr/lib/clang/5.0.1/include/avx512pfintrin.h 10071OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vbmiintrin.h 10072OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vbmivlintrin.h 10073OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vlbwintrin.h 10074OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vlcdintrin.h 10075OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vldqintrin.h 10076OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vlintrin.h 10077OLD_FILES+=usr/lib/clang/5.0.1/include/avx512vpopcntdqintrin.h 10078OLD_FILES+=usr/lib/clang/5.0.1/include/avxintrin.h 10079OLD_FILES+=usr/lib/clang/5.0.1/include/bmi2intrin.h 10080OLD_FILES+=usr/lib/clang/5.0.1/include/bmiintrin.h 10081OLD_FILES+=usr/lib/clang/5.0.1/include/clflushoptintrin.h 10082OLD_FILES+=usr/lib/clang/5.0.1/include/clzerointrin.h 10083OLD_FILES+=usr/lib/clang/5.0.1/include/cpuid.h 10084OLD_FILES+=usr/lib/clang/5.0.1/include/emmintrin.h 10085OLD_FILES+=usr/lib/clang/5.0.1/include/f16cintrin.h 10086OLD_FILES+=usr/lib/clang/5.0.1/include/fma4intrin.h 10087OLD_FILES+=usr/lib/clang/5.0.1/include/fmaintrin.h 10088OLD_FILES+=usr/lib/clang/5.0.1/include/fxsrintrin.h 10089OLD_FILES+=usr/lib/clang/5.0.1/include/htmintrin.h 10090OLD_FILES+=usr/lib/clang/5.0.1/include/htmxlintrin.h 10091OLD_FILES+=usr/lib/clang/5.0.1/include/ia32intrin.h 10092OLD_FILES+=usr/lib/clang/5.0.1/include/immintrin.h 10093OLD_FILES+=usr/lib/clang/5.0.1/include/lwpintrin.h 10094OLD_FILES+=usr/lib/clang/5.0.1/include/lzcntintrin.h 10095OLD_FILES+=usr/lib/clang/5.0.1/include/mm3dnow.h 10096OLD_FILES+=usr/lib/clang/5.0.1/include/mm_malloc.h 10097OLD_FILES+=usr/lib/clang/5.0.1/include/mmintrin.h 10098OLD_FILES+=usr/lib/clang/5.0.1/include/module.modulemap 10099OLD_FILES+=usr/lib/clang/5.0.1/include/msa.h 10100OLD_FILES+=usr/lib/clang/5.0.1/include/mwaitxintrin.h 10101OLD_FILES+=usr/lib/clang/5.0.1/include/nmmintrin.h 10102OLD_FILES+=usr/lib/clang/5.0.1/include/opencl-c.h 10103OLD_FILES+=usr/lib/clang/5.0.1/include/pkuintrin.h 10104OLD_FILES+=usr/lib/clang/5.0.1/include/pmmintrin.h 10105OLD_FILES+=usr/lib/clang/5.0.1/include/popcntintrin.h 10106OLD_FILES+=usr/lib/clang/5.0.1/include/prfchwintrin.h 10107OLD_FILES+=usr/lib/clang/5.0.1/include/rdseedintrin.h 10108OLD_FILES+=usr/lib/clang/5.0.1/include/rtmintrin.h 10109OLD_FILES+=usr/lib/clang/5.0.1/include/s390intrin.h 10110OLD_FILES+=usr/lib/clang/5.0.1/include/shaintrin.h 10111OLD_FILES+=usr/lib/clang/5.0.1/include/smmintrin.h 10112OLD_FILES+=usr/lib/clang/5.0.1/include/tbmintrin.h 10113OLD_FILES+=usr/lib/clang/5.0.1/include/tmmintrin.h 10114OLD_FILES+=usr/lib/clang/5.0.1/include/vadefs.h 10115OLD_FILES+=usr/lib/clang/5.0.1/include/vecintrin.h 10116OLD_FILES+=usr/lib/clang/5.0.1/include/wmmintrin.h 10117OLD_FILES+=usr/lib/clang/5.0.1/include/x86intrin.h 10118OLD_FILES+=usr/lib/clang/5.0.1/include/xmmintrin.h 10119OLD_FILES+=usr/lib/clang/5.0.1/include/xopintrin.h 10120OLD_FILES+=usr/lib/clang/5.0.1/include/xsavecintrin.h 10121OLD_FILES+=usr/lib/clang/5.0.1/include/xsaveintrin.h 10122OLD_FILES+=usr/lib/clang/5.0.1/include/xsaveoptintrin.h 10123OLD_FILES+=usr/lib/clang/5.0.1/include/xsavesintrin.h 10124OLD_FILES+=usr/lib/clang/5.0.1/include/xtestintrin.h 10125OLD_DIRS+=usr/lib/clang/5.0.1/include 10126OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan-i386.a 10127OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan-i386.so 10128OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 10129OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 10130OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan-x86_64.a 10131OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan-x86_64.so 10132OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 10133OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 10134OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.profile-arm.a 10135OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.profile-armhf.a 10136OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.profile-i386.a 10137OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.profile-x86_64.a 10138OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.safestack-i386.a 10139OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.safestack-x86_64.a 10140OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.stats-i386.a 10141OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.stats-x86_64.a 10142OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.stats_client-i386.a 10143OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 10144OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 10145OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 10146OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 10147OLD_FILES+=usr/lib/clang/5.0.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 10148OLD_DIRS+=usr/lib/clang/5.0.1/lib/freebsd 10149OLD_DIRS+=usr/lib/clang/5.0.1/lib 10150OLD_DIRS+=usr/lib/clang/5.0.1 10151# 20180109: Remove vestiges of digi(4) driver 10152OLD_FILES+=usr/include/sys/digiio.h 10153OLD_FILES+=usr/sbin/digictl 10154OLD_FILES+=usr/share/man/man8/digictl.8.gz 10155# 20180107: Convert remaining geli(8) tests to ATF 10156OLD_FILES+=tests/sys/geom/class/eli/nokey_test.sh 10157OLD_FILES+=tests/sys/geom/class/eli/readonly_test.sh 10158# 20180106: Convert most geli(8) tests to ATF 10159OLD_FILES+=tests/sys/geom/class/eli/attach_d_test.sh 10160OLD_FILES+=tests/sys/geom/class/eli/configure_b_B_test.sh 10161OLD_FILES+=tests/sys/geom/class/eli/detach_l_test.sh 10162OLD_FILES+=tests/sys/geom/class/eli/init_B_test.sh 10163OLD_FILES+=tests/sys/geom/class/eli/init_J_test.sh 10164OLD_FILES+=tests/sys/geom/class/eli/init_a_test.sh 10165OLD_FILES+=tests/sys/geom/class/eli/init_alias_test.sh 10166OLD_FILES+=tests/sys/geom/class/eli/init_i_P_test.sh 10167OLD_FILES+=tests/sys/geom/class/eli/integrity_copy_test.sh 10168OLD_FILES+=tests/sys/geom/class/eli/integrity_data_test.sh 10169OLD_FILES+=tests/sys/geom/class/eli/integrity_hmac_test.sh 10170OLD_FILES+=tests/sys/geom/class/eli/onetime_a_test.sh 10171OLD_FILES+=tests/sys/geom/class/eli/onetime_d_test.sh 10172# 20171230: Remove /etc/skel from mtree 10173OLD_DIRS+=etc/skel 10174# 20171208: Remove basename_r(3) 10175OLD_FILES+=usr/share/man/man3/basename_r.3.gz 10176# 20171206: Remove sponge(1) 10177OLD_FILES+=usr/bin/sponge 10178OLD_FILES+=usr/share/man/man1/sponge.1.gz 10179# 20171204: Move fdformat man page from volume 1 to volume 8 10180OLD_FILES+=usr/share/man/man1/fdformat.1.gz 10181# 20171203: libproc version bump 10182OLD_LIBS+=usr/lib/libproc.so.4 10183# 20171203: new clang import which bumps version from 5.0.0 to 5.0.1 10184OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/allocator_interface.h 10185OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/asan_interface.h 10186OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/common_interface_defs.h 10187OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/coverage_interface.h 10188OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/dfsan_interface.h 10189OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/esan_interface.h 10190OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/linux_syscall_hooks.h 10191OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/lsan_interface.h 10192OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/msan_interface.h 10193OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/tsan_interface.h 10194OLD_FILES+=usr/lib/clang/5.0.0/include/sanitizer/tsan_interface_atomic.h 10195OLD_DIRS+=usr/lib/clang/5.0.0/include/sanitizer 10196OLD_FILES+=usr/lib/clang/5.0.0/include/__clang_cuda_builtin_vars.h 10197OLD_FILES+=usr/lib/clang/5.0.0/include/__clang_cuda_cmath.h 10198OLD_FILES+=usr/lib/clang/5.0.0/include/__clang_cuda_complex_builtins.h 10199OLD_FILES+=usr/lib/clang/5.0.0/include/__clang_cuda_intrinsics.h 10200OLD_FILES+=usr/lib/clang/5.0.0/include/__clang_cuda_math_forward_declares.h 10201OLD_FILES+=usr/lib/clang/5.0.0/include/__clang_cuda_runtime_wrapper.h 10202OLD_FILES+=usr/lib/clang/5.0.0/include/__stddef_max_align_t.h 10203OLD_FILES+=usr/lib/clang/5.0.0/include/__wmmintrin_aes.h 10204OLD_FILES+=usr/lib/clang/5.0.0/include/__wmmintrin_pclmul.h 10205OLD_FILES+=usr/lib/clang/5.0.0/include/adxintrin.h 10206OLD_FILES+=usr/lib/clang/5.0.0/include/altivec.h 10207OLD_FILES+=usr/lib/clang/5.0.0/include/ammintrin.h 10208OLD_FILES+=usr/lib/clang/5.0.0/include/arm_acle.h 10209OLD_FILES+=usr/lib/clang/5.0.0/include/arm_neon.h 10210OLD_FILES+=usr/lib/clang/5.0.0/include/armintr.h 10211OLD_FILES+=usr/lib/clang/5.0.0/include/avx2intrin.h 10212OLD_FILES+=usr/lib/clang/5.0.0/include/avx512bwintrin.h 10213OLD_FILES+=usr/lib/clang/5.0.0/include/avx512cdintrin.h 10214OLD_FILES+=usr/lib/clang/5.0.0/include/avx512dqintrin.h 10215OLD_FILES+=usr/lib/clang/5.0.0/include/avx512erintrin.h 10216OLD_FILES+=usr/lib/clang/5.0.0/include/avx512fintrin.h 10217OLD_FILES+=usr/lib/clang/5.0.0/include/avx512ifmaintrin.h 10218OLD_FILES+=usr/lib/clang/5.0.0/include/avx512ifmavlintrin.h 10219OLD_FILES+=usr/lib/clang/5.0.0/include/avx512pfintrin.h 10220OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vbmiintrin.h 10221OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vbmivlintrin.h 10222OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vlbwintrin.h 10223OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vlcdintrin.h 10224OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vldqintrin.h 10225OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vlintrin.h 10226OLD_FILES+=usr/lib/clang/5.0.0/include/avx512vpopcntdqintrin.h 10227OLD_FILES+=usr/lib/clang/5.0.0/include/avxintrin.h 10228OLD_FILES+=usr/lib/clang/5.0.0/include/bmi2intrin.h 10229OLD_FILES+=usr/lib/clang/5.0.0/include/bmiintrin.h 10230OLD_FILES+=usr/lib/clang/5.0.0/include/clflushoptintrin.h 10231OLD_FILES+=usr/lib/clang/5.0.0/include/clzerointrin.h 10232OLD_FILES+=usr/lib/clang/5.0.0/include/cpuid.h 10233OLD_FILES+=usr/lib/clang/5.0.0/include/emmintrin.h 10234OLD_FILES+=usr/lib/clang/5.0.0/include/f16cintrin.h 10235OLD_FILES+=usr/lib/clang/5.0.0/include/fma4intrin.h 10236OLD_FILES+=usr/lib/clang/5.0.0/include/fmaintrin.h 10237OLD_FILES+=usr/lib/clang/5.0.0/include/fxsrintrin.h 10238OLD_FILES+=usr/lib/clang/5.0.0/include/htmintrin.h 10239OLD_FILES+=usr/lib/clang/5.0.0/include/htmxlintrin.h 10240OLD_FILES+=usr/lib/clang/5.0.0/include/ia32intrin.h 10241OLD_FILES+=usr/lib/clang/5.0.0/include/immintrin.h 10242OLD_FILES+=usr/lib/clang/5.0.0/include/lwpintrin.h 10243OLD_FILES+=usr/lib/clang/5.0.0/include/lzcntintrin.h 10244OLD_FILES+=usr/lib/clang/5.0.0/include/mm3dnow.h 10245OLD_FILES+=usr/lib/clang/5.0.0/include/mm_malloc.h 10246OLD_FILES+=usr/lib/clang/5.0.0/include/mmintrin.h 10247OLD_FILES+=usr/lib/clang/5.0.0/include/module.modulemap 10248OLD_FILES+=usr/lib/clang/5.0.0/include/msa.h 10249OLD_FILES+=usr/lib/clang/5.0.0/include/mwaitxintrin.h 10250OLD_FILES+=usr/lib/clang/5.0.0/include/nmmintrin.h 10251OLD_FILES+=usr/lib/clang/5.0.0/include/opencl-c.h 10252OLD_FILES+=usr/lib/clang/5.0.0/include/pkuintrin.h 10253OLD_FILES+=usr/lib/clang/5.0.0/include/pmmintrin.h 10254OLD_FILES+=usr/lib/clang/5.0.0/include/popcntintrin.h 10255OLD_FILES+=usr/lib/clang/5.0.0/include/prfchwintrin.h 10256OLD_FILES+=usr/lib/clang/5.0.0/include/rdseedintrin.h 10257OLD_FILES+=usr/lib/clang/5.0.0/include/rtmintrin.h 10258OLD_FILES+=usr/lib/clang/5.0.0/include/s390intrin.h 10259OLD_FILES+=usr/lib/clang/5.0.0/include/shaintrin.h 10260OLD_FILES+=usr/lib/clang/5.0.0/include/smmintrin.h 10261OLD_FILES+=usr/lib/clang/5.0.0/include/tbmintrin.h 10262OLD_FILES+=usr/lib/clang/5.0.0/include/tmmintrin.h 10263OLD_FILES+=usr/lib/clang/5.0.0/include/vadefs.h 10264OLD_FILES+=usr/lib/clang/5.0.0/include/vecintrin.h 10265OLD_FILES+=usr/lib/clang/5.0.0/include/wmmintrin.h 10266OLD_FILES+=usr/lib/clang/5.0.0/include/x86intrin.h 10267OLD_FILES+=usr/lib/clang/5.0.0/include/xmmintrin.h 10268OLD_FILES+=usr/lib/clang/5.0.0/include/xopintrin.h 10269OLD_FILES+=usr/lib/clang/5.0.0/include/xsavecintrin.h 10270OLD_FILES+=usr/lib/clang/5.0.0/include/xsaveintrin.h 10271OLD_FILES+=usr/lib/clang/5.0.0/include/xsaveoptintrin.h 10272OLD_FILES+=usr/lib/clang/5.0.0/include/xsavesintrin.h 10273OLD_FILES+=usr/lib/clang/5.0.0/include/xtestintrin.h 10274OLD_DIRS+=usr/lib/clang/5.0.0/include 10275OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-i386.a 10276OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-i386.so 10277OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 10278OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 10279OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 10280OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 10281OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 10282OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 10283OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.profile-arm.a 10284OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.profile-armhf.a 10285OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.profile-i386.a 10286OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 10287OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.safestack-i386.a 10288OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 10289OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.stats-i386.a 10290OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 10291OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 10292OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 10293OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 10294OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 10295OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 10296OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 10297OLD_DIRS+=usr/lib/clang/5.0.0/lib/freebsd 10298OLD_DIRS+=usr/lib/clang/5.0.0/lib 10299OLD_DIRS+=usr/lib/clang/5.0.0 10300# 20171118: Remove old etc casper files 10301OLD_FILES+=etc/casper/system.dns 10302OLD_FILES+=etc/casper/system.grp 10303OLD_FILES+=etc/casper/system.pwd 10304OLD_FILES+=etc/casper/system.random 10305OLD_FILES+=etc/casper/system.sysctl 10306OLD_DIRS+=etc/casper 10307# 20171116: lint(1) removal 10308OLD_FILES+=usr/bin/lint 10309OLD_FILES+=usr/libexec/lint1 10310OLD_FILES+=usr/libexec/lint2 10311OLD_FILES+=usr/libdata/lint/llib-lposix.ln 10312OLD_FILES+=usr/libdata/lint/llib-lstdc.ln 10313OLD_FILES+=usr/share/man/man1/lint.1.gz 10314OLD_FILES+=usr/share/man/man7/lint.7.gz 10315OLD_DIRS+=usr/libdata/lint 10316# 20171114: Removal of all fortune datfiles other than freebsd-tips 10317OLD_FILES+=usr/share/games/fortune/fortunes 10318OLD_FILES+=usr/share/games/fortune/fortunes.dat 10319OLD_FILES+=usr/share/games/fortune/gerrold.limerick 10320OLD_FILES+=usr/share/games/fortune/gerrold.limerick.dat 10321OLD_FILES+=usr/share/games/fortune/limerick 10322OLD_FILES+=usr/share/games/fortune/limerick.dat 10323OLD_FILES+=usr/share/games/fortune/murphy 10324OLD_FILES+=usr/share/games/fortune/murphy-o 10325OLD_FILES+=usr/share/games/fortune/murphy-o.dat 10326OLD_FILES+=usr/share/games/fortune/murphy.dat 10327OLD_FILES+=usr/share/games/fortune/startrek 10328OLD_FILES+=usr/share/games/fortune/startrek.dat 10329OLD_FILES+=usr/share/games/fortune/zippy 10330OLD_FILES+=usr/share/games/fortune/zippy.dat 10331# 20171112: Removal of eqnchar definition 10332OLD_FILES+=usr/share/misc/eqnchar 10333# 20171110: Removal of mailaddr man page 10334OLD_FILES+=usr/share/man/man7/mailaddr.7.gz 10335# 20171108: Rename of NgSendMsgReply to NgSendReplyMsg 10336OLD_FILES+=usr/share/man/man3/NgSendMsgReply.3.gz 10337# 20171108: badsect(8) removal 10338OLD_FILES+=sbin/badsect 10339OLD_FILES+=rescue/badsect 10340OLD_FILES+=usr/share/man/man8/badsect.8.gz 10341# 20171105: fixing lib/libclang_rt CRTARCH for arm:armv[67] 10342.if ${MACHINE_ARCH:Marmv[67]*} != "" && \ 10343 (!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "") 10344OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-preinit-arm.a 10345OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-arm.a 10346OLD_LIBS+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan-arm.so 10347OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.asan_cxx-arm.a 10348OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.profile-arm.a 10349OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.safestack-arm.a 10350OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.stats-arm.a 10351OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.stats_client-arm.a 10352OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.ubsan_standalone-arm.a 10353OLD_FILES+=usr/lib/clang/5.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-arm.a 10354.endif 10355# 20171104: libcap_random should be in /lib not in /usr/lib 10356OLD_LIBS+=usr/lib/libcap_random.so.0 10357# 20171104: Casper can work only as shared library 10358OLD_FILES+=usr/lib/libcap_dns.a 10359OLD_FILES+=usr/lib/libcap_dns_p.a 10360OLD_FILES+=usr/lib/libcap_grp.a 10361OLD_FILES+=usr/lib/libcap_grp_p.a 10362OLD_FILES+=usr/lib/libcap_pwd.a 10363OLD_FILES+=usr/lib/libcap_pwd_p.a 10364OLD_FILES+=usr/lib/libcap_random.a 10365OLD_FILES+=usr/lib/libcap_random_p.a 10366OLD_FILES+=usr/lib/libcap_sysctl.a 10367OLD_FILES+=usr/lib/libcap_sysctl_p.a 10368OLD_FILES+=usr/lib/libcasper.a 10369OLD_FILES+=usr/lib/libcasper_p.a 10370# 20171031: Removal of adding_user man page 10371OLD_FILES+=usr/share/man/man7/adding_user.7.gz 10372# 20171031: Disconnected libpathconv tests 10373OLD_DIRS+=usr/tests/lib/libpathconv 10374# 20171017: Removal of mbpool(9) 10375OLD_FILES+=usr/include/sys/mbpool.h 10376OLD_FILES+=usr/share/man/man9/mbpool.9.gz 10377OLD_FILES+=usr/share/man/man9/mbp_destroy.9.gz 10378OLD_FILES+=usr/share/man/man9/mbp_alloc.9.gz 10379OLD_FILES+=usr/share/man/man9/mbp_ext_free.9.gz 10380OLD_FILES+=usr/share/man/man9/mbp_count.9.gz 10381OLD_FILES+=usr/share/man/man9/mbp_card_free.9.gz 10382OLD_FILES+=usr/share/man/man9/mbp_get_keep.9.gz 10383OLD_FILES+=usr/share/man/man9/mbp_free.9.gz 10384OLD_FILES+=usr/share/man/man9/mbp_get.9.gz 10385OLD_FILES+=usr/share/man/man9/mbp_create.9.gz 10386OLD_FILES+=usr/share/man/man9/mbp_sync.9.gz 10387# 20171010: Remove libstand 10388OLD_FILES+=usr/lib/libstand.a 10389OLD_FILES+=usr/lib/libstand_p.a 10390OLD_FILES+=usr/include/stand.h 10391OLD_FILES+=usr/share/man/man3/libstand.3.gz 10392# 20171003: remove RCMDS 10393OLD_FILES+=bin/rcp 10394OLD_FILES+=rescue/rcp 10395OLD_FILES+=usr/bin/rlogin 10396OLD_FILES+=usr/bin/rsh 10397OLD_FILES+=usr/libexec/rlogind 10398OLD_FILES+=usr/libexec/rshd 10399OLD_FILES+=usr/share/man/man1/rcp.1.gz 10400OLD_FILES+=usr/share/man/man1/rlogin.1.gz 10401OLD_FILES+=usr/share/man/man1/rsh.1.gz 10402OLD_FILES+=usr/share/man/man8/rlogind.8.gz 10403OLD_FILES+=usr/share/man/man8/rshd.8.gz 10404# 20170927: crshared 10405OLD_FILES+=usr/share/man/man9/crshared.9.gz 10406# 20170927: procctl 10407OLD_FILES+=usr/share/man/man8/procctl.8.gz 10408OLD_FILES+=usr/sbin/procctl 10409# 20170926: remove unneeded man aliases and locales directory 10410OLD_FILES+=usr/share/man/en.ISO8859-1/man1 10411OLD_FILES+=usr/share/man/en.ISO8859-1/man2 10412OLD_FILES+=usr/share/man/en.ISO8859-1/man3 10413OLD_FILES+=usr/share/man/en.ISO8859-1/man4 10414OLD_FILES+=usr/share/man/en.ISO8859-1/man5 10415OLD_FILES+=usr/share/man/en.ISO8859-1/man6 10416OLD_FILES+=usr/share/man/en.ISO8859-1/man7 10417OLD_FILES+=usr/share/man/en.ISO8859-1/man8 10418OLD_FILES+=usr/share/man/en.ISO8859-1/man9 10419OLD_DIRS+=usr/share/man/en.ISO8859-1 10420OLD_FILES+=usr/share/man/en.ISO8859-1/mandoc.db 10421OLD_FILES+=usr/share/man/en.UTF-8/man1 10422OLD_FILES+=usr/share/man/en.UTF-8/man2 10423OLD_FILES+=usr/share/man/en.UTF-8/man3 10424OLD_FILES+=usr/share/man/en.UTF-8/man4 10425OLD_FILES+=usr/share/man/en.UTF-8/man5 10426OLD_FILES+=usr/share/man/en.UTF-8/man6 10427OLD_FILES+=usr/share/man/en.UTF-8/man7 10428OLD_FILES+=usr/share/man/en.UTF-8/man8 10429OLD_FILES+=usr/share/man/en.UTF-8/man9 10430OLD_FILES+=usr/share/man/en.UTF-8/mandoc.db 10431OLD_DIRS+=usr/share/man/en.UTF-8 10432OLD_FILES+=usr/share/man/en.ISO8859-15 10433OLD_FILES+=usr/share/openssl/man/en.ISO8859-1/man1 10434OLD_FILES+=usr/share/openssl/man/en.ISO8859-1/man3 10435OLD_FILES+=usr/share/openssl/man/en.ISO8859-1/mandoc.db 10436OLD_DIRS+=usr/share/openssl/man/en.ISO8859-1 10437OLD_FILES+=usr/share/openssl/man/en.ISO8859-15 10438OLD_DIRS+=usr/share/man/ja/man1 10439OLD_DIRS+=usr/share/man/ja/man2 10440OLD_DIRS+=usr/share/man/ja/man3 10441OLD_DIRS+=usr/share/man/ja/man4 10442OLD_DIRS+=usr/share/man/ja/man5 10443OLD_DIRS+=usr/share/man/ja/man6 10444OLD_DIRS+=usr/share/man/ja/man7 10445OLD_DIRS+=usr/share/man/ja/man8 10446OLD_DIRS+=usr/share/man/ja/man9 10447OLD_DIRS+=usr/share/man/ja 10448# 20170913: remove unneeded catman utility 10449OLD_FILES+=etc/periodic/weekly/330.catman 10450OLD_FILES+=usr/bin/catman 10451OLD_FILES+=usr/libexec/catman.local 10452OLD_FILES+=usr/share/man/man1/catman.1.gz 10453OLD_FILES+=usr/share/man/man8/catman.local.8.gz 10454OLD_DIRS+=usr/share/man/cat1 10455OLD_DIRS+=usr/share/man/cat2 10456OLD_DIRS+=usr/share/man/cat3 10457OLD_DIRS+=usr/share/man/cat4/amd64 10458OLD_DIRS+=usr/share/man/cat4/arm 10459OLD_DIRS+=usr/share/man/cat4/i386 10460OLD_DIRS+=usr/share/man/cat4/powerpc 10461OLD_DIRS+=usr/share/man/cat4/sparc64 10462OLD_DIRS+=usr/share/man/cat4 10463OLD_DIRS+=usr/share/man/cat5 10464OLD_DIRS+=usr/share/man/cat6 10465OLD_DIRS+=usr/share/man/cat7 10466OLD_DIRS+=usr/share/man/cat8/amd64 10467OLD_DIRS+=usr/share/man/cat8/arm 10468OLD_DIRS+=usr/share/man/cat8/i386 10469OLD_DIRS+=usr/share/man/cat8/powerpc 10470OLD_DIRS+=usr/share/man/cat8/sparc64 10471OLD_DIRS+=usr/share/man/cat8 10472OLD_DIRS+=usr/share/man/cat9 10473OLD_DIRS+=usr/share/man/en.ISO8859-1/cat1 10474OLD_DIRS+=usr/share/man/en.ISO8859-1/cat2 10475OLD_DIRS+=usr/share/man/en.ISO8859-1/cat3 10476OLD_DIRS+=usr/share/man/en.ISO8859-1/cat4/amd64 10477OLD_DIRS+=usr/share/man/en.ISO8859-1/cat4/arm 10478OLD_DIRS+=usr/share/man/en.ISO8859-1/cat4/i386 10479OLD_DIRS+=usr/share/man/en.ISO8859-1/cat4/powerpc 10480OLD_DIRS+=usr/share/man/en.ISO8859-1/cat4/sparc64 10481OLD_DIRS+=usr/share/man/en.ISO8859-1/cat4 10482OLD_DIRS+=usr/share/man/en.ISO8859-1/cat5 10483OLD_DIRS+=usr/share/man/en.ISO8859-1/cat6 10484OLD_DIRS+=usr/share/man/en.ISO8859-1/cat7 10485OLD_DIRS+=usr/share/man/en.ISO8859-1/cat8/amd64 10486OLD_DIRS+=usr/share/man/en.ISO8859-1/cat8/arm 10487OLD_DIRS+=usr/share/man/en.ISO8859-1/cat8/i386 10488OLD_DIRS+=usr/share/man/en.ISO8859-1/cat8/powerpc 10489OLD_DIRS+=usr/share/man/en.ISO8859-1/cat8/sparc64 10490OLD_DIRS+=usr/share/man/en.ISO8859-1/cat8 10491OLD_DIRS+=usr/share/man/en.ISO8859-1/cat9 10492OLD_DIRS+=usr/share/man/en.UTF-8/cat1 10493OLD_DIRS+=usr/share/man/en.UTF-8/cat2 10494OLD_DIRS+=usr/share/man/en.UTF-8/cat3 10495OLD_DIRS+=usr/share/man/en.UTF-8/cat4/amd64 10496OLD_DIRS+=usr/share/man/en.UTF-8/cat4/arm 10497OLD_DIRS+=usr/share/man/en.UTF-8/cat4/i386 10498OLD_DIRS+=usr/share/man/en.UTF-8/cat4/powerpc 10499OLD_DIRS+=usr/share/man/en.UTF-8/cat4/sparc64 10500OLD_DIRS+=usr/share/man/en.UTF-8/cat4 10501OLD_DIRS+=usr/share/man/en.UTF-8/cat5 10502OLD_DIRS+=usr/share/man/en.UTF-8/cat6 10503OLD_DIRS+=usr/share/man/en.UTF-8/cat7 10504OLD_DIRS+=usr/share/man/en.UTF-8/cat8/amd64 10505OLD_DIRS+=usr/share/man/en.UTF-8/cat8/arm 10506OLD_DIRS+=usr/share/man/en.UTF-8/cat8/i386 10507OLD_DIRS+=usr/share/man/en.UTF-8/cat8/powerpc 10508OLD_DIRS+=usr/share/man/en.UTF-8/cat8/sparc64 10509OLD_DIRS+=usr/share/man/en.UTF-8/cat8 10510OLD_DIRS+=usr/share/man/en.UTF-8/cat9 10511OLD_DIRS+=usr/share/man/ja/cat1 10512OLD_DIRS+=usr/share/man/ja/cat2 10513OLD_DIRS+=usr/share/man/ja/cat3 10514OLD_DIRS+=usr/share/man/ja/cat4/amd64 10515OLD_DIRS+=usr/share/man/ja/cat4/arm 10516OLD_DIRS+=usr/share/man/ja/cat4/i386 10517OLD_DIRS+=usr/share/man/ja/cat4/powerpc 10518OLD_DIRS+=usr/share/man/ja/cat4/sparc64 10519OLD_DIRS+=usr/share/man/ja/cat4 10520OLD_DIRS+=usr/share/man/ja/cat5 10521OLD_DIRS+=usr/share/man/ja/cat6 10522OLD_DIRS+=usr/share/man/ja/cat7 10523OLD_DIRS+=usr/share/man/ja/cat8/amd64 10524OLD_DIRS+=usr/share/man/ja/cat8/arm 10525OLD_DIRS+=usr/share/man/ja/cat8/powerpc 10526OLD_DIRS+=usr/share/man/ja/cat8/sparc64 10527OLD_DIRS+=usr/share/man/ja/cat8 10528OLD_DIRS+=usr/share/man/ja/cat9 10529OLD_DIRS+=usr/share/openssl/man/cat1 10530OLD_DIRS+=usr/share/openssl/man/cat3 10531OLD_DIRS+=usr/share/openssl/man/en.ISO8859-1/cat1 10532OLD_DIRS+=usr/share/openssl/man/en.ISO8859-1/cat3 10533# 20170830: rename ntb_hw(4) to ntb_hw_intel(4) 10534OLD_FILES+=usr/share/man/man4/ntb_hw.4.gz 10535# 20170802: ksyms(4) ioctl interface was removed 10536OLD_FILES+=usr/include/sys/ksyms.h 10537# 20170729: the iicbus/pcf8563 driver is replaced with iicbus/nxprtc 10538OLD_FILES+=usr/include/dev/iicbus/pcf8563reg.h 10539# 20170727: options FLOWTABLE removed 10540OLD_FILES+=usr/include/net/flowtable.h 10541# 20170722: new clang import which bumps version from 4.0.0 to 5.0.0 10542OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/allocator_interface.h 10543OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/asan_interface.h 10544OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/common_interface_defs.h 10545OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/coverage_interface.h 10546OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/dfsan_interface.h 10547OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/esan_interface.h 10548OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/linux_syscall_hooks.h 10549OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/lsan_interface.h 10550OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/msan_interface.h 10551OLD_FILES+=usr/lib/clang/4.0.0/include/sanitizer/tsan_interface_atomic.h 10552OLD_DIRS+=usr/lib/clang/4.0.0/include/sanitizer 10553OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_builtin_vars.h 10554OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_cmath.h 10555OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_complex_builtins.h 10556OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_intrinsics.h 10557OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_math_forward_declares.h 10558OLD_FILES+=usr/lib/clang/4.0.0/include/__clang_cuda_runtime_wrapper.h 10559OLD_FILES+=usr/lib/clang/4.0.0/include/__stddef_max_align_t.h 10560OLD_FILES+=usr/lib/clang/4.0.0/include/__wmmintrin_aes.h 10561OLD_FILES+=usr/lib/clang/4.0.0/include/__wmmintrin_pclmul.h 10562OLD_FILES+=usr/lib/clang/4.0.0/include/adxintrin.h 10563OLD_FILES+=usr/lib/clang/4.0.0/include/altivec.h 10564OLD_FILES+=usr/lib/clang/4.0.0/include/ammintrin.h 10565OLD_FILES+=usr/lib/clang/4.0.0/include/arm_acle.h 10566OLD_FILES+=usr/lib/clang/4.0.0/include/arm_neon.h 10567OLD_FILES+=usr/lib/clang/4.0.0/include/armintr.h 10568OLD_FILES+=usr/lib/clang/4.0.0/include/avx2intrin.h 10569OLD_FILES+=usr/lib/clang/4.0.0/include/avx512bwintrin.h 10570OLD_FILES+=usr/lib/clang/4.0.0/include/avx512cdintrin.h 10571OLD_FILES+=usr/lib/clang/4.0.0/include/avx512dqintrin.h 10572OLD_FILES+=usr/lib/clang/4.0.0/include/avx512erintrin.h 10573OLD_FILES+=usr/lib/clang/4.0.0/include/avx512fintrin.h 10574OLD_FILES+=usr/lib/clang/4.0.0/include/avx512ifmaintrin.h 10575OLD_FILES+=usr/lib/clang/4.0.0/include/avx512ifmavlintrin.h 10576OLD_FILES+=usr/lib/clang/4.0.0/include/avx512pfintrin.h 10577OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vbmiintrin.h 10578OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vbmivlintrin.h 10579OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vlbwintrin.h 10580OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vlcdintrin.h 10581OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vldqintrin.h 10582OLD_FILES+=usr/lib/clang/4.0.0/include/avx512vlintrin.h 10583OLD_FILES+=usr/lib/clang/4.0.0/include/avxintrin.h 10584OLD_FILES+=usr/lib/clang/4.0.0/include/bmi2intrin.h 10585OLD_FILES+=usr/lib/clang/4.0.0/include/bmiintrin.h 10586OLD_FILES+=usr/lib/clang/4.0.0/include/clflushoptintrin.h 10587OLD_FILES+=usr/lib/clang/4.0.0/include/cpuid.h 10588OLD_FILES+=usr/lib/clang/4.0.0/include/emmintrin.h 10589OLD_FILES+=usr/lib/clang/4.0.0/include/f16cintrin.h 10590OLD_FILES+=usr/lib/clang/4.0.0/include/fma4intrin.h 10591OLD_FILES+=usr/lib/clang/4.0.0/include/fmaintrin.h 10592OLD_FILES+=usr/lib/clang/4.0.0/include/fxsrintrin.h 10593OLD_FILES+=usr/lib/clang/4.0.0/include/htmintrin.h 10594OLD_FILES+=usr/lib/clang/4.0.0/include/htmxlintrin.h 10595OLD_FILES+=usr/lib/clang/4.0.0/include/ia32intrin.h 10596OLD_FILES+=usr/lib/clang/4.0.0/include/immintrin.h 10597OLD_FILES+=usr/lib/clang/4.0.0/include/lzcntintrin.h 10598OLD_FILES+=usr/lib/clang/4.0.0/include/mm3dnow.h 10599OLD_FILES+=usr/lib/clang/4.0.0/include/mm_malloc.h 10600OLD_FILES+=usr/lib/clang/4.0.0/include/mmintrin.h 10601OLD_FILES+=usr/lib/clang/4.0.0/include/module.modulemap 10602OLD_FILES+=usr/lib/clang/4.0.0/include/msa.h 10603OLD_FILES+=usr/lib/clang/4.0.0/include/mwaitxintrin.h 10604OLD_FILES+=usr/lib/clang/4.0.0/include/nmmintrin.h 10605OLD_FILES+=usr/lib/clang/4.0.0/include/opencl-c.h 10606OLD_FILES+=usr/lib/clang/4.0.0/include/pkuintrin.h 10607OLD_FILES+=usr/lib/clang/4.0.0/include/pmmintrin.h 10608OLD_FILES+=usr/lib/clang/4.0.0/include/popcntintrin.h 10609OLD_FILES+=usr/lib/clang/4.0.0/include/prfchwintrin.h 10610OLD_FILES+=usr/lib/clang/4.0.0/include/rdseedintrin.h 10611OLD_FILES+=usr/lib/clang/4.0.0/include/rtmintrin.h 10612OLD_FILES+=usr/lib/clang/4.0.0/include/s390intrin.h 10613OLD_FILES+=usr/lib/clang/4.0.0/include/shaintrin.h 10614OLD_FILES+=usr/lib/clang/4.0.0/include/smmintrin.h 10615OLD_FILES+=usr/lib/clang/4.0.0/include/tbmintrin.h 10616OLD_FILES+=usr/lib/clang/4.0.0/include/tmmintrin.h 10617OLD_FILES+=usr/lib/clang/4.0.0/include/vadefs.h 10618OLD_FILES+=usr/lib/clang/4.0.0/include/vecintrin.h 10619OLD_FILES+=usr/lib/clang/4.0.0/include/wmmintrin.h 10620OLD_FILES+=usr/lib/clang/4.0.0/include/x86intrin.h 10621OLD_FILES+=usr/lib/clang/4.0.0/include/xmmintrin.h 10622OLD_FILES+=usr/lib/clang/4.0.0/include/xopintrin.h 10623OLD_FILES+=usr/lib/clang/4.0.0/include/xsavecintrin.h 10624OLD_FILES+=usr/lib/clang/4.0.0/include/xsaveintrin.h 10625OLD_FILES+=usr/lib/clang/4.0.0/include/xsaveoptintrin.h 10626OLD_FILES+=usr/lib/clang/4.0.0/include/xsavesintrin.h 10627OLD_FILES+=usr/lib/clang/4.0.0/include/xtestintrin.h 10628OLD_DIRS+=usr/lib/clang/4.0.0/include 10629OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-i386.a 10630OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-i386.so 10631OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 10632OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 10633OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-x86_64.a 10634OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan-x86_64.so 10635OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 10636OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 10637OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.profile-arm.a 10638OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.profile-i386.a 10639OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.profile-x86_64.a 10640OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.safestack-i386.a 10641OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.safestack-x86_64.a 10642OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats-i386.a 10643OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats-x86_64.a 10644OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats_client-i386.a 10645OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 10646OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 10647OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 10648OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 10649OLD_FILES+=usr/lib/clang/4.0.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 10650OLD_DIRS+=usr/lib/clang/4.0.0/lib/freebsd 10651OLD_DIRS+=usr/lib/clang/4.0.0/lib 10652OLD_DIRS+=usr/lib/clang/4.0.0 10653OLD_FILES+=usr/bin/llvm-pdbdump 10654# 20170717: Remove documentation of vaporware 10655OLD_FILES+=usr/share/man/man2/pdwait4.2.gz 10656# 20170610: chown-f_test replaced by chown_test 10657OLD_FILES+=usr/tests/usr.sbin/chown/chown-f_test 10658# 20170609: drop obsolete manpage link (if_rtwn.ko -> rtwn.ko) 10659OLD_FILES+=usr/share/man/man4/if_rtwn.4.gz 10660# 20170531: removal of groff 10661OLD_FILES+=usr/bin/addftinfo 10662OLD_FILES+=usr/bin/afmtodit 10663OLD_FILES+=usr/bin/checknr 10664OLD_FILES+=usr/bin/colcrt 10665OLD_FILES+=usr/bin/eqn 10666OLD_FILES+=usr/bin/grn 10667OLD_FILES+=usr/bin/grodvi 10668OLD_FILES+=usr/bin/groff 10669OLD_FILES+=usr/bin/grog 10670OLD_FILES+=usr/bin/grolbp 10671OLD_FILES+=usr/bin/grolj4 10672OLD_FILES+=usr/bin/grops 10673OLD_FILES+=usr/bin/grotty 10674OLD_FILES+=usr/bin/hpftodit 10675OLD_FILES+=usr/bin/indxbib 10676OLD_FILES+=usr/bin/lkbib 10677OLD_FILES+=usr/bin/lookbib 10678OLD_FILES+=usr/bin/mmroff 10679OLD_FILES+=usr/bin/neqn 10680OLD_FILES+=usr/bin/nroff 10681OLD_FILES+=usr/bin/pfbtops 10682OLD_FILES+=usr/bin/pic 10683OLD_FILES+=usr/bin/post-grohtml 10684OLD_FILES+=usr/bin/pre-grohtml 10685OLD_FILES+=usr/bin/psroff 10686OLD_FILES+=usr/bin/refer 10687OLD_FILES+=usr/bin/tbl 10688OLD_FILES+=usr/bin/tfmtodit 10689OLD_FILES+=usr/bin/troff 10690OLD_FILES+=usr/bin/vgrind 10691OLD_FILES+=usr/libexec/vfontedpr 10692OLD_FILES+=usr/share/dict/eign 10693OLD_FILES+=usr/share/groff_font/devX100-12/CB 10694OLD_FILES+=usr/share/groff_font/devX100-12/CBI 10695OLD_FILES+=usr/share/groff_font/devX100-12/CI 10696OLD_FILES+=usr/share/groff_font/devX100-12/CR 10697OLD_FILES+=usr/share/groff_font/devX100-12/DESC 10698OLD_FILES+=usr/share/groff_font/devX100-12/HB 10699OLD_FILES+=usr/share/groff_font/devX100-12/HBI 10700OLD_FILES+=usr/share/groff_font/devX100-12/HI 10701OLD_FILES+=usr/share/groff_font/devX100-12/HR 10702OLD_FILES+=usr/share/groff_font/devX100-12/NB 10703OLD_FILES+=usr/share/groff_font/devX100-12/NBI 10704OLD_FILES+=usr/share/groff_font/devX100-12/NI 10705OLD_FILES+=usr/share/groff_font/devX100-12/NR 10706OLD_FILES+=usr/share/groff_font/devX100-12/S 10707OLD_FILES+=usr/share/groff_font/devX100-12/TB 10708OLD_FILES+=usr/share/groff_font/devX100-12/TBI 10709OLD_FILES+=usr/share/groff_font/devX100-12/TI 10710OLD_FILES+=usr/share/groff_font/devX100-12/TR 10711OLD_DIRS+=usr/share/groff_font/devX100-12 10712OLD_FILES+=usr/share/groff_font/devX100/CB 10713OLD_FILES+=usr/share/groff_font/devX100/CBI 10714OLD_FILES+=usr/share/groff_font/devX100/CI 10715OLD_FILES+=usr/share/groff_font/devX100/CR 10716OLD_FILES+=usr/share/groff_font/devX100/DESC 10717OLD_FILES+=usr/share/groff_font/devX100/HB 10718OLD_FILES+=usr/share/groff_font/devX100/HBI 10719OLD_FILES+=usr/share/groff_font/devX100/HI 10720OLD_FILES+=usr/share/groff_font/devX100/HR 10721OLD_FILES+=usr/share/groff_font/devX100/NB 10722OLD_FILES+=usr/share/groff_font/devX100/NBI 10723OLD_FILES+=usr/share/groff_font/devX100/NI 10724OLD_FILES+=usr/share/groff_font/devX100/NR 10725OLD_FILES+=usr/share/groff_font/devX100/S 10726OLD_FILES+=usr/share/groff_font/devX100/TB 10727OLD_FILES+=usr/share/groff_font/devX100/TBI 10728OLD_FILES+=usr/share/groff_font/devX100/TI 10729OLD_FILES+=usr/share/groff_font/devX100/TR 10730OLD_DIRS+=usr/share/groff_font/devX100 10731OLD_FILES+=usr/share/groff_font/devX75-12/CB 10732OLD_FILES+=usr/share/groff_font/devX75-12/CBI 10733OLD_FILES+=usr/share/groff_font/devX75-12/CI 10734OLD_FILES+=usr/share/groff_font/devX75-12/CR 10735OLD_FILES+=usr/share/groff_font/devX75-12/DESC 10736OLD_FILES+=usr/share/groff_font/devX75-12/HB 10737OLD_FILES+=usr/share/groff_font/devX75-12/HBI 10738OLD_FILES+=usr/share/groff_font/devX75-12/HI 10739OLD_FILES+=usr/share/groff_font/devX75-12/HR 10740OLD_FILES+=usr/share/groff_font/devX75-12/NB 10741OLD_FILES+=usr/share/groff_font/devX75-12/NBI 10742OLD_FILES+=usr/share/groff_font/devX75-12/NI 10743OLD_FILES+=usr/share/groff_font/devX75-12/NR 10744OLD_FILES+=usr/share/groff_font/devX75-12/S 10745OLD_FILES+=usr/share/groff_font/devX75-12/TB 10746OLD_FILES+=usr/share/groff_font/devX75-12/TBI 10747OLD_FILES+=usr/share/groff_font/devX75-12/TI 10748OLD_FILES+=usr/share/groff_font/devX75-12/TR 10749OLD_DIRS+=usr/share/groff_font/devX75-12 10750OLD_FILES+=usr/share/groff_font/devX75/CB 10751OLD_FILES+=usr/share/groff_font/devX75/CBI 10752OLD_FILES+=usr/share/groff_font/devX75/CI 10753OLD_FILES+=usr/share/groff_font/devX75/CR 10754OLD_FILES+=usr/share/groff_font/devX75/DESC 10755OLD_FILES+=usr/share/groff_font/devX75/HB 10756OLD_FILES+=usr/share/groff_font/devX75/HBI 10757OLD_FILES+=usr/share/groff_font/devX75/HI 10758OLD_FILES+=usr/share/groff_font/devX75/HR 10759OLD_FILES+=usr/share/groff_font/devX75/NB 10760OLD_FILES+=usr/share/groff_font/devX75/NBI 10761OLD_FILES+=usr/share/groff_font/devX75/NI 10762OLD_FILES+=usr/share/groff_font/devX75/NR 10763OLD_FILES+=usr/share/groff_font/devX75/S 10764OLD_FILES+=usr/share/groff_font/devX75/TB 10765OLD_FILES+=usr/share/groff_font/devX75/TBI 10766OLD_FILES+=usr/share/groff_font/devX75/TI 10767OLD_FILES+=usr/share/groff_font/devX75/TR 10768OLD_DIRS+=usr/share/groff_font/devX75 10769OLD_FILES+=usr/share/groff_font/devascii/B 10770OLD_FILES+=usr/share/groff_font/devascii/BI 10771OLD_FILES+=usr/share/groff_font/devascii/CW 10772OLD_FILES+=usr/share/groff_font/devascii/DESC 10773OLD_FILES+=usr/share/groff_font/devascii/I 10774OLD_FILES+=usr/share/groff_font/devascii/L 10775OLD_FILES+=usr/share/groff_font/devascii/R 10776OLD_FILES+=usr/share/groff_font/devascii/S 10777OLD_DIRS+=usr/share/groff_font/devascii 10778OLD_FILES+=usr/share/groff_font/devcp1047/B 10779OLD_FILES+=usr/share/groff_font/devcp1047/BI 10780OLD_FILES+=usr/share/groff_font/devcp1047/CW 10781OLD_FILES+=usr/share/groff_font/devcp1047/DESC 10782OLD_FILES+=usr/share/groff_font/devcp1047/I 10783OLD_FILES+=usr/share/groff_font/devcp1047/L 10784OLD_FILES+=usr/share/groff_font/devcp1047/R 10785OLD_FILES+=usr/share/groff_font/devcp1047/S 10786OLD_DIRS+=usr/share/groff_font/devcp1047 10787OLD_FILES+=usr/share/groff_font/devdvi/CW 10788OLD_FILES+=usr/share/groff_font/devdvi/CWEC 10789OLD_FILES+=usr/share/groff_font/devdvi/CWI 10790OLD_FILES+=usr/share/groff_font/devdvi/CWIEC 10791OLD_FILES+=usr/share/groff_font/devdvi/CWITC 10792OLD_FILES+=usr/share/groff_font/devdvi/CWTC 10793OLD_FILES+=usr/share/groff_font/devdvi/CompileFonts 10794OLD_FILES+=usr/share/groff_font/devdvi/DESC 10795OLD_FILES+=usr/share/groff_font/devdvi/EX 10796OLD_FILES+=usr/share/groff_font/devdvi/HB 10797OLD_FILES+=usr/share/groff_font/devdvi/HBEC 10798OLD_FILES+=usr/share/groff_font/devdvi/HBI 10799OLD_FILES+=usr/share/groff_font/devdvi/HBIEC 10800OLD_FILES+=usr/share/groff_font/devdvi/HBITC 10801OLD_FILES+=usr/share/groff_font/devdvi/HBTC 10802OLD_FILES+=usr/share/groff_font/devdvi/HI 10803OLD_FILES+=usr/share/groff_font/devdvi/HIEC 10804OLD_FILES+=usr/share/groff_font/devdvi/HITC 10805OLD_FILES+=usr/share/groff_font/devdvi/HR 10806OLD_FILES+=usr/share/groff_font/devdvi/HREC 10807OLD_FILES+=usr/share/groff_font/devdvi/HRTC 10808OLD_FILES+=usr/share/groff_font/devdvi/MI 10809OLD_FILES+=usr/share/groff_font/devdvi/Makefile 10810OLD_FILES+=usr/share/groff_font/devdvi/S 10811OLD_FILES+=usr/share/groff_font/devdvi/SA 10812OLD_FILES+=usr/share/groff_font/devdvi/SB 10813OLD_FILES+=usr/share/groff_font/devdvi/SC 10814OLD_FILES+=usr/share/groff_font/devdvi/TB 10815OLD_FILES+=usr/share/groff_font/devdvi/TBEC 10816OLD_FILES+=usr/share/groff_font/devdvi/TBI 10817OLD_FILES+=usr/share/groff_font/devdvi/TBIEC 10818OLD_FILES+=usr/share/groff_font/devdvi/TBITC 10819OLD_FILES+=usr/share/groff_font/devdvi/TBTC 10820OLD_FILES+=usr/share/groff_font/devdvi/TI 10821OLD_FILES+=usr/share/groff_font/devdvi/TIEC 10822OLD_FILES+=usr/share/groff_font/devdvi/TITC 10823OLD_FILES+=usr/share/groff_font/devdvi/TR 10824OLD_FILES+=usr/share/groff_font/devdvi/TREC 10825OLD_FILES+=usr/share/groff_font/devdvi/TRTC 10826OLD_FILES+=usr/share/groff_font/devdvi/ec.map 10827OLD_FILES+=usr/share/groff_font/devdvi/msam.map 10828OLD_FILES+=usr/share/groff_font/devdvi/msbm.map 10829OLD_FILES+=usr/share/groff_font/devdvi/tc.map 10830OLD_FILES+=usr/share/groff_font/devdvi/texb.map 10831OLD_FILES+=usr/share/groff_font/devdvi/texex.map 10832OLD_FILES+=usr/share/groff_font/devdvi/texi.map 10833OLD_FILES+=usr/share/groff_font/devdvi/texmi.map 10834OLD_FILES+=usr/share/groff_font/devdvi/texr.map 10835OLD_FILES+=usr/share/groff_font/devdvi/texsy.map 10836OLD_FILES+=usr/share/groff_font/devdvi/textex.map 10837OLD_FILES+=usr/share/groff_font/devdvi/textt.map 10838OLD_DIRS+=usr/share/groff_font/devdvi 10839OLD_FILES+=usr/share/groff_font/devhtml/B 10840OLD_FILES+=usr/share/groff_font/devhtml/BI 10841OLD_FILES+=usr/share/groff_font/devhtml/CB 10842OLD_FILES+=usr/share/groff_font/devhtml/CBI 10843OLD_FILES+=usr/share/groff_font/devhtml/CI 10844OLD_FILES+=usr/share/groff_font/devhtml/CR 10845OLD_FILES+=usr/share/groff_font/devhtml/DESC 10846OLD_FILES+=usr/share/groff_font/devhtml/I 10847OLD_FILES+=usr/share/groff_font/devhtml/R 10848OLD_FILES+=usr/share/groff_font/devhtml/S 10849OLD_DIRS+=usr/share/groff_font/devhtml 10850OLD_FILES+=usr/share/groff_font/devkoi8-r/B 10851OLD_FILES+=usr/share/groff_font/devkoi8-r/BI 10852OLD_FILES+=usr/share/groff_font/devkoi8-r/CW 10853OLD_FILES+=usr/share/groff_font/devkoi8-r/DESC 10854OLD_FILES+=usr/share/groff_font/devkoi8-r/I 10855OLD_FILES+=usr/share/groff_font/devkoi8-r/L 10856OLD_FILES+=usr/share/groff_font/devkoi8-r/R 10857OLD_FILES+=usr/share/groff_font/devkoi8-r/S 10858OLD_DIRS+=usr/share/groff_font/devkoi8-r 10859OLD_FILES+=usr/share/groff_font/devlatin1/B 10860OLD_FILES+=usr/share/groff_font/devlatin1/BI 10861OLD_FILES+=usr/share/groff_font/devlatin1/CW 10862OLD_FILES+=usr/share/groff_font/devlatin1/DESC 10863OLD_FILES+=usr/share/groff_font/devlatin1/I 10864OLD_FILES+=usr/share/groff_font/devlatin1/L 10865OLD_FILES+=usr/share/groff_font/devlatin1/R 10866OLD_FILES+=usr/share/groff_font/devlatin1/S 10867OLD_DIRS+=usr/share/groff_font/devlatin1 10868OLD_FILES+=usr/share/groff_font/devlbp/CB 10869OLD_FILES+=usr/share/groff_font/devlbp/CI 10870OLD_FILES+=usr/share/groff_font/devlbp/CR 10871OLD_FILES+=usr/share/groff_font/devlbp/DESC 10872OLD_FILES+=usr/share/groff_font/devlbp/EB 10873OLD_FILES+=usr/share/groff_font/devlbp/EI 10874OLD_FILES+=usr/share/groff_font/devlbp/ER 10875OLD_FILES+=usr/share/groff_font/devlbp/HB 10876OLD_FILES+=usr/share/groff_font/devlbp/HBI 10877OLD_FILES+=usr/share/groff_font/devlbp/HI 10878OLD_FILES+=usr/share/groff_font/devlbp/HNB 10879OLD_FILES+=usr/share/groff_font/devlbp/HNBI 10880OLD_FILES+=usr/share/groff_font/devlbp/HNI 10881OLD_FILES+=usr/share/groff_font/devlbp/HNR 10882OLD_FILES+=usr/share/groff_font/devlbp/HR 10883OLD_FILES+=usr/share/groff_font/devlbp/TB 10884OLD_FILES+=usr/share/groff_font/devlbp/TBI 10885OLD_FILES+=usr/share/groff_font/devlbp/TI 10886OLD_FILES+=usr/share/groff_font/devlbp/TR 10887OLD_DIRS+=usr/share/groff_font/devlbp 10888OLD_FILES+=usr/share/groff_font/devlj4/AB 10889OLD_FILES+=usr/share/groff_font/devlj4/ABI 10890OLD_FILES+=usr/share/groff_font/devlj4/AI 10891OLD_FILES+=usr/share/groff_font/devlj4/ALBB 10892OLD_FILES+=usr/share/groff_font/devlj4/ALBR 10893OLD_FILES+=usr/share/groff_font/devlj4/AOB 10894OLD_FILES+=usr/share/groff_font/devlj4/AOI 10895OLD_FILES+=usr/share/groff_font/devlj4/AOR 10896OLD_FILES+=usr/share/groff_font/devlj4/AR 10897OLD_FILES+=usr/share/groff_font/devlj4/CB 10898OLD_FILES+=usr/share/groff_font/devlj4/CBI 10899OLD_FILES+=usr/share/groff_font/devlj4/CI 10900OLD_FILES+=usr/share/groff_font/devlj4/CLARENDON 10901OLD_FILES+=usr/share/groff_font/devlj4/CORONET 10902OLD_FILES+=usr/share/groff_font/devlj4/CR 10903OLD_FILES+=usr/share/groff_font/devlj4/DESC 10904OLD_FILES+=usr/share/groff_font/devlj4/GB 10905OLD_FILES+=usr/share/groff_font/devlj4/GBI 10906OLD_FILES+=usr/share/groff_font/devlj4/GI 10907OLD_FILES+=usr/share/groff_font/devlj4/GR 10908OLD_FILES+=usr/share/groff_font/devlj4/LGB 10909OLD_FILES+=usr/share/groff_font/devlj4/LGI 10910OLD_FILES+=usr/share/groff_font/devlj4/LGR 10911OLD_FILES+=usr/share/groff_font/devlj4/MARIGOLD 10912OLD_FILES+=usr/share/groff_font/devlj4/OB 10913OLD_FILES+=usr/share/groff_font/devlj4/OBI 10914OLD_FILES+=usr/share/groff_font/devlj4/OI 10915OLD_FILES+=usr/share/groff_font/devlj4/OR 10916OLD_FILES+=usr/share/groff_font/devlj4/S 10917OLD_FILES+=usr/share/groff_font/devlj4/SYMBOL 10918OLD_FILES+=usr/share/groff_font/devlj4/TB 10919OLD_FILES+=usr/share/groff_font/devlj4/TBI 10920OLD_FILES+=usr/share/groff_font/devlj4/TI 10921OLD_FILES+=usr/share/groff_font/devlj4/TNRB 10922OLD_FILES+=usr/share/groff_font/devlj4/TNRBI 10923OLD_FILES+=usr/share/groff_font/devlj4/TNRI 10924OLD_FILES+=usr/share/groff_font/devlj4/TNRR 10925OLD_FILES+=usr/share/groff_font/devlj4/TR 10926OLD_FILES+=usr/share/groff_font/devlj4/UB 10927OLD_FILES+=usr/share/groff_font/devlj4/UBI 10928OLD_FILES+=usr/share/groff_font/devlj4/UCB 10929OLD_FILES+=usr/share/groff_font/devlj4/UCBI 10930OLD_FILES+=usr/share/groff_font/devlj4/UCI 10931OLD_FILES+=usr/share/groff_font/devlj4/UCR 10932OLD_FILES+=usr/share/groff_font/devlj4/UI 10933OLD_FILES+=usr/share/groff_font/devlj4/UR 10934OLD_FILES+=usr/share/groff_font/devlj4/WINGDINGS 10935OLD_DIRS+=usr/share/groff_font/devlj4 10936OLD_FILES+=usr/share/groff_font/devps/AB 10937OLD_FILES+=usr/share/groff_font/devps/ABI 10938OLD_FILES+=usr/share/groff_font/devps/AI 10939OLD_FILES+=usr/share/groff_font/devps/AR 10940OLD_FILES+=usr/share/groff_font/devps/BMB 10941OLD_FILES+=usr/share/groff_font/devps/BMBI 10942OLD_FILES+=usr/share/groff_font/devps/BMI 10943OLD_FILES+=usr/share/groff_font/devps/BMR 10944OLD_FILES+=usr/share/groff_font/devps/CB 10945OLD_FILES+=usr/share/groff_font/devps/CBI 10946OLD_FILES+=usr/share/groff_font/devps/CI 10947OLD_FILES+=usr/share/groff_font/devps/CR 10948OLD_FILES+=usr/share/groff_font/devps/DESC 10949OLD_FILES+=usr/share/groff_font/devps/EURO 10950OLD_FILES+=usr/share/groff_font/devps/HB 10951OLD_FILES+=usr/share/groff_font/devps/HBI 10952OLD_FILES+=usr/share/groff_font/devps/HI 10953OLD_FILES+=usr/share/groff_font/devps/HNB 10954OLD_FILES+=usr/share/groff_font/devps/HNBI 10955OLD_FILES+=usr/share/groff_font/devps/HNI 10956OLD_FILES+=usr/share/groff_font/devps/HNR 10957OLD_FILES+=usr/share/groff_font/devps/HR 10958OLD_FILES+=usr/share/groff_font/devps/Makefile 10959OLD_FILES+=usr/share/groff_font/devps/NB 10960OLD_FILES+=usr/share/groff_font/devps/NBI 10961OLD_FILES+=usr/share/groff_font/devps/NI 10962OLD_FILES+=usr/share/groff_font/devps/NR 10963OLD_FILES+=usr/share/groff_font/devps/PB 10964OLD_FILES+=usr/share/groff_font/devps/PBI 10965OLD_FILES+=usr/share/groff_font/devps/PI 10966OLD_FILES+=usr/share/groff_font/devps/PR 10967OLD_FILES+=usr/share/groff_font/devps/S 10968OLD_FILES+=usr/share/groff_font/devps/SS 10969OLD_FILES+=usr/share/groff_font/devps/TB 10970OLD_FILES+=usr/share/groff_font/devps/TBI 10971OLD_FILES+=usr/share/groff_font/devps/TI 10972OLD_FILES+=usr/share/groff_font/devps/TR 10973OLD_FILES+=usr/share/groff_font/devps/ZCMI 10974OLD_FILES+=usr/share/groff_font/devps/ZD 10975OLD_FILES+=usr/share/groff_font/devps/ZDR 10976OLD_FILES+=usr/share/groff_font/devps/afmname 10977OLD_FILES+=usr/share/groff_font/devps/dingbats.map 10978OLD_FILES+=usr/share/groff_font/devps/dingbats.rmap 10979OLD_FILES+=usr/share/groff_font/devps/download 10980OLD_FILES+=usr/share/groff_font/devps/freeeuro.pfa 10981OLD_FILES+=usr/share/groff_font/devps/lgreekmap 10982OLD_FILES+=usr/share/groff_font/devps/prologue 10983OLD_FILES+=usr/share/groff_font/devps/symbol.sed 10984OLD_FILES+=usr/share/groff_font/devps/symbolchars 10985OLD_FILES+=usr/share/groff_font/devps/symbolsl.afm 10986OLD_FILES+=usr/share/groff_font/devps/symbolsl.pfa 10987OLD_FILES+=usr/share/groff_font/devps/text.enc 10988OLD_FILES+=usr/share/groff_font/devps/textmap 10989OLD_FILES+=usr/share/groff_font/devps/zapfdr.pfa 10990OLD_DIRS+=usr/share/groff_font/devps 10991OLD_FILES+=usr/share/groff_font/devutf8/B 10992OLD_FILES+=usr/share/groff_font/devutf8/BI 10993OLD_FILES+=usr/share/groff_font/devutf8/CW 10994OLD_FILES+=usr/share/groff_font/devutf8/DESC 10995OLD_FILES+=usr/share/groff_font/devutf8/I 10996OLD_FILES+=usr/share/groff_font/devutf8/L 10997OLD_FILES+=usr/share/groff_font/devutf8/R 10998OLD_FILES+=usr/share/groff_font/devutf8/S 10999OLD_DIRS+=usr/share/groff_font/devutf8 11000OLD_DIRS+=usr/share/groff_font 11001OLD_FILES+=usr/share/man/man1/addftinfo.1.gz 11002OLD_FILES+=usr/share/man/man1/afmtodit.1.gz 11003OLD_FILES+=usr/share/man/man1/checknr.1.gz 11004OLD_FILES+=usr/share/man/man1/colcrt.1.gz 11005OLD_FILES+=usr/share/man/man1/eqn.1.gz 11006OLD_FILES+=usr/share/man/man1/grn.1.gz 11007OLD_FILES+=usr/share/man/man1/grodvi.1.gz 11008OLD_FILES+=usr/share/man/man1/groff.1.gz 11009OLD_FILES+=usr/share/man/man1/grog.1.gz 11010OLD_FILES+=usr/share/man/man1/grolbp.1.gz 11011OLD_FILES+=usr/share/man/man1/grolj4.1.gz 11012OLD_FILES+=usr/share/man/man1/grops.1.gz 11013OLD_FILES+=usr/share/man/man1/grotty.1.gz 11014OLD_FILES+=usr/share/man/man1/hpftodit.1.gz 11015OLD_FILES+=usr/share/man/man1/indxbib.1.gz 11016OLD_FILES+=usr/share/man/man1/lkbib.1.gz 11017OLD_FILES+=usr/share/man/man1/lookbib.1.gz 11018OLD_FILES+=usr/share/man/man1/mmroff.1.gz 11019OLD_FILES+=usr/share/man/man1/neqn.1.gz 11020OLD_FILES+=usr/share/man/man1/nroff.1.gz 11021OLD_FILES+=usr/share/man/man1/pfbtops.1.gz 11022OLD_FILES+=usr/share/man/man1/pic.1.gz 11023OLD_FILES+=usr/share/man/man1/psroff.1.gz 11024OLD_FILES+=usr/share/man/man1/refer.1.gz 11025OLD_FILES+=usr/share/man/man1/tbl.1.gz 11026OLD_FILES+=usr/share/man/man1/tfmtodit.1.gz 11027OLD_FILES+=usr/share/man/man1/troff.1.gz 11028OLD_FILES+=usr/share/man/man1/vgrind.1.gz 11029OLD_FILES+=usr/share/man/man5/groff_font.5.gz 11030OLD_FILES+=usr/share/man/man5/groff_out.5.gz 11031OLD_FILES+=usr/share/man/man5/groff_tmac.5.gz 11032OLD_FILES+=usr/share/man/man5/lj4_font.5.gz 11033OLD_FILES+=usr/share/man/man5/tmac.5.gz 11034OLD_FILES+=usr/share/man/man5/vgrindefs.5.gz 11035OLD_FILES+=usr/share/man/man7/ditroff.7.gz 11036OLD_FILES+=usr/share/man/man7/groff.7.gz 11037OLD_FILES+=usr/share/man/man7/groff_char.7.gz 11038OLD_FILES+=usr/share/man/man7/groff_diff.7.gz 11039OLD_FILES+=usr/share/man/man7/groff_man.7.gz 11040OLD_FILES+=usr/share/man/man7/groff_mdoc.7.gz 11041OLD_FILES+=usr/share/man/man7/groff_me.7.gz 11042OLD_FILES+=usr/share/man/man7/groff_mm.7.gz 11043OLD_FILES+=usr/share/man/man7/groff_mmse.7.gz 11044OLD_FILES+=usr/share/man/man7/groff_ms.7.gz 11045OLD_FILES+=usr/share/man/man7/groff_trace.7.gz 11046OLD_FILES+=usr/share/man/man7/groff_www.7.gz 11047OLD_FILES+=usr/share/man/man7/mdoc.samples.7.gz 11048OLD_FILES+=usr/share/man/man7/me.7.gz 11049OLD_FILES+=usr/share/man/man7/mm.7.gz 11050OLD_FILES+=usr/share/man/man7/mmse.7.gz 11051OLD_FILES+=usr/share/man/man7/ms.7.gz 11052OLD_FILES+=usr/share/man/man7/orig_me.7.gz 11053OLD_FILES+=usr/share/me/acm.me 11054OLD_FILES+=usr/share/me/chars.me 11055OLD_FILES+=usr/share/me/deltext.me 11056OLD_FILES+=usr/share/me/eqn.me 11057OLD_FILES+=usr/share/me/float.me 11058OLD_FILES+=usr/share/me/footnote.me 11059OLD_FILES+=usr/share/me/index.me 11060OLD_FILES+=usr/share/me/letterhead.me 11061OLD_FILES+=usr/share/me/local.me 11062OLD_FILES+=usr/share/me/null.me 11063OLD_FILES+=usr/share/me/refer.me 11064OLD_FILES+=usr/share/me/revisions 11065OLD_FILES+=usr/share/me/sh.me 11066OLD_FILES+=usr/share/me/tbl.me 11067OLD_FILES+=usr/share/me/thesis.me 11068OLD_DIRS+=usr/share/me 11069OLD_FILES+=usr/share/misc/vgrindefs 11070OLD_FILES+=usr/share/misc/vgrindefs.db 11071OLD_FILES+=usr/share/tmac/X.tmac 11072OLD_FILES+=usr/share/tmac/Xps.tmac 11073OLD_FILES+=usr/share/tmac/a4.tmac 11074OLD_FILES+=usr/share/tmac/an-old.tmac 11075OLD_FILES+=usr/share/tmac/an.tmac 11076OLD_FILES+=usr/share/tmac/andoc.tmac 11077OLD_FILES+=usr/share/tmac/composite.tmac 11078OLD_FILES+=usr/share/tmac/cp1047.tmac 11079OLD_FILES+=usr/share/tmac/devtag.tmac 11080OLD_FILES+=usr/share/tmac/doc.tmac 11081OLD_FILES+=usr/share/tmac/dvi.tmac 11082OLD_FILES+=usr/share/tmac/e.tmac 11083OLD_FILES+=usr/share/tmac/ec.tmac 11084OLD_FILES+=usr/share/tmac/eqnrc 11085OLD_FILES+=usr/share/tmac/europs.tmac 11086OLD_FILES+=usr/share/tmac/html-end.tmac 11087OLD_FILES+=usr/share/tmac/html.tmac 11088OLD_FILES+=usr/share/tmac/hyphen.ru 11089OLD_FILES+=usr/share/tmac/hyphen.us 11090OLD_FILES+=usr/share/tmac/hyphenex.us 11091OLD_FILES+=usr/share/tmac/koi8-r.tmac 11092OLD_FILES+=usr/share/tmac/latin1.tmac 11093OLD_FILES+=usr/share/tmac/latin2.tmac 11094OLD_FILES+=usr/share/tmac/latin9.tmac 11095OLD_FILES+=usr/share/tmac/lbp.tmac 11096OLD_FILES+=usr/share/tmac/lj4.tmac 11097OLD_FILES+=usr/share/tmac/m.tmac 11098OLD_FILES+=usr/share/tmac/man.local 11099OLD_FILES+=usr/share/tmac/man.tmac 11100OLD_FILES+=usr/share/tmac/mandoc.tmac 11101OLD_FILES+=usr/share/tmac/mdoc.local 11102OLD_FILES+=usr/share/tmac/mdoc.tmac 11103OLD_FILES+=usr/share/tmac/mdoc/doc-common 11104OLD_FILES+=usr/share/tmac/mdoc/doc-ditroff 11105OLD_FILES+=usr/share/tmac/mdoc/doc-nroff 11106OLD_FILES+=usr/share/tmac/mdoc/doc-syms 11107OLD_FILES+=usr/share/tmac/mdoc/fr.ISO8859-1 11108OLD_FILES+=usr/share/tmac/mdoc/ru.KOI8-R 11109OLD_DIRS+=usr/share/tmac/mdoc 11110OLD_FILES+=usr/share/tmac/me.tmac 11111OLD_FILES+=usr/share/tmac/mm/0.MT 11112OLD_FILES+=usr/share/tmac/mm/4.MT 11113OLD_FILES+=usr/share/tmac/mm/5.MT 11114OLD_FILES+=usr/share/tmac/mm/locale 11115OLD_FILES+=usr/share/tmac/mm/mm.tmac 11116OLD_FILES+=usr/share/tmac/mm/mmse.tmac 11117OLD_FILES+=usr/share/tmac/mm/ms.cov 11118OLD_FILES+=usr/share/tmac/mm/se_locale 11119OLD_FILES+=usr/share/tmac/mm/se_ms.cov 11120OLD_DIRS+=usr/share/tmac/mm 11121OLD_FILES+=usr/share/tmac/ms.tmac 11122OLD_FILES+=usr/share/tmac/mse.tmac 11123OLD_FILES+=usr/share/tmac/papersize.tmac 11124OLD_FILES+=usr/share/tmac/pic.tmac 11125OLD_FILES+=usr/share/tmac/ps.tmac 11126OLD_FILES+=usr/share/tmac/psatk.tmac 11127OLD_FILES+=usr/share/tmac/psold.tmac 11128OLD_FILES+=usr/share/tmac/pspic.tmac 11129OLD_FILES+=usr/share/tmac/s.tmac 11130OLD_FILES+=usr/share/tmac/safer.tmac 11131OLD_FILES+=usr/share/tmac/tmac.orig_me 11132OLD_FILES+=usr/share/tmac/tmac.vgrind 11133OLD_FILES+=usr/share/tmac/trace.tmac 11134OLD_FILES+=usr/share/tmac/troffrc 11135OLD_FILES+=usr/share/tmac/troffrc-end 11136OLD_FILES+=usr/share/tmac/tty-char.tmac 11137OLD_FILES+=usr/share/tmac/tty.tmac 11138OLD_FILES+=usr/share/tmac/unicode.tmac 11139OLD_FILES+=usr/share/tmac/www.tmac 11140OLD_DIRS+=usr/share/tmac 11141# 20170607: remove incorrect atf_check(1) manpage link 11142OLD_FILES+=usr/share/man/man1/atf_check.1.gz 11143# 20170601: remove stale manpage 11144OLD_FILES+=usr/share/man/man2/cap_rights_get.2.gz 11145# 20170601: old libifconfig and libifc 11146OLD_FILES+=usr/lib/libifc.a 11147OLD_FILES+=usr/lib/libifc_p.a 11148OLD_FILES+=usr/lib/libifconfig.a 11149OLD_FILES+=usr/lib/libifconfig_p.a 11150# 20170529: mount.conf(8) -> mount.conf(5) 11151OLD_FILES+=usr/share/man/man8/mount.conf.8.gz 11152# 20170525: remove misleading template 11153OLD_FILES+=usr/share/misc/man.template 11154# 20170525: disconnect the roff docs from the build 11155OLD_FILES+=usr/share/doc/papers/beyond43.ascii.gz 11156OLD_FILES+=usr/share/doc/papers/bio.ascii.gz 11157OLD_FILES+=usr/share/doc/papers/contents.ascii.gz 11158OLD_FILES+=usr/share/doc/papers/devfs.ascii.gz 11159OLD_FILES+=usr/share/doc/papers/diskperf.ascii.gz 11160OLD_FILES+=usr/share/doc/papers/fsinterface.ascii.gz 11161OLD_FILES+=usr/share/doc/papers/hwpmc.ascii.gz 11162OLD_FILES+=usr/share/doc/papers/jail.ascii.gz 11163OLD_FILES+=usr/share/doc/papers/kernmalloc.ascii.gz 11164OLD_FILES+=usr/share/doc/papers/kerntune.ascii.gz 11165OLD_FILES+=usr/share/doc/papers/malloc.ascii.gz 11166OLD_FILES+=usr/share/doc/papers/newvm.ascii.gz 11167OLD_FILES+=usr/share/doc/papers/releng.ascii.gz 11168OLD_FILES+=usr/share/doc/papers/sysperf.ascii.gz 11169OLD_FILES+=usr/share/doc/papers/timecounter.ascii.gz 11170OLD_DIRS+=usr/share/doc/papers 11171OLD_FILES+=usr/share/doc/psd/01.cacm/paper.ascii.gz 11172OLD_DIRS+=usr/share/doc/psd/01.cacm 11173OLD_FILES+=usr/share/doc/psd/02.implement/paper.ascii.gz 11174OLD_DIRS+=usr/share/doc/psd/02.implement 11175OLD_FILES+=usr/share/doc/psd/03.iosys/paper.ascii.gz 11176OLD_DIRS+=usr/share/doc/psd/03.iosys 11177OLD_FILES+=usr/share/doc/psd/04.uprog/paper.ascii.gz 11178OLD_DIRS+=usr/share/doc/psd/04.uprog 11179OLD_FILES+=usr/share/doc/psd/05.sysman/paper.ascii.gz 11180OLD_DIRS+=usr/share/doc/psd/05.sysman 11181OLD_FILES+=usr/share/doc/psd/06.Clang/paper.ascii.gz 11182OLD_DIRS+=usr/share/doc/psd/06.Clang 11183OLD_FILES+=usr/share/doc/psd/12.make/paper.ascii.gz 11184OLD_DIRS+=usr/share/doc/psd/12.make 11185OLD_FILES+=usr/share/doc/psd/13.rcs/paper.ascii.gz 11186OLD_DIRS+=usr/share/doc/psd/13.rcs 11187OLD_FILES+=usr/share/doc/psd/13.rcs/rcs_func.ascii.gz 11188OLD_DIRS+=usr/share/doc/psd/13.rcs 11189OLD_FILES+=usr/share/doc/psd/15.yacc/paper.ascii.gz 11190OLD_DIRS+=usr/share/doc/psd/15.yacc 11191OLD_FILES+=usr/share/doc/psd/16.lex/paper.ascii.gz 11192OLD_DIRS+=usr/share/doc/psd/16.lex 11193OLD_FILES+=usr/share/doc/psd/17.m4/paper.ascii.gz 11194OLD_DIRS+=usr/share/doc/psd/17.m4 11195OLD_FILES+=usr/share/doc/psd/18.gprof/paper.ascii.gz 11196OLD_DIRS+=usr/share/doc/psd/18.gprof 11197OLD_FILES+=usr/share/doc/psd/20.ipctut/paper.ascii.gz 11198OLD_DIRS+=usr/share/doc/psd/20.ipctut 11199OLD_FILES+=usr/share/doc/psd/21.ipc/paper.ascii.gz 11200OLD_DIRS+=usr/share/doc/psd/21.ipc 11201OLD_FILES+=usr/share/doc/psd/22.rpcgen/paper.ascii.gz 11202OLD_DIRS+=usr/share/doc/psd/22.rpcgen 11203OLD_FILES+=usr/share/doc/psd/23.rpc/paper.ascii.gz 11204OLD_DIRS+=usr/share/doc/psd/23.rpc 11205OLD_FILES+=usr/share/doc/psd/24.xdr/paper.ascii.gz 11206OLD_DIRS+=usr/share/doc/psd/24.xdr 11207OLD_FILES+=usr/share/doc/psd/25.xdrrfc/paper.ascii.gz 11208OLD_DIRS+=usr/share/doc/psd/25.xdrrfc 11209OLD_FILES+=usr/share/doc/psd/26.rpcrfc/paper.ascii.gz 11210OLD_DIRS+=usr/share/doc/psd/26.rpcrfc 11211OLD_FILES+=usr/share/doc/psd/27.nfsrfc/paper.ascii.gz 11212OLD_DIRS+=usr/share/doc/psd/27.nfsrfc 11213OLD_FILES+=usr/share/doc/psd/Title.ascii.gz 11214OLD_FILES+=usr/share/doc/psd/contents.ascii.gz 11215OLD_DIRS+=usr/share/doc/psd/ 11216OLD_FILES+=usr/share/doc/smm/01.setup/paper.ascii.gz 11217OLD_DIRS+=usr/share/doc/smm/01.setup 11218OLD_FILES+=usr/share/doc/smm/02.config/paper.ascii.gz 11219OLD_DIRS+=usr/share/doc/smm/02.config 11220OLD_FILES+=usr/share/doc/smm/03.fsck/paper.ascii.gz 11221OLD_DIRS+=usr/share/doc/smm/03.fsck 11222OLD_FILES+=usr/share/doc/smm/04.quotas/paper.ascii.gz 11223OLD_DIRS+=usr/share/doc/smm/04.quotas 11224OLD_FILES+=usr/share/doc/smm/05.fastfs/paper.ascii.gz 11225OLD_DIRS+=usr/share/doc/smm/05.fastfs 11226OLD_FILES+=usr/share/doc/smm/06.nfs/paper.ascii.gz 11227OLD_DIRS+=usr/share/doc/smm/06.nfs 11228OLD_FILES+=usr/share/doc/smm/07.lpd/paper.ascii.gz 11229OLD_DIRS+=usr/share/doc/smm/07.lpd 11230OLD_FILES+=usr/share/doc/smm/08.sendmailop/paper.ascii.gz 11231OLD_DIRS+=usr/share/doc/smm/08.sendmailop 11232OLD_FILES+=usr/share/doc/smm/11.timedop/paper.ascii.gz 11233OLD_DIRS+=usr/share/doc/smm/11.timedop 11234OLD_FILES+=usr/share/doc/smm/12.timed/paper.ascii.gz 11235OLD_DIRS+=usr/share/doc/smm/12.timed 11236OLD_FILES+=usr/share/doc/smm/18.net/paper.ascii.gz 11237OLD_DIRS+=usr/share/doc/smm/18.net 11238OLD_FILES+=usr/share/doc/smm/Title.ascii.gz 11239OLD_FILES+=usr/share/doc/smm/contents.ascii.gz 11240OLD_DIRS+=usr/share/doc/smm 11241OLD_FILES+=usr/share/doc/usd/04.csh/paper.ascii.gz 11242OLD_DIRS+=usr/share/doc/usd/04.csh 11243OLD_FILES+=usr/share/doc/usd/05.dc/paper.ascii.gz 11244OLD_DIRS+=usr/share/doc/usd/05.dc 11245OLD_FILES+=usr/share/doc/usd/06.bc/paper.ascii.gz 11246OLD_DIRS+=usr/share/doc/usd/06.bc 11247OLD_FILES+=usr/share/doc/usd/07.mail/paper.ascii.gz 11248OLD_DIRS+=usr/share/doc/usd/07.mail 11249OLD_FILES+=usr/share/doc/usd/10.exref/paper.ascii.gz 11250OLD_FILES+=usr/share/doc/usd/10.exref/summary.ascii.gz 11251OLD_DIRS+=usr/share/doc/usd/10.exref 11252OLD_FILES+=usr/share/doc/usd/11.edit/paper.ascii.gz 11253OLD_DIRS+=usr/share/doc/usd/11.edit 11254OLD_FILES+=usr/share/doc/usd/12.vi/paper.ascii.gz 11255OLD_FILES+=usr/share/doc/usd/12.vi/summary.ascii.gz 11256OLD_FILES+=usr/share/doc/usd/12.vi/viapwh.ascii.gz 11257OLD_DIRS+=usr/share/doc/usd/12.vi 11258OLD_FILES+=usr/share/doc/usd/13.viref/paper.ascii.gz 11259OLD_DIRS+=usr/share/doc/usd/13.viref 11260OLD_FILES+=usr/share/doc/usd/18.msdiffs/paper.ascii.gz 11261OLD_DIRS+=usr/share/doc/usd/18.msdiffs 11262OLD_FILES+=usr/share/doc/usd/19.memacros/paper.ascii.gz 11263OLD_DIRS+=usr/share/doc/usd/19.memacros 11264OLD_FILES+=usr/share/doc/usd/20.meref/paper.ascii.gz 11265OLD_DIRS+=usr/share/doc/usd/20.meref 11266OLD_FILES+=usr/share/doc/usd/21.troff/paper.ascii.gz 11267OLD_DIRS+=usr/share/doc/usd/21.troff 11268OLD_FILES+=usr/share/doc/usd/22.trofftut/paper.ascii.gz 11269OLD_DIRS+=usr/share/doc/usd/22.trofftut 11270OLD_FILES+=usr/share/doc/usd/Title.ascii.gz 11271OLD_FILES+=usr/share/doc/usd/contents.ascii.gz 11272OLD_DIRS+=usr/share/doc/usd 11273# 20170523: 64-bit inode support, library version bumps 11274OLD_LIBS+=lib/libzfs.so.2 11275OLD_LIBS+=usr/lib/libarchive.so.6 11276OLD_LIBS+=usr/lib/libmilter.so.5 11277# 20170427: NATM configuration support removed 11278OLD_FILES+=etc/rc.d/atm1 11279OLD_FILES+=etc/rc.d/atm2 11280OLD_FILES+=etc/rc.d/atm3 11281OLD_FILES+=usr/share/man/man8/rc.atm.8.gz 11282# 20170426: UMA_ZONE_REFCNT removed 11283OLD_FILES+=usr/share/man/man9/uma_find_refcnt.9.gz 11284# 20170424: NATM support removed 11285OLD_FILES+=rescue/atmconfig 11286OLD_FILES+=sbin/atmconfig 11287OLD_FILES+=usr/include/bsnmp/snmp_atm.h 11288OLD_FILES+=usr/include/dev/utopia/idtphy.h 11289OLD_FILES+=usr/include/dev/utopia/suni.h 11290OLD_FILES+=usr/include/dev/utopia/utopia.h 11291OLD_FILES+=usr/include/dev/utopia/utopia_priv.h 11292OLD_DIRS+=usr/include/dev/utopia 11293OLD_FILES+=usr/include/net/if_atm.h 11294OLD_FILES+=usr/include/netgraph/atm/ng_atm.h 11295OLD_FILES+=usr/include/netinet/if_atm.h 11296OLD_FILES+=usr/include/netnatm/natm.h 11297OLD_FILES+=usr/lib/snmp_atm.so 11298OLD_LIBS+=usr/lib/snmp_atm.so.6 11299OLD_FILES+=usr/share/doc/atm/atmconfig.help 11300OLD_FILES+=usr/share/doc/atm/atmconfig_device.help 11301OLD_DIRS+=usr/share/doc/atm 11302OLD_FILES+=usr/share/man/man3/snmp_atm.3.gz 11303OLD_FILES+=usr/share/man/man4/en.4.gz 11304OLD_FILES+=usr/share/man/man4/fatm.4.gz 11305OLD_FILES+=usr/share/man/man4/hatm.4.gz 11306OLD_FILES+=usr/share/man/man4/if_en.4.gz 11307OLD_FILES+=usr/share/man/man4/if_fatm.4.gz 11308OLD_FILES+=usr/share/man/man4/if_hatm.4.gz 11309OLD_FILES+=usr/share/man/man4/if_patm.4.gz 11310OLD_FILES+=usr/share/man/man4/natm.4.gz 11311OLD_FILES+=usr/share/man/man4/natmip.4.gz 11312OLD_FILES+=usr/share/man/man4/ng_atm.4.gz 11313OLD_FILES+=usr/share/man/man4/patm.4.gz 11314OLD_FILES+=usr/share/man/man4/utopia.4.gz 11315OLD_FILES+=usr/share/man/man8/atmconfig.8.gz 11316OLD_FILES+=usr/share/man/man9/utopia.9.gz 11317OLD_FILES+=usr/share/snmp/defs/atm_freebsd.def 11318OLD_FILES+=usr/share/snmp/defs/atm_tree.def 11319OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-ATM-FREEBSD-MIB.txt 11320OLD_FILES+=usr/share/snmp/mibs/BEGEMOT-ATM.txt 11321# 20170420: remove GNU diff 11322OLD_FILES+=usr/share/man/man7/diff.7.gz 11323# 20170322: rename <x> to <x>_test to match the FreeBSD test suite name scheme 11324OLD_FILES+=usr/tests/usr.bin/col/col 11325OLD_FILES+=usr/tests/usr.bin/diff/diff 11326OLD_FILES+=usr/tests/usr.bin/ident/ident 11327OLD_FILES+=usr/tests/usr.bin/mkimg/mkimg 11328OLD_FILES+=usr/tests/usr.bin/sdiff/sdiff 11329OLD_FILES+=usr/tests/usr.bin/soelim/soelim 11330OLD_FILES+=usr/tests/usr.sbin/pw/pw_config 11331OLD_FILES+=usr/tests/usr.sbin/pw/pw_etcdir 11332OLD_FILES+=usr/tests/usr.sbin/pw/pw_groupadd 11333OLD_FILES+=usr/tests/usr.sbin/pw/pw_groupdel 11334OLD_FILES+=usr/tests/usr.sbin/pw/pw_groupmod 11335OLD_FILES+=usr/tests/usr.sbin/pw/pw_lock 11336OLD_FILES+=usr/tests/usr.sbin/pw/pw_useradd 11337OLD_FILES+=usr/tests/usr.sbin/pw/pw_userdel 11338OLD_FILES+=usr/tests/usr.sbin/pw/pw_usermod 11339OLD_FILES+=usr/tests/usr.sbin/pw/pw_usernext 11340# 20170319: io_test requires zh_TW.Big5 locale 11341OLD_FILES+=usr/tests/lib/libc/locale/io_test 11342# 20170319: remove nls for non supported Big5* locales 11343OLD_DIRS+=usr/share/nls/zh_HK.Big5HKSCS 11344OLD_DIRS+=usr/share/nls/zh_TW.Big5 11345# 20170313: move .../sys/geom/eli/... to .../sys/geom/class/eli/... 11346OLD_FILES+=usr/tests/sys/geom/eli/pbkdf2/pbkdf2 11347OLD_FILES+=usr/tests/sys/geom/eli/pbkdf2/Kyuafile 11348OLD_FILES+=usr/tests/sys/geom/eli/Kyuafile 11349OLD_DIRS+=usr/tests/sys/geom/eli/pbkdf2 11350OLD_DIRS+=usr/tests/sys/geom/eli 11351# 20170313: sbin/ipftest and ipresend temporarily disconnected 11352OLD_FILES+=sbin/ipftest 11353OLD_FILES+=sbin/ipresend 11354OLD_FILES+=usr/share/man/man1/ipftest.1.gz 11355OLD_FILES+=usr/share/man/man1/ipresend.1.gz 11356# 20170311: Remove WITHOUT_MANDOCDB option 11357OLD_FILES+=usr/share/man/man1/makewhatis.1.gz 11358# 20170308: rename some tests 11359OLD_FILES+=usr/tests/bin/pwait/pwait 11360OLD_FILES+=usr/tests/usr.bin/timeout/timeout 11361# 20170307: remove pcap-int.h 11362OLD_FILES+=usr/include/pcap-int.h 11363# 20170302: new libc++ import which bumps version from 3.9.1 to 4.0.0 11364OLD_FILES+=usr/include/c++/v1/__undef___deallocate 11365OLD_FILES+=usr/include/c++/v1/tr1/__undef___deallocate 11366# 20170302: new clang import which bumps version from 3.9.1 to 4.0.0 11367OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/allocator_interface.h 11368OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/asan_interface.h 11369OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/common_interface_defs.h 11370OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/coverage_interface.h 11371OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/dfsan_interface.h 11372OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/esan_interface.h 11373OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/linux_syscall_hooks.h 11374OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/lsan_interface.h 11375OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/msan_interface.h 11376OLD_FILES+=usr/lib/clang/3.9.1/include/sanitizer/tsan_interface_atomic.h 11377OLD_DIRS+=usr/lib/clang/3.9.1/include/sanitizer 11378OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_cmath.h 11379OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_intrinsics.h 11380OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_math_forward_declares.h 11381OLD_FILES+=usr/lib/clang/3.9.1/include/__clang_cuda_runtime_wrapper.h 11382OLD_FILES+=usr/lib/clang/3.9.1/include/__stddef_max_align_t.h 11383OLD_FILES+=usr/lib/clang/3.9.1/include/__wmmintrin_aes.h 11384OLD_FILES+=usr/lib/clang/3.9.1/include/__wmmintrin_pclmul.h 11385OLD_FILES+=usr/lib/clang/3.9.1/include/adxintrin.h 11386OLD_FILES+=usr/lib/clang/3.9.1/include/altivec.h 11387OLD_FILES+=usr/lib/clang/3.9.1/include/ammintrin.h 11388OLD_FILES+=usr/lib/clang/3.9.1/include/arm_acle.h 11389OLD_FILES+=usr/lib/clang/3.9.1/include/arm_neon.h 11390OLD_FILES+=usr/lib/clang/3.9.1/include/avx2intrin.h 11391OLD_FILES+=usr/lib/clang/3.9.1/include/avx512bwintrin.h 11392OLD_FILES+=usr/lib/clang/3.9.1/include/avx512cdintrin.h 11393OLD_FILES+=usr/lib/clang/3.9.1/include/avx512dqintrin.h 11394OLD_FILES+=usr/lib/clang/3.9.1/include/avx512erintrin.h 11395OLD_FILES+=usr/lib/clang/3.9.1/include/avx512fintrin.h 11396OLD_FILES+=usr/lib/clang/3.9.1/include/avx512ifmaintrin.h 11397OLD_FILES+=usr/lib/clang/3.9.1/include/avx512ifmavlintrin.h 11398OLD_FILES+=usr/lib/clang/3.9.1/include/avx512pfintrin.h 11399OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vbmiintrin.h 11400OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vbmivlintrin.h 11401OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vlbwintrin.h 11402OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vlcdintrin.h 11403OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vldqintrin.h 11404OLD_FILES+=usr/lib/clang/3.9.1/include/avx512vlintrin.h 11405OLD_FILES+=usr/lib/clang/3.9.1/include/avxintrin.h 11406OLD_FILES+=usr/lib/clang/3.9.1/include/bmi2intrin.h 11407OLD_FILES+=usr/lib/clang/3.9.1/include/bmiintrin.h 11408OLD_FILES+=usr/lib/clang/3.9.1/include/clflushoptintrin.h 11409OLD_FILES+=usr/lib/clang/3.9.1/include/cpuid.h 11410OLD_FILES+=usr/lib/clang/3.9.1/include/cuda_builtin_vars.h 11411OLD_FILES+=usr/lib/clang/3.9.1/include/emmintrin.h 11412OLD_FILES+=usr/lib/clang/3.9.1/include/f16cintrin.h 11413OLD_FILES+=usr/lib/clang/3.9.1/include/fma4intrin.h 11414OLD_FILES+=usr/lib/clang/3.9.1/include/fmaintrin.h 11415OLD_FILES+=usr/lib/clang/3.9.1/include/fxsrintrin.h 11416OLD_FILES+=usr/lib/clang/3.9.1/include/htmintrin.h 11417OLD_FILES+=usr/lib/clang/3.9.1/include/htmxlintrin.h 11418OLD_FILES+=usr/lib/clang/3.9.1/include/ia32intrin.h 11419OLD_FILES+=usr/lib/clang/3.9.1/include/immintrin.h 11420OLD_FILES+=usr/lib/clang/3.9.1/include/lzcntintrin.h 11421OLD_FILES+=usr/lib/clang/3.9.1/include/mm3dnow.h 11422OLD_FILES+=usr/lib/clang/3.9.1/include/mm_malloc.h 11423OLD_FILES+=usr/lib/clang/3.9.1/include/mmintrin.h 11424OLD_FILES+=usr/lib/clang/3.9.1/include/module.modulemap 11425OLD_FILES+=usr/lib/clang/3.9.1/include/msa.h 11426OLD_FILES+=usr/lib/clang/3.9.1/include/mwaitxintrin.h 11427OLD_FILES+=usr/lib/clang/3.9.1/include/nmmintrin.h 11428OLD_FILES+=usr/lib/clang/3.9.1/include/opencl-c.h 11429OLD_FILES+=usr/lib/clang/3.9.1/include/pkuintrin.h 11430OLD_FILES+=usr/lib/clang/3.9.1/include/pmmintrin.h 11431OLD_FILES+=usr/lib/clang/3.9.1/include/popcntintrin.h 11432OLD_FILES+=usr/lib/clang/3.9.1/include/prfchwintrin.h 11433OLD_FILES+=usr/lib/clang/3.9.1/include/rdseedintrin.h 11434OLD_FILES+=usr/lib/clang/3.9.1/include/rtmintrin.h 11435OLD_FILES+=usr/lib/clang/3.9.1/include/s390intrin.h 11436OLD_FILES+=usr/lib/clang/3.9.1/include/shaintrin.h 11437OLD_FILES+=usr/lib/clang/3.9.1/include/smmintrin.h 11438OLD_FILES+=usr/lib/clang/3.9.1/include/tbmintrin.h 11439OLD_FILES+=usr/lib/clang/3.9.1/include/tmmintrin.h 11440OLD_FILES+=usr/lib/clang/3.9.1/include/vadefs.h 11441OLD_FILES+=usr/lib/clang/3.9.1/include/vecintrin.h 11442OLD_FILES+=usr/lib/clang/3.9.1/include/wmmintrin.h 11443OLD_FILES+=usr/lib/clang/3.9.1/include/x86intrin.h 11444OLD_FILES+=usr/lib/clang/3.9.1/include/xmmintrin.h 11445OLD_FILES+=usr/lib/clang/3.9.1/include/xopintrin.h 11446OLD_FILES+=usr/lib/clang/3.9.1/include/xsavecintrin.h 11447OLD_FILES+=usr/lib/clang/3.9.1/include/xsaveintrin.h 11448OLD_FILES+=usr/lib/clang/3.9.1/include/xsaveoptintrin.h 11449OLD_FILES+=usr/lib/clang/3.9.1/include/xsavesintrin.h 11450OLD_FILES+=usr/lib/clang/3.9.1/include/xtestintrin.h 11451OLD_DIRS+=usr/lib/clang/3.9.1/include 11452OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-i386.a 11453OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-i386.so 11454OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 11455OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 11456OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-x86_64.a 11457OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan-x86_64.so 11458OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 11459OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 11460OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.profile-arm.a 11461OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.profile-i386.a 11462OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.profile-x86_64.a 11463OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.safestack-i386.a 11464OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.safestack-x86_64.a 11465OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats-i386.a 11466OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats-x86_64.a 11467OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats_client-i386.a 11468OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.stats_client-x86_64.a 11469OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 11470OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 11471OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 11472OLD_FILES+=usr/lib/clang/3.9.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 11473OLD_DIRS+=usr/lib/clang/3.9.1/lib/freebsd 11474OLD_DIRS+=usr/lib/clang/3.9.1/lib 11475OLD_DIRS+=usr/lib/clang/3.9.1 11476# 20170226: SVR4 compatibility removed 11477.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 11478OLD_FILES+=usr/share/man/man4/streams.4 11479OLD_FILES+=usr/share/man/man4/svr4.4 11480.endif 11481# 20170219: OpenPAM RADULA upgrade removed the libpam tests 11482OLD_FILES+=usr/tests/lib/libpam/Kyuafile 11483OLD_FILES+=usr/tests/lib/libpam/t_openpam_ctype 11484OLD_FILES+=usr/tests/lib/libpam/t_openpam_readlinev 11485OLD_FILES+=usr/tests/lib/libpam/t_openpam_readword 11486OLD_DIRS+=usr/test/lib/libpam 11487# 20170216: remove ahb(4) 11488OLD_FILES+=usr/share/man/man4/ahb.4.gz 11489# 20170216: remove fea(4) 11490OLD_FILES+=usr/share/man/man4/fea.4.gz 11491# 20170206: remove bdes(1) 11492OLD_FILES+=usr/bin/bdes 11493OLD_FILES+=usr/share/man/man1/bdes.1.gz 11494# 20170206: merged projects/ipsec 11495OLD_FILES+=usr/include/netinet/ip_ipsec.h 11496OLD_FILES+=usr/include/netinet6/ip6_ipsec.h 11497# 20170128: remove pc98 support 11498OLD_FILES+=usr/include/dev/ic/i8251.h 11499OLD_FILES+=usr/include/dev/ic/i8255.h 11500OLD_FILES+=usr/include/dev/ic/rsa.h 11501OLD_FILES+=usr/include/dev/ic/wd33c93reg.h 11502OLD_FILES+=usr/include/sys/disk/pc98.h 11503OLD_FILES+=usr/include/sys/diskpc98.h 11504OLD_FILES+=usr/share/man/man4/i386/ct.4.gz 11505OLD_FILES+=usr/share/man/man4/i386/snc.4.gz 11506OLD_FILES+=usr/share/syscons/keymaps/jp.pc98.iso.kbd 11507OLD_FILES+=usr/share/syscons/keymaps/jp.pc98.kbd 11508OLD_FILES+=usr/share/vt/keymaps/jp.pc98.iso.kbd 11509OLD_FILES+=usr/share/vt/keymaps/jp.pc98.kbd 11510# 20170110: Four files from ggate tests consolidated into one 11511OLD_FILES+=usr/tests/sys/geom/class/gate/1_test 11512OLD_FILES+=usr/tests/sys/geom/class/gate/2_test 11513OLD_FILES+=usr/tests/sys/geom/class/gate/3_test 11514OLD_FILES+=usr/tests/sys/geom/class/gate/conf.sh 11515# 20170103: libbsnmptools.so made into an INTERNALLIB 11516OLD_FILES+=usr/lib/libbsnmptools.a 11517OLD_FILES+=usr/lib/libbsnmptools_p.a 11518OLD_LIBS+=usr/lib/libbsnmptools.so.0 11519OLD_FILES+=usr/lib/libbsnmptools.so 11520# 20170102: sysdecode_getfsstat_flags() renamed to sysdecode_getfsstat_mode() 11521OLD_FILES+=usr/share/man/man3/sysdecode_getfsstat_flags.3.gz 11522# 20161230: libarchive ACL pax test renamed to test_acl_pax_posix1e.tar.uu 11523OLD_FILES+=usr/tests/lib/libarchive/test_acl_pax.tar.uu 11524# 20161229: Three files from gnop tests consolidated into one 11525OLD_FILES+=usr/tests/sys/geom/class/nop/1_test 11526OLD_FILES+=usr/tests/sys/geom/class/nop/2_test 11527OLD_FILES+=usr/tests/sys/geom/class/nop/conf.sh 11528# 20161217: new clang import which bumps version from 3.9.0 to 3.9.1 11529OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/allocator_interface.h 11530OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/asan_interface.h 11531OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/common_interface_defs.h 11532OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/coverage_interface.h 11533OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/dfsan_interface.h 11534OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/esan_interface.h 11535OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/linux_syscall_hooks.h 11536OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/lsan_interface.h 11537OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/msan_interface.h 11538OLD_FILES+=usr/lib/clang/3.9.0/include/sanitizer/tsan_interface_atomic.h 11539OLD_DIRS+=usr/lib/clang/3.9.0/include/sanitizer 11540OLD_FILES+=usr/lib/clang/3.9.0/include/__clang_cuda_cmath.h 11541OLD_FILES+=usr/lib/clang/3.9.0/include/__clang_cuda_intrinsics.h 11542OLD_FILES+=usr/lib/clang/3.9.0/include/__clang_cuda_math_forward_declares.h 11543OLD_FILES+=usr/lib/clang/3.9.0/include/__clang_cuda_runtime_wrapper.h 11544OLD_FILES+=usr/lib/clang/3.9.0/include/__stddef_max_align_t.h 11545OLD_FILES+=usr/lib/clang/3.9.0/include/__wmmintrin_aes.h 11546OLD_FILES+=usr/lib/clang/3.9.0/include/__wmmintrin_pclmul.h 11547OLD_FILES+=usr/lib/clang/3.9.0/include/adxintrin.h 11548OLD_FILES+=usr/lib/clang/3.9.0/include/altivec.h 11549OLD_FILES+=usr/lib/clang/3.9.0/include/ammintrin.h 11550OLD_FILES+=usr/lib/clang/3.9.0/include/arm_acle.h 11551OLD_FILES+=usr/lib/clang/3.9.0/include/arm_neon.h 11552OLD_FILES+=usr/lib/clang/3.9.0/include/avx2intrin.h 11553OLD_FILES+=usr/lib/clang/3.9.0/include/avx512bwintrin.h 11554OLD_FILES+=usr/lib/clang/3.9.0/include/avx512cdintrin.h 11555OLD_FILES+=usr/lib/clang/3.9.0/include/avx512dqintrin.h 11556OLD_FILES+=usr/lib/clang/3.9.0/include/avx512erintrin.h 11557OLD_FILES+=usr/lib/clang/3.9.0/include/avx512fintrin.h 11558OLD_FILES+=usr/lib/clang/3.9.0/include/avx512ifmaintrin.h 11559OLD_FILES+=usr/lib/clang/3.9.0/include/avx512ifmavlintrin.h 11560OLD_FILES+=usr/lib/clang/3.9.0/include/avx512pfintrin.h 11561OLD_FILES+=usr/lib/clang/3.9.0/include/avx512vbmiintrin.h 11562OLD_FILES+=usr/lib/clang/3.9.0/include/avx512vbmivlintrin.h 11563OLD_FILES+=usr/lib/clang/3.9.0/include/avx512vlbwintrin.h 11564OLD_FILES+=usr/lib/clang/3.9.0/include/avx512vlcdintrin.h 11565OLD_FILES+=usr/lib/clang/3.9.0/include/avx512vldqintrin.h 11566OLD_FILES+=usr/lib/clang/3.9.0/include/avx512vlintrin.h 11567OLD_FILES+=usr/lib/clang/3.9.0/include/avxintrin.h 11568OLD_FILES+=usr/lib/clang/3.9.0/include/bmi2intrin.h 11569OLD_FILES+=usr/lib/clang/3.9.0/include/bmiintrin.h 11570OLD_FILES+=usr/lib/clang/3.9.0/include/clflushoptintrin.h 11571OLD_FILES+=usr/lib/clang/3.9.0/include/cpuid.h 11572OLD_FILES+=usr/lib/clang/3.9.0/include/cuda_builtin_vars.h 11573OLD_FILES+=usr/lib/clang/3.9.0/include/emmintrin.h 11574OLD_FILES+=usr/lib/clang/3.9.0/include/f16cintrin.h 11575OLD_FILES+=usr/lib/clang/3.9.0/include/fma4intrin.h 11576OLD_FILES+=usr/lib/clang/3.9.0/include/fmaintrin.h 11577OLD_FILES+=usr/lib/clang/3.9.0/include/fxsrintrin.h 11578OLD_FILES+=usr/lib/clang/3.9.0/include/htmintrin.h 11579OLD_FILES+=usr/lib/clang/3.9.0/include/htmxlintrin.h 11580OLD_FILES+=usr/lib/clang/3.9.0/include/ia32intrin.h 11581OLD_FILES+=usr/lib/clang/3.9.0/include/immintrin.h 11582OLD_FILES+=usr/lib/clang/3.9.0/include/lzcntintrin.h 11583OLD_FILES+=usr/lib/clang/3.9.0/include/mm3dnow.h 11584OLD_FILES+=usr/lib/clang/3.9.0/include/mm_malloc.h 11585OLD_FILES+=usr/lib/clang/3.9.0/include/mmintrin.h 11586OLD_FILES+=usr/lib/clang/3.9.0/include/module.modulemap 11587OLD_FILES+=usr/lib/clang/3.9.0/include/mwaitxintrin.h 11588OLD_FILES+=usr/lib/clang/3.9.0/include/nmmintrin.h 11589OLD_FILES+=usr/lib/clang/3.9.0/include/opencl-c.h 11590OLD_FILES+=usr/lib/clang/3.9.0/include/pkuintrin.h 11591OLD_FILES+=usr/lib/clang/3.9.0/include/pmmintrin.h 11592OLD_FILES+=usr/lib/clang/3.9.0/include/popcntintrin.h 11593OLD_FILES+=usr/lib/clang/3.9.0/include/prfchwintrin.h 11594OLD_FILES+=usr/lib/clang/3.9.0/include/rdseedintrin.h 11595OLD_FILES+=usr/lib/clang/3.9.0/include/rtmintrin.h 11596OLD_FILES+=usr/lib/clang/3.9.0/include/s390intrin.h 11597OLD_FILES+=usr/lib/clang/3.9.0/include/shaintrin.h 11598OLD_FILES+=usr/lib/clang/3.9.0/include/smmintrin.h 11599OLD_FILES+=usr/lib/clang/3.9.0/include/tbmintrin.h 11600OLD_FILES+=usr/lib/clang/3.9.0/include/tmmintrin.h 11601OLD_FILES+=usr/lib/clang/3.9.0/include/vadefs.h 11602OLD_FILES+=usr/lib/clang/3.9.0/include/vecintrin.h 11603OLD_FILES+=usr/lib/clang/3.9.0/include/wmmintrin.h 11604OLD_FILES+=usr/lib/clang/3.9.0/include/x86intrin.h 11605OLD_FILES+=usr/lib/clang/3.9.0/include/xmmintrin.h 11606OLD_FILES+=usr/lib/clang/3.9.0/include/xopintrin.h 11607OLD_FILES+=usr/lib/clang/3.9.0/include/xsavecintrin.h 11608OLD_FILES+=usr/lib/clang/3.9.0/include/xsaveintrin.h 11609OLD_FILES+=usr/lib/clang/3.9.0/include/xsaveoptintrin.h 11610OLD_FILES+=usr/lib/clang/3.9.0/include/xsavesintrin.h 11611OLD_FILES+=usr/lib/clang/3.9.0/include/xtestintrin.h 11612OLD_DIRS+=usr/lib/clang/3.9.0/include 11613OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan-i386.a 11614OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan-i386.so 11615OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 11616OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 11617OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan-x86_64.a 11618OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan-x86_64.so 11619OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 11620OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 11621OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.profile-arm.a 11622OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.profile-i386.a 11623OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.profile-x86_64.a 11624OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.safestack-i386.a 11625OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.safestack-x86_64.a 11626OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.stats-i386.a 11627OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.stats-x86_64.a 11628OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.stats_client-i386.a 11629OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.stats_client-x86_64.a 11630OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 11631OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 11632OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 11633OLD_FILES+=usr/lib/clang/3.9.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 11634OLD_DIRS+=usr/lib/clang/3.9.0/lib/freebsd 11635OLD_DIRS+=usr/lib/clang/3.9.0/lib 11636OLD_DIRS+=usr/lib/clang/3.9.0 11637# 20161205: libproc version bump 11638OLD_LIBS+=usr/lib/libproc.so.3 11639# 20161127: Remove vm_page_cache(9) 11640OLD_FILES+=usr/share/man/man9/vm_page_cache.9.gz 11641# 20161124: new clang import which bumps version from 3.8.0 to 3.9.0 11642OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/allocator_interface.h 11643OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/asan_interface.h 11644OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/common_interface_defs.h 11645OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/coverage_interface.h 11646OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/dfsan_interface.h 11647OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/linux_syscall_hooks.h 11648OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/lsan_interface.h 11649OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/msan_interface.h 11650OLD_FILES+=usr/lib/clang/3.8.0/include/sanitizer/tsan_interface_atomic.h 11651OLD_DIRS+=usr/lib/clang/3.8.0/include/sanitizer 11652OLD_FILES+=usr/lib/clang/3.8.0/include/__clang_cuda_runtime_wrapper.h 11653OLD_FILES+=usr/lib/clang/3.8.0/include/__stddef_max_align_t.h 11654OLD_FILES+=usr/lib/clang/3.8.0/include/__wmmintrin_aes.h 11655OLD_FILES+=usr/lib/clang/3.8.0/include/__wmmintrin_pclmul.h 11656OLD_FILES+=usr/lib/clang/3.8.0/include/adxintrin.h 11657OLD_FILES+=usr/lib/clang/3.8.0/include/altivec.h 11658OLD_FILES+=usr/lib/clang/3.8.0/include/ammintrin.h 11659OLD_FILES+=usr/lib/clang/3.8.0/include/arm_acle.h 11660OLD_FILES+=usr/lib/clang/3.8.0/include/arm_neon.h 11661OLD_FILES+=usr/lib/clang/3.8.0/include/avx2intrin.h 11662OLD_FILES+=usr/lib/clang/3.8.0/include/avx512bwintrin.h 11663OLD_FILES+=usr/lib/clang/3.8.0/include/avx512cdintrin.h 11664OLD_FILES+=usr/lib/clang/3.8.0/include/avx512dqintrin.h 11665OLD_FILES+=usr/lib/clang/3.8.0/include/avx512erintrin.h 11666OLD_FILES+=usr/lib/clang/3.8.0/include/avx512fintrin.h 11667OLD_FILES+=usr/lib/clang/3.8.0/include/avx512vlbwintrin.h 11668OLD_FILES+=usr/lib/clang/3.8.0/include/avx512vldqintrin.h 11669OLD_FILES+=usr/lib/clang/3.8.0/include/avx512vlintrin.h 11670OLD_FILES+=usr/lib/clang/3.8.0/include/avxintrin.h 11671OLD_FILES+=usr/lib/clang/3.8.0/include/bmi2intrin.h 11672OLD_FILES+=usr/lib/clang/3.8.0/include/bmiintrin.h 11673OLD_FILES+=usr/lib/clang/3.8.0/include/cpuid.h 11674OLD_FILES+=usr/lib/clang/3.8.0/include/cuda_builtin_vars.h 11675OLD_FILES+=usr/lib/clang/3.8.0/include/emmintrin.h 11676OLD_FILES+=usr/lib/clang/3.8.0/include/f16cintrin.h 11677OLD_FILES+=usr/lib/clang/3.8.0/include/fma4intrin.h 11678OLD_FILES+=usr/lib/clang/3.8.0/include/fmaintrin.h 11679OLD_FILES+=usr/lib/clang/3.8.0/include/fxsrintrin.h 11680OLD_FILES+=usr/lib/clang/3.8.0/include/htmintrin.h 11681OLD_FILES+=usr/lib/clang/3.8.0/include/htmxlintrin.h 11682OLD_FILES+=usr/lib/clang/3.8.0/include/ia32intrin.h 11683OLD_FILES+=usr/lib/clang/3.8.0/include/immintrin.h 11684OLD_FILES+=usr/lib/clang/3.8.0/include/lzcntintrin.h 11685OLD_FILES+=usr/lib/clang/3.8.0/include/mm3dnow.h 11686OLD_FILES+=usr/lib/clang/3.8.0/include/mm_malloc.h 11687OLD_FILES+=usr/lib/clang/3.8.0/include/mmintrin.h 11688OLD_FILES+=usr/lib/clang/3.8.0/include/module.modulemap 11689OLD_FILES+=usr/lib/clang/3.8.0/include/nmmintrin.h 11690OLD_FILES+=usr/lib/clang/3.8.0/include/pkuintrin.h 11691OLD_FILES+=usr/lib/clang/3.8.0/include/pmmintrin.h 11692OLD_FILES+=usr/lib/clang/3.8.0/include/popcntintrin.h 11693OLD_FILES+=usr/lib/clang/3.8.0/include/prfchwintrin.h 11694OLD_FILES+=usr/lib/clang/3.8.0/include/rdseedintrin.h 11695OLD_FILES+=usr/lib/clang/3.8.0/include/rtmintrin.h 11696OLD_FILES+=usr/lib/clang/3.8.0/include/s390intrin.h 11697OLD_FILES+=usr/lib/clang/3.8.0/include/shaintrin.h 11698OLD_FILES+=usr/lib/clang/3.8.0/include/smmintrin.h 11699OLD_FILES+=usr/lib/clang/3.8.0/include/tbmintrin.h 11700OLD_FILES+=usr/lib/clang/3.8.0/include/tmmintrin.h 11701OLD_FILES+=usr/lib/clang/3.8.0/include/vadefs.h 11702OLD_FILES+=usr/lib/clang/3.8.0/include/vecintrin.h 11703OLD_FILES+=usr/lib/clang/3.8.0/include/wmmintrin.h 11704OLD_FILES+=usr/lib/clang/3.8.0/include/x86intrin.h 11705OLD_FILES+=usr/lib/clang/3.8.0/include/xmmintrin.h 11706OLD_FILES+=usr/lib/clang/3.8.0/include/xopintrin.h 11707OLD_FILES+=usr/lib/clang/3.8.0/include/xsavecintrin.h 11708OLD_FILES+=usr/lib/clang/3.8.0/include/xsaveintrin.h 11709OLD_FILES+=usr/lib/clang/3.8.0/include/xsaveoptintrin.h 11710OLD_FILES+=usr/lib/clang/3.8.0/include/xsavesintrin.h 11711OLD_FILES+=usr/lib/clang/3.8.0/include/xtestintrin.h 11712OLD_DIRS+=usr/lib/clang/3.8.0/include 11713OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan-i386.a 11714OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan-i386.so 11715OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 11716OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 11717OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan-x86_64.a 11718OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan-x86_64.so 11719OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 11720OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 11721OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.profile-arm.a 11722OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.profile-i386.a 11723OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.profile-x86_64.a 11724OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.safestack-i386.a 11725OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.safestack-x86_64.a 11726OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 11727OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 11728OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 11729OLD_FILES+=usr/lib/clang/3.8.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 11730OLD_DIRS+=usr/lib/clang/3.8.0/lib/freebsd 11731OLD_DIRS+=usr/lib/clang/3.8.0/lib 11732OLD_DIRS+=usr/lib/clang/3.8.0 11733# 20161121: Hyper-V manuals only apply to amd64 and i386 11734.if ${TARGET_ARCH} != "amd64" && ${TARGET_ARCH} != "i386" 11735OLD_FILES+=usr/share/man/man4/hv_kvp.4.gz 11736OLD_FILES+=usr/share/man/man4/hv_netvsc.4.gz 11737OLD_FILES+=usr/share/man/man4/hv_storvsc.4.gz 11738OLD_FILES+=usr/share/man/man4/hv_utils.4.gz 11739OLD_FILES+=usr/share/man/man4/hv_vmbus.4.gz 11740OLD_FILES+=usr/share/man/man4/hv_vss.4.gz 11741.endif 11742# 20161118: Remove hv_ata_pci_disengage(4) 11743OLD_FILES+=usr/share/man/man4/hv_ata_pci_disengage.4.gz 11744# 20161017: urtwn(4) was merged into rtwn(4) 11745OLD_FILES+=usr/share/man/man4/if_urtwn.4.gz 11746OLD_FILES+=usr/share/man/man4/urtwn.4.gz 11747OLD_FILES+=usr/share/man/man4/urtwnfw.4.gz 11748# 20161015: Remove GNU rcs 11749OLD_FILES+=usr/bin/ci 11750OLD_FILES+=usr/bin/co 11751OLD_FILES+=usr/bin/merge 11752OLD_FILES+=usr/bin/rcs 11753OLD_FILES+=usr/bin/rcsclean 11754OLD_FILES+=usr/bin/rcsdiff 11755OLD_FILES+=usr/bin/rcsfreeze 11756OLD_FILES+=usr/bin/rcsmerge 11757OLD_FILES+=usr/bin/rlog 11758OLD_FILES+=usr/share/doc/psd/13.rcs/paper.ascii.gz 11759OLD_FILES+=usr/share/doc/psd/13.rcs/rcs_func.ascii.gz 11760OLD_DIRS+=usr/share/doc/psd/13.rcs 11761OLD_FILES+=usr/share/man/man1/ci.1.gz 11762OLD_FILES+=usr/share/man/man1/co.1.gz 11763OLD_FILES+=usr/share/man/man1/merge.1.gz 11764OLD_FILES+=usr/share/man/man1/rcs.1.gz 11765OLD_FILES+=usr/share/man/man1/rcsclean.1.gz 11766OLD_FILES+=usr/share/man/man1/rcsdiff.1.gz 11767OLD_FILES+=usr/share/man/man1/rcsfreeze.1.gz 11768OLD_FILES+=usr/share/man/man1/rcsintro.1.gz 11769OLD_FILES+=usr/share/man/man1/rcsmerge.1.gz 11770OLD_FILES+=usr/share/man/man1/rlog.1.gz 11771OLD_FILES+=usr/share/man/man5/rcsfile.5.gz 11772# 20161010: remove link to removed m_getclr(9) macro 11773OLD_FILES+=usr/share/man/man9/m_getclr.9.gz 11774# 20161003: MK_ELFCOPY_AS_OBJCOPY option retired 11775OLD_FILES+=usr/bin/elfcopy 11776OLD_FILES+=usr/share/man/man1/elfcopy.1.gz 11777# 20160906: libkqueue tests moved to /usr/tests/sys/kqueue/libkqueue 11778OLD_FILES+=usr/tests/sys/kqueue/kqtest 11779OLD_FILES+=usr/tests/sys/kqueue/kqueue_test 11780# 20160903: idle page zeroing support removed 11781OLD_FILES+=usr/share/man/man9/pmap_zero_idle.9.gz 11782# 20160901: Remove digi(4) 11783OLD_FILES+=usr/share/man/man4/digi.4.gz 11784# 20160819: Remove ie(4) 11785OLD_FILES+=usr/share/man/man4/i386/ie.4.gz 11786# 20160819: Remove spic(4) 11787OLD_FILES+=usr/share/man/man4/spic.4.gz 11788# 20160819: Remove wl(4) and wlconfig(8) 11789OLD_FILES+=usr/share/man/man4/i386/wl.4.gz 11790OLD_FILES+=usr/sbin/wlconfig 11791OLD_FILES+=usr/share/man/man8/i386/wlconfig.8.gz 11792# 20160819: Remove si(4) and sicontrol(8) 11793OLD_FILES+=usr/share/man/man4/si.4.gz 11794OLD_FILES+=usr/sbin/sicontrol 11795OLD_FILES+=usr/share/man/man8/sicontrol.8.gz 11796# 20160819: Remove scd(4) 11797OLD_FILES+=usr/share/man/man4/scd.4.gz 11798# 20160815: Remove mcd(4) 11799OLD_FILES+=usr/share/man/man4/mcd.4.gz 11800# 20160805: lockmgr_waiters(9) removed 11801OLD_FILES+=usr/share/man/man9/lockmgr_waiters.9.gz 11802# 20160703: POSIXify locales with variants 11803OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_COLLATE 11804OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_CTYPE 11805OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_MESSAGES 11806OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_MONETARY 11807OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_NUMERIC 11808OLD_FILES+=usr/share/locale/zh_Hant_TW.UTF-8/LC_TIME 11809OLD_DIRS+=usr/share/locale/zh_Hant_TW.UTF-8 11810OLD_FILES+=usr/share/locale/zh_Hant_TW.Big5/LC_COLLATE 11811OLD_FILES+=usr/share/locale/zh_Hant_TW.Big5/LC_CTYPE 11812OLD_FILES+=usr/share/locale/zh_Hant_TW.Big5/LC_MESSAGES 11813OLD_FILES+=usr/share/locale/zh_Hant_TW.Big5/LC_MONETARY 11814OLD_FILES+=usr/share/locale/zh_Hant_TW.Big5/LC_NUMERIC 11815OLD_FILES+=usr/share/locale/zh_Hant_TW.Big5/LC_TIME 11816OLD_DIRS+=usr/share/locale/zh_Hant_TW.Big5 11817OLD_FILES+=usr/share/locale/zh_Hant_HK.UTF-8/LC_COLLATE 11818OLD_FILES+=usr/share/locale/zh_Hant_HK.UTF-8/LC_CTYPE 11819OLD_FILES+=usr/share/locale/zh_Hant_HK.UTF-8/LC_MESSAGES 11820OLD_FILES+=usr/share/locale/zh_Hant_HK.UTF-8/LC_MONETARY 11821OLD_FILES+=usr/share/locale/zh_Hant_HK.UTF-8/LC_NUMERIC 11822OLD_FILES+=usr/share/locale/zh_Hant_HK.UTF-8/LC_TIME 11823OLD_DIRS+=usr/share/locale/zh_Hant_HK.UTF-8 11824OLD_FILES+=usr/share/locale/zh_Hans_CN.eucCN/LC_COLLATE 11825OLD_FILES+=usr/share/locale/zh_Hans_CN.eucCN/LC_CTYPE 11826OLD_FILES+=usr/share/locale/zh_Hans_CN.eucCN/LC_MESSAGES 11827OLD_FILES+=usr/share/locale/zh_Hans_CN.eucCN/LC_MONETARY 11828OLD_FILES+=usr/share/locale/zh_Hans_CN.eucCN/LC_NUMERIC 11829OLD_FILES+=usr/share/locale/zh_Hans_CN.eucCN/LC_TIME 11830OLD_DIRS+=usr/share/locale/zh_Hans_CN.eucCN 11831OLD_FILES+=usr/share/locale/zh_Hans_CN.UTF-8/LC_COLLATE 11832OLD_FILES+=usr/share/locale/zh_Hans_CN.UTF-8/LC_CTYPE 11833OLD_FILES+=usr/share/locale/zh_Hans_CN.UTF-8/LC_MESSAGES 11834OLD_FILES+=usr/share/locale/zh_Hans_CN.UTF-8/LC_MONETARY 11835OLD_FILES+=usr/share/locale/zh_Hans_CN.UTF-8/LC_NUMERIC 11836OLD_FILES+=usr/share/locale/zh_Hans_CN.UTF-8/LC_TIME 11837OLD_DIRS+=usr/share/locale/zh_Hans_CN.UTF-8 11838OLD_FILES+=usr/share/locale/zh_Hans_CN.GBK/LC_COLLATE 11839OLD_FILES+=usr/share/locale/zh_Hans_CN.GBK/LC_CTYPE 11840OLD_FILES+=usr/share/locale/zh_Hans_CN.GBK/LC_MESSAGES 11841OLD_FILES+=usr/share/locale/zh_Hans_CN.GBK/LC_MONETARY 11842OLD_FILES+=usr/share/locale/zh_Hans_CN.GBK/LC_NUMERIC 11843OLD_FILES+=usr/share/locale/zh_Hans_CN.GBK/LC_TIME 11844OLD_DIRS+=usr/share/locale/zh_Hans_CN.GBK 11845OLD_FILES+=usr/share/locale/zh_Hans_CN.GB2312/LC_COLLATE 11846OLD_FILES+=usr/share/locale/zh_Hans_CN.GB2312/LC_CTYPE 11847OLD_FILES+=usr/share/locale/zh_Hans_CN.GB2312/LC_MESSAGES 11848OLD_FILES+=usr/share/locale/zh_Hans_CN.GB2312/LC_MONETARY 11849OLD_FILES+=usr/share/locale/zh_Hans_CN.GB2312/LC_NUMERIC 11850OLD_FILES+=usr/share/locale/zh_Hans_CN.GB2312/LC_TIME 11851OLD_DIRS+=usr/share/locale/zh_Hans_CN.GB2312 11852OLD_FILES+=usr/share/locale/zh_Hans_CN.GB18030/LC_COLLATE 11853OLD_FILES+=usr/share/locale/zh_Hans_CN.GB18030/LC_CTYPE 11854OLD_FILES+=usr/share/locale/zh_Hans_CN.GB18030/LC_MESSAGES 11855OLD_FILES+=usr/share/locale/zh_Hans_CN.GB18030/LC_MONETARY 11856OLD_FILES+=usr/share/locale/zh_Hans_CN.GB18030/LC_NUMERIC 11857OLD_FILES+=usr/share/locale/zh_Hans_CN.GB18030/LC_TIME 11858OLD_DIRS+=usr/share/locale/zh_Hans_CN.GB18030 11859OLD_FILES+=usr/share/locale/sr_Latn_RS.UTF-8/LC_COLLATE 11860OLD_FILES+=usr/share/locale/sr_Latn_RS.UTF-8/LC_CTYPE 11861OLD_FILES+=usr/share/locale/sr_Latn_RS.UTF-8/LC_MESSAGES 11862OLD_FILES+=usr/share/locale/sr_Latn_RS.UTF-8/LC_MONETARY 11863OLD_FILES+=usr/share/locale/sr_Latn_RS.UTF-8/LC_NUMERIC 11864OLD_FILES+=usr/share/locale/sr_Latn_RS.UTF-8/LC_TIME 11865OLD_DIRS+=usr/share/locale/sr_Latn_RS.UTF-8 11866OLD_FILES+=usr/share/locale/sr_Latn_RS.ISO8859-2/LC_COLLATE 11867OLD_FILES+=usr/share/locale/sr_Latn_RS.ISO8859-2/LC_CTYPE 11868OLD_FILES+=usr/share/locale/sr_Latn_RS.ISO8859-2/LC_MESSAGES 11869OLD_FILES+=usr/share/locale/sr_Latn_RS.ISO8859-2/LC_MONETARY 11870OLD_FILES+=usr/share/locale/sr_Latn_RS.ISO8859-2/LC_NUMERIC 11871OLD_FILES+=usr/share/locale/sr_Latn_RS.ISO8859-2/LC_TIME 11872OLD_DIRS+=usr/share/locale/sr_Latn_RS.ISO8859-2 11873OLD_FILES+=usr/share/locale/sr_Cyrl_RS.UTF-8/LC_COLLATE 11874OLD_FILES+=usr/share/locale/sr_Cyrl_RS.UTF-8/LC_CTYPE 11875OLD_FILES+=usr/share/locale/sr_Cyrl_RS.UTF-8/LC_MESSAGES 11876OLD_FILES+=usr/share/locale/sr_Cyrl_RS.UTF-8/LC_MONETARY 11877OLD_FILES+=usr/share/locale/sr_Cyrl_RS.UTF-8/LC_NUMERIC 11878OLD_FILES+=usr/share/locale/sr_Cyrl_RS.UTF-8/LC_TIME 11879OLD_DIRS+=usr/share/locale/sr_Cyrl_RS.UTF-8 11880OLD_FILES+=usr/share/locale/sr_Cyrl_RS.ISO8859-5/LC_COLLATE 11881OLD_FILES+=usr/share/locale/sr_Cyrl_RS.ISO8859-5/LC_CTYPE 11882OLD_FILES+=usr/share/locale/sr_Cyrl_RS.ISO8859-5/LC_MESSAGES 11883OLD_FILES+=usr/share/locale/sr_Cyrl_RS.ISO8859-5/LC_MONETARY 11884OLD_FILES+=usr/share/locale/sr_Cyrl_RS.ISO8859-5/LC_NUMERIC 11885OLD_FILES+=usr/share/locale/sr_Cyrl_RS.ISO8859-5/LC_TIME 11886OLD_DIRS+=usr/share/locale/sr_Cyrl_RS.ISO8859-5 11887OLD_FILES+=usr/share/locale/mn_Cyrl_MN.UTF-8/LC_COLLATE 11888OLD_FILES+=usr/share/locale/mn_Cyrl_MN.UTF-8/LC_CTYPE 11889OLD_FILES+=usr/share/locale/mn_Cyrl_MN.UTF-8/LC_MESSAGES 11890OLD_FILES+=usr/share/locale/mn_Cyrl_MN.UTF-8/LC_MONETARY 11891OLD_FILES+=usr/share/locale/mn_Cyrl_MN.UTF-8/LC_NUMERIC 11892OLD_FILES+=usr/share/locale/mn_Cyrl_MN.UTF-8/LC_TIME 11893OLD_DIRS+=usr/share/locale/mn_Cyrl_MN.UTF-8 11894OLD_FILES+=usr/share/locale/kk_Cyrl_KZ.UTF-8/LC_COLLATE 11895OLD_FILES+=usr/share/locale/kk_Cyrl_KZ.UTF-8/LC_CTYPE 11896OLD_FILES+=usr/share/locale/kk_Cyrl_KZ.UTF-8/LC_MESSAGES 11897OLD_FILES+=usr/share/locale/kk_Cyrl_KZ.UTF-8/LC_MONETARY 11898OLD_FILES+=usr/share/locale/kk_Cyrl_KZ.UTF-8/LC_NUMERIC 11899OLD_FILES+=usr/share/locale/kk_Cyrl_KZ.UTF-8/LC_TIME 11900OLD_DIRS+=usr/share/locale/kk_Cyrl_KZ.UTF-8 11901# 20160608: removed pam_verbose_error 11902OLD_LIBS+=usr/lib/libpam.so.5 11903OLD_LIBS+=usr/lib/pam_chroot.so.5 11904OLD_LIBS+=usr/lib/pam_deny.so.5 11905OLD_LIBS+=usr/lib/pam_echo.so.5 11906OLD_LIBS+=usr/lib/pam_exec.so.5 11907OLD_LIBS+=usr/lib/pam_ftpusers.so.5 11908OLD_LIBS+=usr/lib/pam_group.so.5 11909OLD_LIBS+=usr/lib/pam_guest.so.5 11910OLD_LIBS+=usr/lib/pam_krb5.so.5 11911OLD_LIBS+=usr/lib/pam_ksu.so.5 11912OLD_LIBS+=usr/lib/pam_lastlog.so.5 11913OLD_LIBS+=usr/lib/pam_login_access.so.5 11914OLD_LIBS+=usr/lib/pam_nologin.so.5 11915OLD_LIBS+=usr/lib/pam_opie.so.5 11916OLD_LIBS+=usr/lib/pam_opieaccess.so.5 11917OLD_LIBS+=usr/lib/pam_passwdqc.so.5 11918OLD_LIBS+=usr/lib/pam_permit.so.5 11919OLD_LIBS+=usr/lib/pam_radius.so.5 11920OLD_LIBS+=usr/lib/pam_rhosts.so.5 11921OLD_LIBS+=usr/lib/pam_rootok.so.5 11922OLD_LIBS+=usr/lib/pam_securetty.so.5 11923OLD_LIBS+=usr/lib/pam_self.so.5 11924OLD_LIBS+=usr/lib/pam_ssh.so.5 11925OLD_LIBS+=usr/lib/pam_tacplus.so.5 11926OLD_LIBS+=usr/lib/pam_unix.so.5 11927# 20160523: remove extranous ALTQ files 11928OLD_FILES+=usr/include/altq/altq_codel.h 11929OLD_FILES+=usr/include/altq/altq_fairq.h 11930# 20160519: remove DTrace Toolkit from base 11931OLD_FILES+=usr/sbin/dtruss 11932OLD_FILES+=usr/share/dtrace/toolkit/execsnoop 11933OLD_FILES+=usr/share/dtrace/toolkit/hotkernel 11934OLD_FILES+=usr/share/dtrace/toolkit/hotuser 11935OLD_FILES+=usr/share/dtrace/toolkit/opensnoop 11936OLD_FILES+=usr/share/dtrace/toolkit/procsystime 11937OLD_DIRS+=usr/share/dtrace/toolkit 11938OLD_FILES+=usr/share/man/man1/dtruss.1.gz 11939# 20160519: stale MLINK removed 11940OLD_FILES+=usr/share/man/man9/rman_await_resource.9.gz 11941# 20160517: ReiserFS removed 11942OLD_FILES+=usr/share/man/man5/reiserfs.5.gz 11943# 20160504: tests rework 11944OLD_FILES+=usr/tests/lib/libc/regex/data/README 11945# 20160430: kvm_getfiles(3) removed from kvm(3) 11946OLD_LIBS+=lib/libkvm.so.6 11947OLD_FILES+=usr/share/man/man3/kvm_getfiles.3.gz 11948# 20160423: remove mroute6d 11949OLD_FILES+=etc/rc.d/mroute6d 11950# 20160419: rename units.lib -> definitions.units 11951OLD_FILES+=usr/share/misc/units.lib 11952# 20160419: remove Big5HKSCS locales 11953OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_COLLATE 11954OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_CTYPE 11955OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_MESSAGES 11956OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_MONETARY 11957OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_NUMERIC 11958OLD_FILES+=usr/share/locale/zh_HK.Big5HKSCS/LC_TIME 11959OLD_DIRS+=usr/share/locale/zh_HK.Big5HKSCS 11960OLD_FILES+=usr/share/locale/zh_Hant_HK.Big5HKSCS/LC_COLLATE 11961OLD_FILES+=usr/share/locale/zh_Hant_HK.Big5HKSCS/LC_CTYPE 11962OLD_FILES+=usr/share/locale/zh_Hant_HK.Big5HKSCS/LC_MESSAGES 11963OLD_FILES+=usr/share/locale/zh_Hant_HK.Big5HKSCS/LC_MONETARY 11964OLD_FILES+=usr/share/locale/zh_Hant_HK.Big5HKSCS/LC_NUMERIC 11965OLD_FILES+=usr/share/locale/zh_Hant_HK.Big5HKSCS/LC_TIME 11966OLD_DIRS+=usr/share/locale/zh_Hant_HK.Big5HKSCS 11967# 20160317: rman_res_t size bump to uintmax_t 11968OLD_LIBS+=usr/lib/libdevinfo.so.5 11969# 20160305: new clang import which bumps version from 3.7.1 to 3.8.0 11970OLD_FILES+=usr/bin/macho-dump 11971OLD_FILES+=usr/bin/tblgen 11972OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/allocator_interface.h 11973OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/asan_interface.h 11974OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/common_interface_defs.h 11975OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/coverage_interface.h 11976OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/dfsan_interface.h 11977OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/linux_syscall_hooks.h 11978OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/lsan_interface.h 11979OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/msan_interface.h 11980OLD_FILES+=usr/lib/clang/3.7.1/include/sanitizer/tsan_interface_atomic.h 11981OLD_DIRS+=usr/lib/clang/3.7.1/include/sanitizer 11982OLD_FILES+=usr/lib/clang/3.7.1/include/__stddef_max_align_t.h 11983OLD_FILES+=usr/lib/clang/3.7.1/include/__wmmintrin_aes.h 11984OLD_FILES+=usr/lib/clang/3.7.1/include/__wmmintrin_pclmul.h 11985OLD_FILES+=usr/lib/clang/3.7.1/include/adxintrin.h 11986OLD_FILES+=usr/lib/clang/3.7.1/include/altivec.h 11987OLD_FILES+=usr/lib/clang/3.7.1/include/ammintrin.h 11988OLD_FILES+=usr/lib/clang/3.7.1/include/arm_acle.h 11989OLD_FILES+=usr/lib/clang/3.7.1/include/arm_neon.h 11990OLD_FILES+=usr/lib/clang/3.7.1/include/avx2intrin.h 11991OLD_FILES+=usr/lib/clang/3.7.1/include/avx512bwintrin.h 11992OLD_FILES+=usr/lib/clang/3.7.1/include/avx512cdintrin.h 11993OLD_FILES+=usr/lib/clang/3.7.1/include/avx512dqintrin.h 11994OLD_FILES+=usr/lib/clang/3.7.1/include/avx512erintrin.h 11995OLD_FILES+=usr/lib/clang/3.7.1/include/avx512fintrin.h 11996OLD_FILES+=usr/lib/clang/3.7.1/include/avx512vlbwintrin.h 11997OLD_FILES+=usr/lib/clang/3.7.1/include/avx512vldqintrin.h 11998OLD_FILES+=usr/lib/clang/3.7.1/include/avx512vlintrin.h 11999OLD_FILES+=usr/lib/clang/3.7.1/include/avxintrin.h 12000OLD_FILES+=usr/lib/clang/3.7.1/include/bmi2intrin.h 12001OLD_FILES+=usr/lib/clang/3.7.1/include/bmiintrin.h 12002OLD_FILES+=usr/lib/clang/3.7.1/include/cpuid.h 12003OLD_FILES+=usr/lib/clang/3.7.1/include/cuda_builtin_vars.h 12004OLD_FILES+=usr/lib/clang/3.7.1/include/emmintrin.h 12005OLD_FILES+=usr/lib/clang/3.7.1/include/f16cintrin.h 12006OLD_FILES+=usr/lib/clang/3.7.1/include/fma4intrin.h 12007OLD_FILES+=usr/lib/clang/3.7.1/include/fmaintrin.h 12008OLD_FILES+=usr/lib/clang/3.7.1/include/fxsrintrin.h 12009OLD_FILES+=usr/lib/clang/3.7.1/include/htmintrin.h 12010OLD_FILES+=usr/lib/clang/3.7.1/include/htmxlintrin.h 12011OLD_FILES+=usr/lib/clang/3.7.1/include/ia32intrin.h 12012OLD_FILES+=usr/lib/clang/3.7.1/include/immintrin.h 12013OLD_FILES+=usr/lib/clang/3.7.1/include/lzcntintrin.h 12014OLD_FILES+=usr/lib/clang/3.7.1/include/mm3dnow.h 12015OLD_FILES+=usr/lib/clang/3.7.1/include/mm_malloc.h 12016OLD_FILES+=usr/lib/clang/3.7.1/include/mmintrin.h 12017OLD_FILES+=usr/lib/clang/3.7.1/include/module.modulemap 12018OLD_FILES+=usr/lib/clang/3.7.1/include/nmmintrin.h 12019OLD_FILES+=usr/lib/clang/3.7.1/include/pmmintrin.h 12020OLD_FILES+=usr/lib/clang/3.7.1/include/popcntintrin.h 12021OLD_FILES+=usr/lib/clang/3.7.1/include/prfchwintrin.h 12022OLD_FILES+=usr/lib/clang/3.7.1/include/rdseedintrin.h 12023OLD_FILES+=usr/lib/clang/3.7.1/include/rtmintrin.h 12024OLD_FILES+=usr/lib/clang/3.7.1/include/s390intrin.h 12025OLD_FILES+=usr/lib/clang/3.7.1/include/shaintrin.h 12026OLD_FILES+=usr/lib/clang/3.7.1/include/smmintrin.h 12027OLD_FILES+=usr/lib/clang/3.7.1/include/tbmintrin.h 12028OLD_FILES+=usr/lib/clang/3.7.1/include/tmmintrin.h 12029OLD_FILES+=usr/lib/clang/3.7.1/include/vadefs.h 12030OLD_FILES+=usr/lib/clang/3.7.1/include/vecintrin.h 12031OLD_FILES+=usr/lib/clang/3.7.1/include/wmmintrin.h 12032OLD_FILES+=usr/lib/clang/3.7.1/include/x86intrin.h 12033OLD_FILES+=usr/lib/clang/3.7.1/include/xmmintrin.h 12034OLD_FILES+=usr/lib/clang/3.7.1/include/xopintrin.h 12035OLD_FILES+=usr/lib/clang/3.7.1/include/xtestintrin.h 12036OLD_DIRS+=usr/lib/clang/3.7.1/include 12037OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.asan-i386.a 12038OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.asan-preinit-i386.a 12039OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 12040OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.asan-x86_64.a 12041OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 12042OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 12043OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.profile-arm.a 12044OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.profile-i386.a 12045OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.profile-x86_64.a 12046OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.safestack-i386.a 12047OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.safestack-x86_64.a 12048OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 12049OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 12050OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 12051OLD_FILES+=usr/lib/clang/3.7.1/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 12052OLD_DIRS+=usr/lib/clang/3.7.1/lib/freebsd 12053OLD_DIRS+=usr/lib/clang/3.7.1/lib 12054OLD_DIRS+=usr/lib/clang/3.7.1 12055OLD_FILES+=usr/share/man/man1/tblgen.1.gz 12056# 20160301: Remove taskqueue_enqueue_fast 12057OLD_FILES+=usr/share/man/man9/taskqueue_enqueue_fast.9.gz 12058# 20160225: Remove casperd and libcapsicum 12059OLD_FILES+=sbin/casperd 12060OLD_FILES+=etc/rc.d/casperd 12061OLD_FILES+=usr/share/man/man8/casperd.8.gz 12062OLD_FILES+=usr/include/libcapsicum.h 12063OLD_FILES+=usr/include/libcapsicum_service.h 12064OLD_FILES+=usr/include/libcapsicum.h 12065OLD_FILES+=usr/share/man/man3/libcapsicum.3.gz 12066OLD_FILES+=usr/include/libcapsicum_dns.h 12067OLD_FILES+=usr/include/libcapsicum_grp.h 12068OLD_FILES+=usr/include/libcapsicum_impl.h 12069OLD_FILES+=usr/include/libcapsicum_pwd.h 12070OLD_FILES+=usr/include/libcapsicum_random.h 12071OLD_FILES+=usr/include/libcapsicum_sysctl.h 12072OLD_FILES+=libexec/casper/dns 12073OLD_FILES+=libexec/casper/grp 12074OLD_FILES+=libexec/casper/pwd 12075OLD_FILES+=libexec/casper/random 12076OLD_FILES+=libexec/casper/sysctl 12077OLD_FILES+=libexec/casper/.debug/random.debug 12078OLD_FILES+=libexec/casper/.debug/dns.debug 12079OLD_FILES+=libexec/casper/.debug/sysctl.debug 12080OLD_FILES+=libexec/casper/.debug/pwd.debug 12081OLD_FILES+=libexec/casper/.debug/grp.debug 12082OLD_DIRS+=libexec/casper/.debug 12083OLD_DIRS+=libexec/casper 12084OLD_FILES+=usr/lib/libcapsicum.a 12085OLD_FILES+=usr/lib/libcapsicum.so 12086OLD_LIBS+=lib/libcapsicum.so.0 12087OLD_FILES+=usr/lib/libcapsicum_p.a 12088# 20160223: functionality from mkulzma(1) merged into mkuzip(1) 12089OLD_FILES+=usr/bin/mkulzma 12090OLD_FILES+=usr/share/man/man4/geom_uncompress.4.gz 12091OLD_FILES+=usr/share/man/man8/mkulzma.8.gz 12092# 20160211: Remove obsolete unbound-control-setup 12093OLD_FILES+=usr/sbin/unbound-control-setup 12094# 20160121: cc.h moved 12095OLD_FILES+=usr/include/netinet/cc.h 12096# 20160116: Update mandoc to cvs snapshot 20160116 12097OLD_FILES+=usr/share/mdocml/example.style.css 12098OLD_FILES+=usr/share/mdocml/style.css 12099OLD_DIRS+=usr/share/mdocml 12100# 20160114: SA-16:06.snmpd 12101OLD_FILES+=usr/share/examples/etc/snmpd.config 12102# 20160107: GNU ld installed as ld.bfd and linked as ld 12103OLD_FILES+=usr/lib/debug/usr/bin/ld.debug 12104# 20151225: new clang import which bumps version from 3.7.0 to 3.7.1 12105OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/allocator_interface.h 12106OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/asan_interface.h 12107OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/common_interface_defs.h 12108OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/coverage_interface.h 12109OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/dfsan_interface.h 12110OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/linux_syscall_hooks.h 12111OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/lsan_interface.h 12112OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/msan_interface.h 12113OLD_FILES+=usr/lib/clang/3.7.0/include/sanitizer/tsan_interface_atomic.h 12114OLD_DIRS+=usr/lib/clang/3.7.0/include/sanitizer 12115OLD_FILES+=usr/lib/clang/3.7.0/include/__stddef_max_align_t.h 12116OLD_FILES+=usr/lib/clang/3.7.0/include/__wmmintrin_aes.h 12117OLD_FILES+=usr/lib/clang/3.7.0/include/__wmmintrin_pclmul.h 12118OLD_FILES+=usr/lib/clang/3.7.0/include/adxintrin.h 12119OLD_FILES+=usr/lib/clang/3.7.0/include/altivec.h 12120OLD_FILES+=usr/lib/clang/3.7.0/include/ammintrin.h 12121OLD_FILES+=usr/lib/clang/3.7.0/include/arm_acle.h 12122OLD_FILES+=usr/lib/clang/3.7.0/include/arm_neon.h 12123OLD_FILES+=usr/lib/clang/3.7.0/include/avx2intrin.h 12124OLD_FILES+=usr/lib/clang/3.7.0/include/avx512bwintrin.h 12125OLD_FILES+=usr/lib/clang/3.7.0/include/avx512cdintrin.h 12126OLD_FILES+=usr/lib/clang/3.7.0/include/avx512dqintrin.h 12127OLD_FILES+=usr/lib/clang/3.7.0/include/avx512erintrin.h 12128OLD_FILES+=usr/lib/clang/3.7.0/include/avx512fintrin.h 12129OLD_FILES+=usr/lib/clang/3.7.0/include/avx512vlbwintrin.h 12130OLD_FILES+=usr/lib/clang/3.7.0/include/avx512vldqintrin.h 12131OLD_FILES+=usr/lib/clang/3.7.0/include/avx512vlintrin.h 12132OLD_FILES+=usr/lib/clang/3.7.0/include/avxintrin.h 12133OLD_FILES+=usr/lib/clang/3.7.0/include/bmi2intrin.h 12134OLD_FILES+=usr/lib/clang/3.7.0/include/bmiintrin.h 12135OLD_FILES+=usr/lib/clang/3.7.0/include/cpuid.h 12136OLD_FILES+=usr/lib/clang/3.7.0/include/cuda_builtin_vars.h 12137OLD_FILES+=usr/lib/clang/3.7.0/include/emmintrin.h 12138OLD_FILES+=usr/lib/clang/3.7.0/include/f16cintrin.h 12139OLD_FILES+=usr/lib/clang/3.7.0/include/fma4intrin.h 12140OLD_FILES+=usr/lib/clang/3.7.0/include/fmaintrin.h 12141OLD_FILES+=usr/lib/clang/3.7.0/include/fxsrintrin.h 12142OLD_FILES+=usr/lib/clang/3.7.0/include/htmintrin.h 12143OLD_FILES+=usr/lib/clang/3.7.0/include/htmxlintrin.h 12144OLD_FILES+=usr/lib/clang/3.7.0/include/ia32intrin.h 12145OLD_FILES+=usr/lib/clang/3.7.0/include/immintrin.h 12146OLD_FILES+=usr/lib/clang/3.7.0/include/lzcntintrin.h 12147OLD_FILES+=usr/lib/clang/3.7.0/include/mm3dnow.h 12148OLD_FILES+=usr/lib/clang/3.7.0/include/mm_malloc.h 12149OLD_FILES+=usr/lib/clang/3.7.0/include/mmintrin.h 12150OLD_FILES+=usr/lib/clang/3.7.0/include/module.modulemap 12151OLD_FILES+=usr/lib/clang/3.7.0/include/nmmintrin.h 12152OLD_FILES+=usr/lib/clang/3.7.0/include/pmmintrin.h 12153OLD_FILES+=usr/lib/clang/3.7.0/include/popcntintrin.h 12154OLD_FILES+=usr/lib/clang/3.7.0/include/prfchwintrin.h 12155OLD_FILES+=usr/lib/clang/3.7.0/include/rdseedintrin.h 12156OLD_FILES+=usr/lib/clang/3.7.0/include/rtmintrin.h 12157OLD_FILES+=usr/lib/clang/3.7.0/include/s390intrin.h 12158OLD_FILES+=usr/lib/clang/3.7.0/include/shaintrin.h 12159OLD_FILES+=usr/lib/clang/3.7.0/include/smmintrin.h 12160OLD_FILES+=usr/lib/clang/3.7.0/include/tbmintrin.h 12161OLD_FILES+=usr/lib/clang/3.7.0/include/tmmintrin.h 12162OLD_FILES+=usr/lib/clang/3.7.0/include/vadefs.h 12163OLD_FILES+=usr/lib/clang/3.7.0/include/vecintrin.h 12164OLD_FILES+=usr/lib/clang/3.7.0/include/wmmintrin.h 12165OLD_FILES+=usr/lib/clang/3.7.0/include/x86intrin.h 12166OLD_FILES+=usr/lib/clang/3.7.0/include/xmmintrin.h 12167OLD_FILES+=usr/lib/clang/3.7.0/include/xopintrin.h 12168OLD_FILES+=usr/lib/clang/3.7.0/include/xtestintrin.h 12169OLD_DIRS+=usr/lib/clang/3.7.0/include 12170OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.asan-i386.a 12171OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.asan-preinit-i386.a 12172OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.asan-preinit-x86_64.a 12173OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.asan-x86_64.a 12174OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 12175OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 12176OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.profile-arm.a 12177OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.profile-i386.a 12178OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.profile-x86_64.a 12179OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.safestack-i386.a 12180OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.safestack-x86_64.a 12181OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.ubsan_standalone-i386.a 12182OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.ubsan_standalone-x86_64.a 12183OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-i386.a 12184OLD_FILES+=usr/lib/clang/3.7.0/lib/freebsd/libclang_rt.ubsan_standalone_cxx-x86_64.a 12185OLD_DIRS+=usr/lib/clang/3.7.0/lib/freebsd 12186OLD_DIRS+=usr/lib/clang/3.7.0/lib 12187OLD_DIRS+=usr/lib/clang/3.7.0 12188# 20151130: libelf moved from /usr/lib to /lib (libkvm dependency in r291406) 12189MOVED_LIBS+=usr/lib/libelf.so.2 12190# 20151115: Fox bad upgrade scheme 12191OLD_FILES+=usr/share/locale/zh_CN.GB18030/zh_Hans_CN.GB18030 12192OLD_FILES+=usr/share/locale/zh_CN.GB2312/zh_Hans_CN.GB2312 12193OLD_FILES+=usr/share/locale/zh_CN.GBK/zh_Hans_CN.GBK 12194OLD_FILES+=usr/share/locale/zh_CN.UTF-8/zh_Hans_CN.UTF-8 12195OLD_FILES+=usr/share/locale/zh_CN.eucCN/zh_Hans_CN.eucCN 12196OLD_FILES+=usr/share/locale/zh_TW.Big5/zh_Hant_TW.Big5 12197OLD_FILES+=usr/share/locale/zh_TW.UTF-8/zh_Hant_TW.UTF-8 12198# 20151107: String collation improvements 12199OLD_FILES+=usr/share/locale/UTF-8/LC_CTYPE 12200OLD_DIRS+=usr/share/locale/UTF-8 12201OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_COLLATE 12202OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_CTYPE 12203OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MESSAGES 12204OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_MONETARY 12205OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_NUMERIC 12206OLD_FILES+=usr/share/locale/kk_KZ.PT154/LC_TIME 12207OLD_DIRS+=usr/share/locale/kk_KZ.PT154/ 12208OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_COLLATE 12209OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_CTYPE 12210OLD_FILES+=usr/share/locale/la_LN.ISO8859-1/LC_TIME 12211OLD_DIRS+=usr/share/locale/la_LN.ISO8859-1 12212OLD_FILES+=usr/share/locale/la_LN.ISO8859-13/LC_COLLATE 12213OLD_FILES+=usr/share/locale/la_LN.ISO8859-13/LC_CTYPE 12214OLD_DIRS+=usr/share/locale/la_LN.ISO8859-13 12215OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_COLLATE 12216OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_CTYPE 12217OLD_FILES+=usr/share/locale/la_LN.ISO8859-15/LC_TIME 12218OLD_DIRS+=usr/share/locale/la_LN.ISO8859-15 12219OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_COLLATE 12220OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_CTYPE 12221OLD_FILES+=usr/share/locale/la_LN.ISO8859-2/LC_TIME 12222OLD_DIRS+=usr/share/locale/la_LN.ISO8859-2 12223OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_COLLATE 12224OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_CTYPE 12225OLD_FILES+=usr/share/locale/la_LN.ISO8859-4/LC_TIME 12226OLD_DIRS+=usr/share/locale/la_LN.ISO8859-4 12227OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_COLLATE 12228OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_CTYPE 12229OLD_FILES+=usr/share/locale/la_LN.US-ASCII/LC_TIME 12230OLD_DIRS+=usr/share/locale/la_LN.US-ASCII 12231OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MESSAGES 12232OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_TIME 12233OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_COLLATE 12234OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_MONETARY 12235OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_CTYPE 12236OLD_FILES+=usr/share/locale/lt_LT.ISO8859-4/LC_NUMERIC 12237OLD_DIRS+=usr/share/locale/lt_LT.ISO8859-4 12238OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_COLLATE 12239OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_CTYPE 12240OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_MESSAGES 12241OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_MONETARY 12242OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_NUMERIC 12243OLD_FILES+=usr/share/locale/no_NO.ISO8859-1/LC_TIME 12244OLD_DIRS+=usr/share/locale/no_NO.ISO8859-1 12245OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_COLLATE 12246OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_CTYPE 12247OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_MESSAGES 12248OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_MONETARY 12249OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_NUMERIC 12250OLD_FILES+=usr/share/locale/no_NO.ISO8859-15/LC_TIME 12251OLD_DIRS+=usr/share/locale/no_NO.ISO8859-15 12252OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_COLLATE 12253OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_CTYPE 12254OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_MESSAGES 12255OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_MONETARY 12256OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_NUMERIC 12257OLD_FILES+=usr/share/locale/no_NO.UTF-8/LC_TIME 12258OLD_DIRS+=usr/share/locale/no_NO.UTF-8 12259OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_COLLATE 12260OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_TIME 12261OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_CTYPE 12262OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MESSAGES 12263OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_NUMERIC 12264OLD_FILES+=usr/share/locale/sr_YU.ISO8859-2/LC_MONETARY 12265OLD_DIRS+=usr/share/locale/sr_YU.ISO8859-2 12266OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_COLLATE 12267OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MONETARY 12268OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_NUMERIC 12269OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_CTYPE 12270OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_TIME 12271OLD_FILES+=usr/share/locale/sr_YU.ISO8859-5/LC_MESSAGES 12272OLD_DIRS+=usr/share/locale/sr_YU.ISO8859-5 12273OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_COLLATE 12274OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MONETARY 12275OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_CTYPE 12276OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_TIME 12277OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_NUMERIC 12278OLD_FILES+=usr/share/locale/sr_YU.UTF-8/LC_MESSAGES 12279OLD_DIRS+=usr/share/locale/sr_YU.UTF-8 12280# 20151101: added missing _test suffix on multiple tests in lib/libc 12281OLD_FILES+=usr/tests/lib/libc/c063/faccessat 12282OLD_FILES+=usr/tests/lib/libc/c063/fchmodat 12283OLD_FILES+=usr/tests/lib/libc/c063/fchownat 12284OLD_FILES+=usr/tests/lib/libc/c063/fexecve 12285OLD_FILES+=usr/tests/lib/libc/c063/fstatat 12286OLD_FILES+=usr/tests/lib/libc/c063/linkat 12287OLD_FILES+=usr/tests/lib/libc/c063/mkdirat 12288OLD_FILES+=usr/tests/lib/libc/c063/mkfifoat 12289OLD_FILES+=usr/tests/lib/libc/c063/mknodat 12290OLD_FILES+=usr/tests/lib/libc/c063/openat 12291OLD_FILES+=usr/tests/lib/libc/c063/readlinkat 12292OLD_FILES+=usr/tests/lib/libc/c063/renameat 12293OLD_FILES+=usr/tests/lib/libc/c063/symlinkat 12294OLD_FILES+=usr/tests/lib/libc/c063/unlinkat 12295OLD_FILES+=usr/tests/lib/libc/c063/utimensat 12296OLD_FILES+=usr/tests/lib/libc/string/memchr 12297OLD_FILES+=usr/tests/lib/libc/string/memcpy 12298OLD_FILES+=usr/tests/lib/libc/string/memmem 12299OLD_FILES+=usr/tests/lib/libc/string/memset 12300OLD_FILES+=usr/tests/lib/libc/string/strcat 12301OLD_FILES+=usr/tests/lib/libc/string/strchr 12302OLD_FILES+=usr/tests/lib/libc/string/strcmp 12303OLD_FILES+=usr/tests/lib/libc/string/strcpy 12304OLD_FILES+=usr/tests/lib/libc/string/strcspn 12305OLD_FILES+=usr/tests/lib/libc/string/strerror 12306OLD_FILES+=usr/tests/lib/libc/string/strlen 12307OLD_FILES+=usr/tests/lib/libc/string/strpbrk 12308OLD_FILES+=usr/tests/lib/libc/string/strrchr 12309OLD_FILES+=usr/tests/lib/libc/string/strspn 12310OLD_FILES+=usr/tests/lib/libc/string/swab 12311# 20151101: 430.status-rwho was renamed to 430.status-uptime 12312OLD_FILES+=etc/periodic/daily/430.status-rwho 12313# 20151030: OpenSSL 1.0.2d import 12314OLD_FILES+=usr/share/openssl/man/man3/CMS_set1_signer_certs.3.gz 12315OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_ctrl.3.gz 12316OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_ctrl_str.3.gz 12317OLD_FILES+=usr/share/openssl/man/man3/d2i_509_CRL_fp.3.gz 12318OLD_LIBS+=lib/libcrypto.so.7 12319OLD_LIBS+=usr/lib/libssl.so.7 12320# 20151029: LinuxKPI moved to sys/compat/linuxkpi 12321OLD_FILES+=usr/include/dev/usb/usb_compat_linux.h 12322# 20151015: test symbols moved to /usr/lib/debug 12323OLD_DIRS+=usr/tests/lib/atf/libatf-c++/.debug 12324OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/atf_c++_test.debug 12325OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/build_test.debug 12326OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/check_test.debug 12327OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/config_test.debug 12328OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/macros_test.debug 12329OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/tests_test.debug 12330OLD_FILES+=usr/tests/lib/atf/libatf-c++/.debug/utils_test.debug 12331OLD_DIRS+=usr/tests/lib/atf/libatf-c++/detail/.debug 12332OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/application_test.debug 12333OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/env_test.debug 12334OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/exceptions_test.debug 12335OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/fs_test.debug 12336OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/process_test.debug 12337OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/sanity_test.debug 12338OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/text_test.debug 12339OLD_FILES+=usr/tests/lib/atf/libatf-c++/detail/.debug/version_helper.debug 12340OLD_DIRS+=usr/tests/lib/atf/libatf-c/.debug 12341OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/atf_c_test.debug 12342OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/build_test.debug 12343OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/check_test.debug 12344OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/config_test.debug 12345OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/error_test.debug 12346OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/macros_test.debug 12347OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/tc_test.debug 12348OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/tp_test.debug 12349OLD_FILES+=usr/tests/lib/atf/libatf-c/.debug/utils_test.debug 12350OLD_DIRS+=usr/tests/lib/atf/libatf-c/detail/.debug 12351OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/dynstr_test.debug 12352OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/env_test.debug 12353OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/fs_test.debug 12354OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/list_test.debug 12355OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/map_test.debug 12356OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/process_helpers.debug 12357OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/process_test.debug 12358OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/sanity_test.debug 12359OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/text_test.debug 12360OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/user_test.debug 12361OLD_FILES+=usr/tests/lib/atf/libatf-c/detail/.debug/version_helper.debug 12362OLD_DIRS+=usr/tests/lib/atf/test-programs/.debug 12363OLD_FILES+=usr/tests/lib/atf/test-programs/.debug/c_helpers.debug 12364OLD_FILES+=usr/tests/lib/atf/test-programs/.debug/cpp_helpers.debug 12365OLD_DIRS+=usr/tests/lib/libc/c063/.debug 12366OLD_FILES+=usr/tests/lib/libc/c063/.debug/faccessat.debug 12367OLD_FILES+=usr/tests/lib/libc/c063/.debug/fchmodat.debug 12368OLD_FILES+=usr/tests/lib/libc/c063/.debug/fchownat.debug 12369OLD_FILES+=usr/tests/lib/libc/c063/.debug/fexecve.debug 12370OLD_FILES+=usr/tests/lib/libc/c063/.debug/fstatat.debug 12371OLD_FILES+=usr/tests/lib/libc/c063/.debug/linkat.debug 12372OLD_FILES+=usr/tests/lib/libc/c063/.debug/mkdirat.debug 12373OLD_FILES+=usr/tests/lib/libc/c063/.debug/mkfifoat.debug 12374OLD_FILES+=usr/tests/lib/libc/c063/.debug/mknodat.debug 12375OLD_FILES+=usr/tests/lib/libc/c063/.debug/openat.debug 12376OLD_FILES+=usr/tests/lib/libc/c063/.debug/readlinkat.debug 12377OLD_FILES+=usr/tests/lib/libc/c063/.debug/renameat.debug 12378OLD_FILES+=usr/tests/lib/libc/c063/.debug/symlinkat.debug 12379OLD_FILES+=usr/tests/lib/libc/c063/.debug/unlinkat.debug 12380OLD_FILES+=usr/tests/lib/libc/c063/.debug/utimensat.debug 12381OLD_DIRS+=usr/tests/lib/libc/db/.debug 12382OLD_FILES+=usr/tests/lib/libc/db/.debug/h_db.debug 12383OLD_DIRS+=usr/tests/lib/libc/gen/.debug 12384OLD_FILES+=usr/tests/lib/libc/gen/.debug/alarm_test.debug 12385OLD_FILES+=usr/tests/lib/libc/gen/.debug/arc4random_test.debug 12386OLD_FILES+=usr/tests/lib/libc/gen/.debug/assert_test.debug 12387OLD_FILES+=usr/tests/lib/libc/gen/.debug/basedirname_test.debug 12388OLD_FILES+=usr/tests/lib/libc/gen/.debug/dir_test.debug 12389OLD_FILES+=usr/tests/lib/libc/gen/.debug/floatunditf_test.debug 12390OLD_FILES+=usr/tests/lib/libc/gen/.debug/fnmatch_test.debug 12391OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpclassify2_test.debug 12392OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpclassify_test.debug 12393OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpsetmask_test.debug 12394OLD_FILES+=usr/tests/lib/libc/gen/.debug/fpsetround_test.debug 12395OLD_FILES+=usr/tests/lib/libc/gen/.debug/ftok_test.debug 12396OLD_FILES+=usr/tests/lib/libc/gen/.debug/getcwd_test.debug 12397OLD_FILES+=usr/tests/lib/libc/gen/.debug/getgrent_test.debug 12398OLD_FILES+=usr/tests/lib/libc/gen/.debug/glob_test.debug 12399OLD_FILES+=usr/tests/lib/libc/gen/.debug/humanize_number_test.debug 12400OLD_FILES+=usr/tests/lib/libc/gen/.debug/isnan_test.debug 12401OLD_FILES+=usr/tests/lib/libc/gen/.debug/nice_test.debug 12402OLD_FILES+=usr/tests/lib/libc/gen/.debug/pause_test.debug 12403OLD_FILES+=usr/tests/lib/libc/gen/.debug/raise_test.debug 12404OLD_FILES+=usr/tests/lib/libc/gen/.debug/realpath_test.debug 12405OLD_FILES+=usr/tests/lib/libc/gen/.debug/setdomainname_test.debug 12406OLD_FILES+=usr/tests/lib/libc/gen/.debug/sethostname_test.debug 12407OLD_FILES+=usr/tests/lib/libc/gen/.debug/sleep_test.debug 12408OLD_FILES+=usr/tests/lib/libc/gen/.debug/syslog_test.debug 12409OLD_FILES+=usr/tests/lib/libc/gen/.debug/time_test.debug 12410OLD_FILES+=usr/tests/lib/libc/gen/.debug/ttyname_test.debug 12411OLD_FILES+=usr/tests/lib/libc/gen/.debug/vis_test.debug 12412OLD_DIRS+=usr/tests/lib/libc/gen/execve/.debug 12413OLD_FILES+=usr/tests/lib/libc/gen/execve/.debug/execve_test.debug 12414OLD_DIRS+=usr/tests/lib/libc/gen/posix_spawn/.debug 12415OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/fileactions_test.debug 12416OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/h_fileactions.debug 12417OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/h_spawn.debug 12418OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/h_spawnattr.debug 12419OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/spawn_test.debug 12420OLD_FILES+=usr/tests/lib/libc/gen/posix_spawn/.debug/spawnattr_test.debug 12421OLD_DIRS+=usr/tests/lib/libc/hash/.debug 12422OLD_FILES+=usr/tests/lib/libc/hash/.debug/h_hash.debug 12423OLD_FILES+=usr/tests/lib/libc/hash/.debug/sha2_test.debug 12424OLD_DIRS+=usr/tests/lib/libc/inet/.debug 12425OLD_FILES+=usr/tests/lib/libc/inet/.debug/inet_network_test.debug 12426OLD_DIRS+=usr/tests/lib/libc/locale/.debug 12427OLD_FILES+=usr/tests/lib/libc/locale/.debug/io_test.debug 12428OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbrtowc_test.debug 12429OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbsnrtowcs_test.debug 12430OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbstowcs_test.debug 12431OLD_FILES+=usr/tests/lib/libc/locale/.debug/mbtowc_test.debug 12432OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcscspn_test.debug 12433OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcspbrk_test.debug 12434OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcsspn_test.debug 12435OLD_FILES+=usr/tests/lib/libc/locale/.debug/wcstod_test.debug 12436OLD_FILES+=usr/tests/lib/libc/locale/.debug/wctomb_test.debug 12437OLD_DIRS+=usr/tests/lib/libc/net/.debug 12438OLD_FILES+=usr/tests/lib/libc/net/.debug/ether_aton_test.debug 12439OLD_FILES+=usr/tests/lib/libc/net/.debug/getprotoent_test.debug 12440OLD_FILES+=usr/tests/lib/libc/net/.debug/h_dns_server.debug 12441OLD_FILES+=usr/tests/lib/libc/net/.debug/h_nsd_recurse.debug 12442OLD_FILES+=usr/tests/lib/libc/net/.debug/h_protoent.debug 12443OLD_FILES+=usr/tests/lib/libc/net/.debug/h_servent.debug 12444OLD_DIRS+=usr/tests/lib/libc/regex/.debug 12445OLD_FILES+=usr/tests/lib/libc/regex/.debug/exhaust_test.debug 12446OLD_FILES+=usr/tests/lib/libc/regex/.debug/h_regex.debug 12447OLD_FILES+=usr/tests/lib/libc/regex/.debug/regex_att_test.debug 12448OLD_DIRS+=usr/tests/lib/libc/ssp/.debug 12449OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_fgets.debug 12450OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_getcwd.debug 12451OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_gets.debug 12452OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_memcpy.debug 12453OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_memmove.debug 12454OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_memset.debug 12455OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_raw.debug 12456OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_read.debug 12457OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_readlink.debug 12458OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_snprintf.debug 12459OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_sprintf.debug 12460OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_stpcpy.debug 12461OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_stpncpy.debug 12462OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strcat.debug 12463OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strcpy.debug 12464OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strncat.debug 12465OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_strncpy.debug 12466OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_vsnprintf.debug 12467OLD_FILES+=usr/tests/lib/libc/ssp/.debug/h_vsprintf.debug 12468OLD_DIRS+=usr/tests/lib/libc/stdio/.debug 12469OLD_FILES+=usr/tests/lib/libc/stdio/.debug/clearerr_test.debug 12470OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fflush_test.debug 12471OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fmemopen2_test.debug 12472OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fmemopen_test.debug 12473OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fopen_test.debug 12474OLD_FILES+=usr/tests/lib/libc/stdio/.debug/fputc_test.debug 12475OLD_FILES+=usr/tests/lib/libc/stdio/.debug/mktemp_test.debug 12476OLD_FILES+=usr/tests/lib/libc/stdio/.debug/popen_test.debug 12477OLD_FILES+=usr/tests/lib/libc/stdio/.debug/printf_test.debug 12478OLD_FILES+=usr/tests/lib/libc/stdio/.debug/scanf_test.debug 12479OLD_DIRS+=usr/tests/lib/libc/stdlib/.debug 12480OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/abs_test.debug 12481OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/atoi_test.debug 12482OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/div_test.debug 12483OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/exit_test.debug 12484OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/getenv_test.debug 12485OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/h_getopt.debug 12486OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/h_getopt_long.debug 12487OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/hsearch_test.debug 12488OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/posix_memalign_test.debug 12489OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/random_test.debug 12490OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/strtod_test.debug 12491OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/strtol_test.debug 12492OLD_FILES+=usr/tests/lib/libc/stdlib/.debug/system_test.debug 12493OLD_DIRS+=usr/tests/lib/libc/string/.debug 12494OLD_FILES+=usr/tests/lib/libc/string/.debug/memchr.debug 12495OLD_FILES+=usr/tests/lib/libc/string/.debug/memcpy.debug 12496OLD_FILES+=usr/tests/lib/libc/string/.debug/memmem.debug 12497OLD_FILES+=usr/tests/lib/libc/string/.debug/memset.debug 12498OLD_FILES+=usr/tests/lib/libc/string/.debug/strcat.debug 12499OLD_FILES+=usr/tests/lib/libc/string/.debug/strchr.debug 12500OLD_FILES+=usr/tests/lib/libc/string/.debug/strcmp.debug 12501OLD_FILES+=usr/tests/lib/libc/string/.debug/strcpy.debug 12502OLD_FILES+=usr/tests/lib/libc/string/.debug/strcspn.debug 12503OLD_FILES+=usr/tests/lib/libc/string/.debug/strerror.debug 12504OLD_FILES+=usr/tests/lib/libc/string/.debug/strlen.debug 12505OLD_FILES+=usr/tests/lib/libc/string/.debug/strpbrk.debug 12506OLD_FILES+=usr/tests/lib/libc/string/.debug/strrchr.debug 12507OLD_FILES+=usr/tests/lib/libc/string/.debug/strspn.debug 12508OLD_FILES+=usr/tests/lib/libc/string/.debug/swab.debug 12509OLD_DIRS+=usr/tests/lib/libc/sys/.debug 12510OLD_FILES+=usr/tests/lib/libc/sys/.debug/access_test.debug 12511OLD_FILES+=usr/tests/lib/libc/sys/.debug/chroot_test.debug 12512OLD_FILES+=usr/tests/lib/libc/sys/.debug/clock_gettime_test.debug 12513OLD_FILES+=usr/tests/lib/libc/sys/.debug/connect_test.debug 12514OLD_FILES+=usr/tests/lib/libc/sys/.debug/dup_test.debug 12515OLD_FILES+=usr/tests/lib/libc/sys/.debug/fsync_test.debug 12516OLD_FILES+=usr/tests/lib/libc/sys/.debug/getcontext_test.debug 12517OLD_FILES+=usr/tests/lib/libc/sys/.debug/getgroups_test.debug 12518OLD_FILES+=usr/tests/lib/libc/sys/.debug/getitimer_test.debug 12519OLD_FILES+=usr/tests/lib/libc/sys/.debug/getlogin_test.debug 12520OLD_FILES+=usr/tests/lib/libc/sys/.debug/getpid_test.debug 12521OLD_FILES+=usr/tests/lib/libc/sys/.debug/getrusage_test.debug 12522OLD_FILES+=usr/tests/lib/libc/sys/.debug/getsid_test.debug 12523OLD_FILES+=usr/tests/lib/libc/sys/.debug/gettimeofday_test.debug 12524OLD_FILES+=usr/tests/lib/libc/sys/.debug/issetugid_test.debug 12525OLD_FILES+=usr/tests/lib/libc/sys/.debug/kevent_test.debug 12526OLD_FILES+=usr/tests/lib/libc/sys/.debug/kill_test.debug 12527OLD_FILES+=usr/tests/lib/libc/sys/.debug/link_test.debug 12528OLD_FILES+=usr/tests/lib/libc/sys/.debug/listen_test.debug 12529OLD_FILES+=usr/tests/lib/libc/sys/.debug/mincore_test.debug 12530OLD_FILES+=usr/tests/lib/libc/sys/.debug/mkdir_test.debug 12531OLD_FILES+=usr/tests/lib/libc/sys/.debug/mkfifo_test.debug 12532OLD_FILES+=usr/tests/lib/libc/sys/.debug/mknod_test.debug 12533OLD_FILES+=usr/tests/lib/libc/sys/.debug/mlock_test.debug 12534OLD_FILES+=usr/tests/lib/libc/sys/.debug/mmap_test.debug 12535OLD_FILES+=usr/tests/lib/libc/sys/.debug/mprotect_test.debug 12536OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgctl_test.debug 12537OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgget_test.debug 12538OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgrcv_test.debug 12539OLD_FILES+=usr/tests/lib/libc/sys/.debug/msgsnd_test.debug 12540OLD_FILES+=usr/tests/lib/libc/sys/.debug/msync_test.debug 12541OLD_FILES+=usr/tests/lib/libc/sys/.debug/nanosleep_test.debug 12542OLD_FILES+=usr/tests/lib/libc/sys/.debug/pipe2_test.debug 12543OLD_FILES+=usr/tests/lib/libc/sys/.debug/pipe_test.debug 12544OLD_FILES+=usr/tests/lib/libc/sys/.debug/poll_test.debug 12545OLD_FILES+=usr/tests/lib/libc/sys/.debug/revoke_test.debug 12546OLD_FILES+=usr/tests/lib/libc/sys/.debug/select_test.debug 12547OLD_FILES+=usr/tests/lib/libc/sys/.debug/setrlimit_test.debug 12548OLD_FILES+=usr/tests/lib/libc/sys/.debug/setuid_test.debug 12549OLD_FILES+=usr/tests/lib/libc/sys/.debug/sigaction_test.debug 12550OLD_FILES+=usr/tests/lib/libc/sys/.debug/sigqueue_test.debug 12551OLD_FILES+=usr/tests/lib/libc/sys/.debug/sigtimedwait_test.debug 12552OLD_FILES+=usr/tests/lib/libc/sys/.debug/socketpair_test.debug 12553OLD_FILES+=usr/tests/lib/libc/sys/.debug/stat_test.debug 12554OLD_FILES+=usr/tests/lib/libc/sys/.debug/timer_create_test.debug 12555OLD_FILES+=usr/tests/lib/libc/sys/.debug/truncate_test.debug 12556OLD_FILES+=usr/tests/lib/libc/sys/.debug/ucontext_test.debug 12557OLD_FILES+=usr/tests/lib/libc/sys/.debug/umask_test.debug 12558OLD_FILES+=usr/tests/lib/libc/sys/.debug/unlink_test.debug 12559OLD_FILES+=usr/tests/lib/libc/sys/.debug/write_test.debug 12560OLD_DIRS+=usr/tests/lib/libc/termios/.debug 12561OLD_FILES+=usr/tests/lib/libc/termios/.debug/tcsetpgrp_test.debug 12562OLD_DIRS+=usr/tests/lib/libc/tls/.debug 12563OLD_FILES+=usr/tests/lib/libc/tls/.debug/h_tls_dlopen.so.debug 12564OLD_FILES+=usr/tests/lib/libc/tls/.debug/libh_tls_dynamic.so.1.debug 12565OLD_FILES+=usr/tests/lib/libc/tls/.debug/tls_dlopen_test.debug 12566OLD_FILES+=usr/tests/lib/libc/tls/.debug/tls_dynamic_test.debug 12567OLD_DIRS+=usr/tests/lib/libc/ttyio/.debug 12568OLD_FILES+=usr/tests/lib/libc/ttyio/.debug/ttyio_test.debug 12569OLD_DIRS+=usr/tests/lib/libcrypt/.debug 12570OLD_FILES+=usr/tests/lib/libcrypt/.debug/crypt_tests.debug 12571OLD_DIRS+=usr/tests/lib/libmp/.debug 12572OLD_FILES+=usr/tests/lib/libmp/.debug/legacy_test.debug 12573OLD_DIRS+=usr/tests/lib/libnv/.debug 12574OLD_FILES+=usr/tests/lib/libnv/.debug/dnv_tests.debug 12575OLD_FILES+=usr/tests/lib/libnv/.debug/nv_array_tests.debug 12576OLD_FILES+=usr/tests/lib/libnv/.debug/nv_tests.debug 12577OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_add_test.debug 12578OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_exists_test.debug 12579OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_free_test.debug 12580OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_get_test.debug 12581OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_move_test.debug 12582OLD_FILES+=usr/tests/lib/libnv/.debug/nvlist_send_recv_test.debug 12583OLD_DIRS+=usr/tests/lib/libpam/.debug 12584OLD_FILES+=usr/tests/lib/libpam/.debug/t_openpam_ctype.debug 12585OLD_FILES+=usr/tests/lib/libpam/.debug/t_openpam_readlinev.debug 12586OLD_FILES+=usr/tests/lib/libpam/.debug/t_openpam_readword.debug 12587OLD_DIRS+=usr/tests/lib/libproc/.debug 12588OLD_FILES+=usr/tests/lib/libproc/.debug/proc_test.debug 12589OLD_FILES+=usr/tests/lib/libproc/.debug/target_prog.debug 12590OLD_DIRS+=usr/tests/lib/librt/.debug 12591OLD_FILES+=usr/tests/lib/librt/.debug/sched_test.debug 12592OLD_FILES+=usr/tests/lib/librt/.debug/sem_test.debug 12593OLD_DIRS+=usr/tests/lib/libthr/.debug 12594OLD_FILES+=usr/tests/lib/libthr/.debug/barrier_test.debug 12595OLD_FILES+=usr/tests/lib/libthr/.debug/cond_test.debug 12596OLD_FILES+=usr/tests/lib/libthr/.debug/condwait_test.debug 12597OLD_FILES+=usr/tests/lib/libthr/.debug/detach_test.debug 12598OLD_FILES+=usr/tests/lib/libthr/.debug/equal_test.debug 12599OLD_FILES+=usr/tests/lib/libthr/.debug/fork_test.debug 12600OLD_FILES+=usr/tests/lib/libthr/.debug/fpu_test.debug 12601OLD_FILES+=usr/tests/lib/libthr/.debug/h_atexit.debug 12602OLD_FILES+=usr/tests/lib/libthr/.debug/h_cancel.debug 12603OLD_FILES+=usr/tests/lib/libthr/.debug/h_exit.debug 12604OLD_FILES+=usr/tests/lib/libthr/.debug/h_resolv.debug 12605OLD_FILES+=usr/tests/lib/libthr/.debug/join_test.debug 12606OLD_FILES+=usr/tests/lib/libthr/.debug/kill_test.debug 12607OLD_FILES+=usr/tests/lib/libthr/.debug/mutex_test.debug 12608OLD_FILES+=usr/tests/lib/libthr/.debug/once_test.debug 12609OLD_FILES+=usr/tests/lib/libthr/.debug/preempt_test.debug 12610OLD_FILES+=usr/tests/lib/libthr/.debug/rwlock_test.debug 12611OLD_FILES+=usr/tests/lib/libthr/.debug/sem_test.debug 12612OLD_FILES+=usr/tests/lib/libthr/.debug/siglongjmp_test.debug 12613OLD_FILES+=usr/tests/lib/libthr/.debug/sigmask_test.debug 12614OLD_FILES+=usr/tests/lib/libthr/.debug/sigsuspend_test.debug 12615OLD_FILES+=usr/tests/lib/libthr/.debug/sleep_test.debug 12616OLD_FILES+=usr/tests/lib/libthr/.debug/swapcontext_test.debug 12617OLD_DIRS+=usr/tests/lib/libthr/dlopen/.debug 12618OLD_FILES+=usr/tests/lib/libthr/dlopen/.debug/dlopen_test.debug 12619OLD_FILES+=usr/tests/lib/libthr/dlopen/.debug/h_pthread_dlopen.so.1.debug 12620OLD_FILES+=usr/tests/lib/libthr/dlopen/.debug/main_pthread_create_test.debug 12621OLD_DIRS+=usr/tests/lib/libutil/.debug 12622OLD_FILES+=usr/tests/lib/libutil/.debug/flopen_test.debug 12623OLD_FILES+=usr/tests/lib/libutil/.debug/grp_test.debug 12624OLD_FILES+=usr/tests/lib/libutil/.debug/humanize_number_test.debug 12625OLD_FILES+=usr/tests/lib/libutil/.debug/pidfile_test.debug 12626OLD_FILES+=usr/tests/lib/libutil/.debug/trimdomain-nodomain_test.debug 12627OLD_FILES+=usr/tests/lib/libutil/.debug/trimdomain_test.debug 12628OLD_DIRS+=usr/tests/lib/libxo/.debug 12629OLD_FILES+=usr/tests/lib/libxo/.debug/libenc_test.so.debug 12630OLD_FILES+=usr/tests/lib/libxo/.debug/test_01.debug 12631OLD_FILES+=usr/tests/lib/libxo/.debug/test_02.debug 12632OLD_FILES+=usr/tests/lib/libxo/.debug/test_03.debug 12633OLD_FILES+=usr/tests/lib/libxo/.debug/test_04.debug 12634OLD_FILES+=usr/tests/lib/libxo/.debug/test_05.debug 12635OLD_FILES+=usr/tests/lib/libxo/.debug/test_06.debug 12636OLD_FILES+=usr/tests/lib/libxo/.debug/test_07.debug 12637OLD_FILES+=usr/tests/lib/libxo/.debug/test_08.debug 12638OLD_FILES+=usr/tests/lib/libxo/.debug/test_09.debug 12639OLD_FILES+=usr/tests/lib/libxo/.debug/test_10.debug 12640OLD_FILES+=usr/tests/lib/libxo/.debug/test_11.debug 12641OLD_DIRS+=usr/tests/lib/msun/.debug 12642OLD_FILES+=usr/tests/lib/msun/.debug/acos_test.debug 12643OLD_FILES+=usr/tests/lib/msun/.debug/asin_test.debug 12644OLD_FILES+=usr/tests/lib/msun/.debug/atan_test.debug 12645OLD_FILES+=usr/tests/lib/msun/.debug/cbrt_test.debug 12646OLD_FILES+=usr/tests/lib/msun/.debug/ceil_test.debug 12647OLD_FILES+=usr/tests/lib/msun/.debug/cos_test.debug 12648OLD_FILES+=usr/tests/lib/msun/.debug/cosh_test.debug 12649OLD_FILES+=usr/tests/lib/msun/.debug/erf_test.debug 12650OLD_FILES+=usr/tests/lib/msun/.debug/exp_test.debug 12651OLD_FILES+=usr/tests/lib/msun/.debug/fmod_test.debug 12652OLD_FILES+=usr/tests/lib/msun/.debug/infinity_test.debug 12653OLD_FILES+=usr/tests/lib/msun/.debug/ldexp_test.debug 12654OLD_FILES+=usr/tests/lib/msun/.debug/log_test.debug 12655OLD_FILES+=usr/tests/lib/msun/.debug/pow_test.debug 12656OLD_FILES+=usr/tests/lib/msun/.debug/precision_test.debug 12657OLD_FILES+=usr/tests/lib/msun/.debug/round_test.debug 12658OLD_FILES+=usr/tests/lib/msun/.debug/scalbn_test.debug 12659OLD_FILES+=usr/tests/lib/msun/.debug/sin_test.debug 12660OLD_FILES+=usr/tests/lib/msun/.debug/sinh_test.debug 12661OLD_FILES+=usr/tests/lib/msun/.debug/sqrt_test.debug 12662OLD_FILES+=usr/tests/lib/msun/.debug/tan_test.debug 12663OLD_FILES+=usr/tests/lib/msun/.debug/tanh_test.debug 12664OLD_DIRS+=usr/tests/libexec/rtld-elf/.debug 12665OLD_FILES+=usr/tests/libexec/rtld-elf/.debug/ld_library_pathfds.debug 12666OLD_FILES+=usr/tests/libexec/rtld-elf/.debug/libpythagoras.so.0.debug 12667OLD_FILES+=usr/tests/libexec/rtld-elf/.debug/target.debug 12668OLD_DIRS+=usr/tests/sbin/devd/.debug 12669OLD_FILES+=usr/tests/sbin/devd/.debug/client_test.debug 12670OLD_DIRS+=usr/tests/sbin/dhclient/.debug 12671OLD_FILES+=usr/tests/sbin/dhclient/.debug/option-domain-search_test.debug 12672OLD_DIRS+=usr/tests/share/examples/tests/atf/.debug 12673OLD_FILES+=usr/tests/share/examples/tests/atf/.debug/printf_test.debug 12674OLD_DIRS+=usr/tests/share/examples/tests/plain/.debug 12675OLD_FILES+=usr/tests/share/examples/tests/plain/.debug/printf_test.debug 12676OLD_DIRS+=usr/tests/sys/aio/.debug 12677OLD_FILES+=usr/tests/sys/aio/.debug/aio_kqueue_test.debug 12678OLD_FILES+=usr/tests/sys/aio/.debug/aio_test.debug 12679OLD_FILES+=usr/tests/sys/aio/.debug/lio_kqueue_test.debug 12680OLD_DIRS+=usr/tests/sys/fifo/.debug 12681OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_create.debug 12682OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_io.debug 12683OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_misc.debug 12684OLD_FILES+=usr/tests/sys/fifo/.debug/fifo_open.debug 12685OLD_DIRS+=usr/tests/sys/file/.debug 12686OLD_FILES+=usr/tests/sys/file/.debug/closefrom_test.debug 12687OLD_FILES+=usr/tests/sys/file/.debug/dup_test.debug 12688OLD_FILES+=usr/tests/sys/file/.debug/fcntlflags_test.debug 12689OLD_FILES+=usr/tests/sys/file/.debug/flock_helper.debug 12690OLD_FILES+=usr/tests/sys/file/.debug/ftruncate_test.debug 12691OLD_FILES+=usr/tests/sys/file/.debug/newfileops_on_fork_test.debug 12692OLD_DIRS+=usr/tests/sys/kern/.debug 12693OLD_FILES+=usr/tests/sys/kern/.debug/kern_descrip_test.debug 12694OLD_FILES+=usr/tests/sys/kern/.debug/ptrace_test.debug 12695OLD_FILES+=usr/tests/sys/kern/.debug/unix_seqpacket_test.debug 12696OLD_DIRS+=usr/tests/sys/kern/execve/.debug 12697OLD_FILES+=usr/tests/sys/kern/execve/.debug/execve_helper.debug 12698OLD_FILES+=usr/tests/sys/kern/execve/.debug/good_aout.debug 12699OLD_DIRS+=usr/tests/sys/kqueue/.debug 12700OLD_FILES+=usr/tests/sys/kqueue/.debug/kqtest.debug 12701OLD_DIRS+=usr/tests/sys/mqueue/.debug 12702OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest1.debug 12703OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest2.debug 12704OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest3.debug 12705OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest4.debug 12706OLD_FILES+=usr/tests/sys/mqueue/.debug/mqtest5.debug 12707OLD_DIRS+=usr/tests/sys/netinet/.debug 12708OLD_FILES+=usr/tests/sys/netinet/.debug/udp_dontroute.debug 12709OLD_DIRS+=usr/tests/sys/pjdfstest/.debug 12710OLD_FILES+=usr/tests/sys/pjdfstest/.debug/pjdfstest.debug 12711OLD_DIRS+=usr/tests/sys/vm/.debug 12712OLD_FILES+=usr/tests/sys/vm/.debug/mmap_test.debug 12713# 20151015: Rename files due to file-installed-as-dir bug 12714OLD_FILES+=usr/share/doc/legal/realtek 12715OLD_FILES+=usr/share/doc/legal/realtek/LICENSE 12716OLD_DIRS+=usr/share/doc/legal/realtek 12717OLD_DIRS+=usr/share/doc/legal/intel_ipw 12718OLD_FILES+=usr/share/doc/legal/intel_ipw/LICENSE 12719OLD_FILES+=usr/share/doc/legal/intel_iwn 12720OLD_FILES+=usr/share/doc/legal/intel_iwn/LICENSE 12721OLD_DIRS+=usr/share/doc/legal/intel_iwn 12722OLD_DIRS+=usr/share/doc/legal/intel_iwi 12723OLD_FILES+=usr/share/doc/legal/intel_iwi/LICENSE 12724OLD_DIRS+=usr/share/doc/legal/intel_wpi 12725OLD_FILES+=usr/share/doc/legal/intel_wpi/LICENSE 12726# 20151006: new libc++ import 12727OLD_FILES+=usr/include/c++/__tuple_03 12728OLD_FILES+=usr/include/c++/v1/__tuple_03 12729OLD_FILES+=usr/include/c++/v1/tr1/__tuple_03 12730# 20151006: new clang import which bumps version from 3.6.1 to 3.7.0 12731OLD_FILES+=usr/lib/clang/3.6.1/include/__stddef_max_align_t.h 12732OLD_FILES+=usr/lib/clang/3.6.1/include/__wmmintrin_aes.h 12733OLD_FILES+=usr/lib/clang/3.6.1/include/__wmmintrin_pclmul.h 12734OLD_FILES+=usr/lib/clang/3.6.1/include/adxintrin.h 12735OLD_FILES+=usr/lib/clang/3.6.1/include/altivec.h 12736OLD_FILES+=usr/lib/clang/3.6.1/include/ammintrin.h 12737OLD_FILES+=usr/lib/clang/3.6.1/include/arm_acle.h 12738OLD_FILES+=usr/lib/clang/3.6.1/include/arm_neon.h 12739OLD_FILES+=usr/lib/clang/3.6.1/include/avx2intrin.h 12740OLD_FILES+=usr/lib/clang/3.6.1/include/avx512bwintrin.h 12741OLD_FILES+=usr/lib/clang/3.6.1/include/avx512erintrin.h 12742OLD_FILES+=usr/lib/clang/3.6.1/include/avx512fintrin.h 12743OLD_FILES+=usr/lib/clang/3.6.1/include/avx512vlbwintrin.h 12744OLD_FILES+=usr/lib/clang/3.6.1/include/avx512vlintrin.h 12745OLD_FILES+=usr/lib/clang/3.6.1/include/avxintrin.h 12746OLD_FILES+=usr/lib/clang/3.6.1/include/bmi2intrin.h 12747OLD_FILES+=usr/lib/clang/3.6.1/include/bmiintrin.h 12748OLD_FILES+=usr/lib/clang/3.6.1/include/cpuid.h 12749OLD_FILES+=usr/lib/clang/3.6.1/include/emmintrin.h 12750OLD_FILES+=usr/lib/clang/3.6.1/include/f16cintrin.h 12751OLD_FILES+=usr/lib/clang/3.6.1/include/fma4intrin.h 12752OLD_FILES+=usr/lib/clang/3.6.1/include/fmaintrin.h 12753OLD_FILES+=usr/lib/clang/3.6.1/include/ia32intrin.h 12754OLD_FILES+=usr/lib/clang/3.6.1/include/immintrin.h 12755OLD_FILES+=usr/lib/clang/3.6.1/include/lzcntintrin.h 12756OLD_FILES+=usr/lib/clang/3.6.1/include/mm3dnow.h 12757OLD_FILES+=usr/lib/clang/3.6.1/include/mm_malloc.h 12758OLD_FILES+=usr/lib/clang/3.6.1/include/mmintrin.h 12759OLD_FILES+=usr/lib/clang/3.6.1/include/module.modulemap 12760OLD_FILES+=usr/lib/clang/3.6.1/include/nmmintrin.h 12761OLD_FILES+=usr/lib/clang/3.6.1/include/pmmintrin.h 12762OLD_FILES+=usr/lib/clang/3.6.1/include/popcntintrin.h 12763OLD_FILES+=usr/lib/clang/3.6.1/include/prfchwintrin.h 12764OLD_FILES+=usr/lib/clang/3.6.1/include/rdseedintrin.h 12765OLD_FILES+=usr/lib/clang/3.6.1/include/rtmintrin.h 12766OLD_FILES+=usr/lib/clang/3.6.1/include/shaintrin.h 12767OLD_FILES+=usr/lib/clang/3.6.1/include/smmintrin.h 12768OLD_FILES+=usr/lib/clang/3.6.1/include/tbmintrin.h 12769OLD_FILES+=usr/lib/clang/3.6.1/include/tmmintrin.h 12770OLD_FILES+=usr/lib/clang/3.6.1/include/wmmintrin.h 12771OLD_FILES+=usr/lib/clang/3.6.1/include/x86intrin.h 12772OLD_FILES+=usr/lib/clang/3.6.1/include/xmmintrin.h 12773OLD_FILES+=usr/lib/clang/3.6.1/include/xopintrin.h 12774OLD_DIRS+=usr/lib/clang/3.6.1/include 12775OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.asan-i386.a 12776OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.asan-x86_64.a 12777OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 12778OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 12779OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.profile-arm.a 12780OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.profile-i386.a 12781OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.profile-x86_64.a 12782OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.san-i386.a 12783OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.san-x86_64.a 12784OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.ubsan-i386.a 12785OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.ubsan-x86_64.a 12786OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.ubsan_cxx-i386.a 12787OLD_FILES+=usr/lib/clang/3.6.1/lib/freebsd/libclang_rt.ubsan_cxx-x86_64.a 12788OLD_DIRS+=usr/lib/clang/3.6.1/lib/freebsd 12789OLD_DIRS+=usr/lib/clang/3.6.1/lib 12790OLD_DIRS+=usr/lib/clang/3.6.1 12791# 20150928: unused sgsmsg utility is removed 12792OLD_FILES+=usr/bin/sgsmsg 12793# 20150926: remove links to removed/unimplemented mbuf(9) macros 12794OLD_FILES+=usr/share/man/man9/MEXT_ADD_REF.9.gz 12795OLD_FILES+=usr/share/man/man9/MEXTFREE.9.gz 12796OLD_FILES+=usr/share/man/man9/MEXT_IS_REF.9.gz 12797OLD_FILES+=usr/share/man/man9/MEXT_REM_REF.9.gz 12798OLD_FILES+=usr/share/man/man9/MFREE.9.gz 12799# 20150818: *allocm() are gone in jemalloc 4.0.0 12800OLD_FILES+=usr/share/man/man3/allocm.3.gz 12801OLD_FILES+=usr/share/man/man3/dallocm.3.gz 12802OLD_FILES+=usr/share/man/man3/nallocm.3.gz 12803OLD_FILES+=usr/share/man/man3/rallocm.3.gz 12804OLD_FILES+=usr/share/man/man3/sallocm.3.gz 12805# 20150802: Remove netbsd's test on pw(8) 12806OLD_FILES+=usr/tests/usr.sbin/pw/pw_test 12807# 20150719: Remove libarchive.pc 12808OLD_FILES+=usr/libdata/pkgconfig/libarchive.pc 12809# 20150705: Rename DTrace provider man pages 12810OLD_FILES+=usr/share/man/man4/dtrace-io.4.gz 12811OLD_FILES+=usr/share/man/man4/dtrace-ip.4.gz 12812OLD_FILES+=usr/share/man/man4/dtrace-proc.4.gz 12813OLD_FILES+=usr/share/man/man4/dtrace-sched.4.gz 12814OLD_FILES+=usr/share/man/man4/dtrace-tcp.4.gz 12815OLD_FILES+=usr/share/man/man4/dtrace-udp.4.gz 12816# 20150704: nvlist private headers no longer installed 12817OLD_FILES+=usr/include/sys/nv_impl.h 12818OLD_FILES+=usr/include/sys/nvlist_impl.h 12819OLD_FILES+=usr/include/sys/nvpair_impl.h 12820# 20150624 12821OLD_LIBS+=usr/lib/libugidfw.so.4 12822# 20150604: Move nvlist man pages to section 9 12823OLD_FILES+=usr/share/man/man3/libnv.3.gz 12824OLD_FILES+=usr/share/man/man3/nv.3.gz 12825OLD_FILES+=usr/share/man/man3/nvlist.3.gz 12826OLD_FILES+=usr/share/man/man3/nvlist_add_binary.3.gz 12827OLD_FILES+=usr/share/man/man3/nvlist_add_bool.3.gz 12828OLD_FILES+=usr/share/man/man3/nvlist_add_descriptor.3.gz 12829OLD_FILES+=usr/share/man/man3/nvlist_add_null.3.gz 12830OLD_FILES+=usr/share/man/man3/nvlist_add_number.3.gz 12831OLD_FILES+=usr/share/man/man3/nvlist_add_nvlist.3.gz 12832OLD_FILES+=usr/share/man/man3/nvlist_add_string.3.gz 12833OLD_FILES+=usr/share/man/man3/nvlist_add_stringf.3.gz 12834OLD_FILES+=usr/share/man/man3/nvlist_add_stringv.3.gz 12835OLD_FILES+=usr/share/man/man3/nvlist_clone.3.gz 12836OLD_FILES+=usr/share/man/man3/nvlist_create.3.gz 12837OLD_FILES+=usr/share/man/man3/nvlist_destroy.3.gz 12838OLD_FILES+=usr/share/man/man3/nvlist_dump.3.gz 12839OLD_FILES+=usr/share/man/man3/nvlist_empty.3.gz 12840OLD_FILES+=usr/share/man/man3/nvlist_error.3.gz 12841OLD_FILES+=usr/share/man/man3/nvlist_exists.3.gz 12842OLD_FILES+=usr/share/man/man3/nvlist_exists_binary.3.gz 12843OLD_FILES+=usr/share/man/man3/nvlist_exists_bool.3.gz 12844OLD_FILES+=usr/share/man/man3/nvlist_exists_descriptor.3.gz 12845OLD_FILES+=usr/share/man/man3/nvlist_exists_null.3.gz 12846OLD_FILES+=usr/share/man/man3/nvlist_exists_number.3.gz 12847OLD_FILES+=usr/share/man/man3/nvlist_exists_nvlist.3.gz 12848OLD_FILES+=usr/share/man/man3/nvlist_exists_string.3.gz 12849OLD_FILES+=usr/share/man/man3/nvlist_exists_type.3.gz 12850OLD_FILES+=usr/share/man/man3/nvlist_fdump.3.gz 12851OLD_FILES+=usr/share/man/man3/nvlist_flags.3.gz 12852OLD_FILES+=usr/share/man/man3/nvlist_free.3.gz 12853OLD_FILES+=usr/share/man/man3/nvlist_free_binary.3.gz 12854OLD_FILES+=usr/share/man/man3/nvlist_free_bool.3.gz 12855OLD_FILES+=usr/share/man/man3/nvlist_free_descriptor.3.gz 12856OLD_FILES+=usr/share/man/man3/nvlist_free_null.3.gz 12857OLD_FILES+=usr/share/man/man3/nvlist_free_number.3.gz 12858OLD_FILES+=usr/share/man/man3/nvlist_free_nvlist.3.gz 12859OLD_FILES+=usr/share/man/man3/nvlist_free_string.3.gz 12860OLD_FILES+=usr/share/man/man3/nvlist_free_type.3.gz 12861OLD_FILES+=usr/share/man/man3/nvlist_get_binary.3.gz 12862OLD_FILES+=usr/share/man/man3/nvlist_get_bool.3.gz 12863OLD_FILES+=usr/share/man/man3/nvlist_get_descriptor.3.gz 12864OLD_FILES+=usr/share/man/man3/nvlist_get_number.3.gz 12865OLD_FILES+=usr/share/man/man3/nvlist_get_nvlist.3.gz 12866OLD_FILES+=usr/share/man/man3/nvlist_get_parent.3.gz 12867OLD_FILES+=usr/share/man/man3/nvlist_get_string.3.gz 12868OLD_FILES+=usr/share/man/man3/nvlist_move_binary.3.gz 12869OLD_FILES+=usr/share/man/man3/nvlist_move_descriptor.3.gz 12870OLD_FILES+=usr/share/man/man3/nvlist_move_nvlist.3.gz 12871OLD_FILES+=usr/share/man/man3/nvlist_move_string.3.gz 12872OLD_FILES+=usr/share/man/man3/nvlist_next.3.gz 12873OLD_FILES+=usr/share/man/man3/nvlist_pack.3.gz 12874OLD_FILES+=usr/share/man/man3/nvlist_recv.3.gz 12875OLD_FILES+=usr/share/man/man3/nvlist_send.3.gz 12876OLD_FILES+=usr/share/man/man3/nvlist_set_error.3.gz 12877OLD_FILES+=usr/share/man/man3/nvlist_size.3.gz 12878OLD_FILES+=usr/share/man/man3/nvlist_take_binary.3.gz 12879OLD_FILES+=usr/share/man/man3/nvlist_take_bool.3.gz 12880OLD_FILES+=usr/share/man/man3/nvlist_take_descriptor.3.gz 12881OLD_FILES+=usr/share/man/man3/nvlist_take_number.3.gz 12882OLD_FILES+=usr/share/man/man3/nvlist_take_nvlist.3.gz 12883OLD_FILES+=usr/share/man/man3/nvlist_take_string.3.gz 12884OLD_FILES+=usr/share/man/man3/nvlist_unpack.3.gz 12885OLD_FILES+=usr/share/man/man3/nvlist_xfer.3.gz 12886# 20150702: Remove duplicated nvlist includes 12887OLD_FILES+=usr/include/dnv.h 12888OLD_FILES+=usr/include/nv.h 12889# 20150528: PCI IOV device driver methods moved to a separate kobj interface 12890OLD_FILES+=usr/share/man/man9/PCI_ADD_VF.9.gz 12891OLD_FILES+=usr/share/man/man9/PCI_INIT_IOV.9.gz 12892OLD_FILES+=usr/share/man/man9/PCI_UNINIT_IOV.9.gz 12893# 20150525: new clang import which bumps version from 3.6.0 to 3.6.1 12894OLD_FILES+=usr/lib/clang/3.6.0/include/__stddef_max_align_t.h 12895OLD_FILES+=usr/lib/clang/3.6.0/include/__wmmintrin_aes.h 12896OLD_FILES+=usr/lib/clang/3.6.0/include/__wmmintrin_pclmul.h 12897OLD_FILES+=usr/lib/clang/3.6.0/include/adxintrin.h 12898OLD_FILES+=usr/lib/clang/3.6.0/include/altivec.h 12899OLD_FILES+=usr/lib/clang/3.6.0/include/ammintrin.h 12900OLD_FILES+=usr/lib/clang/3.6.0/include/arm_acle.h 12901OLD_FILES+=usr/lib/clang/3.6.0/include/arm_neon.h 12902OLD_FILES+=usr/lib/clang/3.6.0/include/avx2intrin.h 12903OLD_FILES+=usr/lib/clang/3.6.0/include/avx512bwintrin.h 12904OLD_FILES+=usr/lib/clang/3.6.0/include/avx512erintrin.h 12905OLD_FILES+=usr/lib/clang/3.6.0/include/avx512fintrin.h 12906OLD_FILES+=usr/lib/clang/3.6.0/include/avx512vlbwintrin.h 12907OLD_FILES+=usr/lib/clang/3.6.0/include/avx512vlintrin.h 12908OLD_FILES+=usr/lib/clang/3.6.0/include/avxintrin.h 12909OLD_FILES+=usr/lib/clang/3.6.0/include/bmi2intrin.h 12910OLD_FILES+=usr/lib/clang/3.6.0/include/bmiintrin.h 12911OLD_FILES+=usr/lib/clang/3.6.0/include/cpuid.h 12912OLD_FILES+=usr/lib/clang/3.6.0/include/emmintrin.h 12913OLD_FILES+=usr/lib/clang/3.6.0/include/f16cintrin.h 12914OLD_FILES+=usr/lib/clang/3.6.0/include/fma4intrin.h 12915OLD_FILES+=usr/lib/clang/3.6.0/include/fmaintrin.h 12916OLD_FILES+=usr/lib/clang/3.6.0/include/ia32intrin.h 12917OLD_FILES+=usr/lib/clang/3.6.0/include/immintrin.h 12918OLD_FILES+=usr/lib/clang/3.6.0/include/lzcntintrin.h 12919OLD_FILES+=usr/lib/clang/3.6.0/include/mm3dnow.h 12920OLD_FILES+=usr/lib/clang/3.6.0/include/mm_malloc.h 12921OLD_FILES+=usr/lib/clang/3.6.0/include/mmintrin.h 12922OLD_FILES+=usr/lib/clang/3.6.0/include/module.modulemap 12923OLD_FILES+=usr/lib/clang/3.6.0/include/nmmintrin.h 12924OLD_FILES+=usr/lib/clang/3.6.0/include/pmmintrin.h 12925OLD_FILES+=usr/lib/clang/3.6.0/include/popcntintrin.h 12926OLD_FILES+=usr/lib/clang/3.6.0/include/prfchwintrin.h 12927OLD_FILES+=usr/lib/clang/3.6.0/include/rdseedintrin.h 12928OLD_FILES+=usr/lib/clang/3.6.0/include/rtmintrin.h 12929OLD_FILES+=usr/lib/clang/3.6.0/include/shaintrin.h 12930OLD_FILES+=usr/lib/clang/3.6.0/include/smmintrin.h 12931OLD_FILES+=usr/lib/clang/3.6.0/include/tbmintrin.h 12932OLD_FILES+=usr/lib/clang/3.6.0/include/tmmintrin.h 12933OLD_FILES+=usr/lib/clang/3.6.0/include/wmmintrin.h 12934OLD_FILES+=usr/lib/clang/3.6.0/include/x86intrin.h 12935OLD_FILES+=usr/lib/clang/3.6.0/include/xmmintrin.h 12936OLD_FILES+=usr/lib/clang/3.6.0/include/xopintrin.h 12937OLD_DIRS+=usr/lib/clang/3.6.0/include 12938OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan-i386.a 12939OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan-x86_64.a 12940OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 12941OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 12942OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.profile-arm.a 12943OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.profile-i386.a 12944OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.profile-x86_64.a 12945OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.san-i386.a 12946OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.san-x86_64.a 12947OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan-i386.a 12948OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan-x86_64.a 12949OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan_cxx-i386.a 12950OLD_FILES+=usr/lib/clang/3.6.0/lib/freebsd/libclang_rt.ubsan_cxx-x86_64.a 12951OLD_DIRS+=usr/lib/clang/3.6.0/lib/freebsd 12952OLD_DIRS+=usr/lib/clang/3.6.0/lib 12953OLD_DIRS+=usr/lib/clang/3.6.0 12954# 20150521 12955OLD_FILES+=usr/bin/demandoc 12956OLD_FILES+=usr/share/man/man1/demandoc.1.gz 12957OLD_FILES+=usr/share/man/man3/mandoc.3.gz 12958OLD_FILES+=usr/share/man/man3/mandoc_headers.3.gz 12959# 20150520 12960OLD_FILES+=usr/lib/libheimsqlite.a 12961OLD_FILES+=usr/lib/libheimsqlite.so 12962OLD_LIBS+=usr/lib/libheimsqlite.so.11 12963OLD_FILES+=usr/lib/libheimsqlite_p.a 12964# 20150506 12965OLD_FILES+=usr/share/man/man9/NDHASGIANT.9.gz 12966# 20150504 12967OLD_FILES+=usr/share/examples/etc/libmap32.conf 12968OLD_FILES+=usr/include/bsdstat.h 12969OLD_DIRS+=usr/lib32/private 12970OLD_LIBS+=usr/lib/private/libatf-c++.so.2 12971OLD_LIBS+=usr/lib/private/libbsdstat.so.1 12972OLD_LIBS+=usr/lib/private/libheimipcs.so.11 12973OLD_LIBS+=usr/lib/private/libsqlite3.so.0 12974OLD_LIBS+=usr/lib/private/libunbound.so.5 12975OLD_LIBS+=usr/lib/private/libatf-c.so.1 12976OLD_LIBS+=usr/lib/private/libheimipcc.so.11 12977OLD_LIBS+=usr/lib/private/libldns.so.5 12978OLD_LIBS+=usr/lib/private/libssh.so.5 12979OLD_LIBS+=usr/lib/private/libucl.so.1 12980OLD_DIRS+=usr/lib/private 12981# 20150501 12982OLD_FILES+=usr/bin/soeliminate 12983OLD_FILES+=usr/share/man/man1/soeliminate.1.gz 12984# 20150501: Remove the nvlist_.*[vf] functions manpages 12985OLD_FILES+=usr/share/man/man3/nvlist_addf_binary.3.gz 12986OLD_FILES+=usr/share/man/man3/nvlist_addf_bool.3.gz 12987OLD_FILES+=usr/share/man/man3/nvlist_addf_descriptor.3.gz 12988OLD_FILES+=usr/share/man/man3/nvlist_addf_null.3.gz 12989OLD_FILES+=usr/share/man/man3/nvlist_addf_number.3.gz 12990OLD_FILES+=usr/share/man/man3/nvlist_addf_nvlist.3.gz 12991OLD_FILES+=usr/share/man/man3/nvlist_addf_string.3.gz 12992OLD_FILES+=usr/share/man/man3/nvlist_addv_binary.3.gz 12993OLD_FILES+=usr/share/man/man3/nvlist_addv_bool.3.gz 12994OLD_FILES+=usr/share/man/man3/nvlist_addv_descriptor.3.gz 12995OLD_FILES+=usr/share/man/man3/nvlist_addv_null.3.gz 12996OLD_FILES+=usr/share/man/man3/nvlist_addv_number.3.gz 12997OLD_FILES+=usr/share/man/man3/nvlist_addv_nvlist.3.gz 12998OLD_FILES+=usr/share/man/man3/nvlist_addv_string.3.gz 12999OLD_FILES+=usr/share/man/man3/nvlist_existsf.3.gz 13000OLD_FILES+=usr/share/man/man3/nvlist_existsf_binary.3.gz 13001OLD_FILES+=usr/share/man/man3/nvlist_existsf_bool.3.gz 13002OLD_FILES+=usr/share/man/man3/nvlist_existsf_descriptor.3.gz 13003OLD_FILES+=usr/share/man/man3/nvlist_existsf_null.3.gz 13004OLD_FILES+=usr/share/man/man3/nvlist_existsf_number.3.gz 13005OLD_FILES+=usr/share/man/man3/nvlist_existsf_nvlist.3.gz 13006OLD_FILES+=usr/share/man/man3/nvlist_existsf_string.3.gz 13007OLD_FILES+=usr/share/man/man3/nvlist_existsf_type.3.gz 13008OLD_FILES+=usr/share/man/man3/nvlist_existsv.3.gz 13009OLD_FILES+=usr/share/man/man3/nvlist_existsv_binary.3.gz 13010OLD_FILES+=usr/share/man/man3/nvlist_existsv_bool.3.gz 13011OLD_FILES+=usr/share/man/man3/nvlist_existsv_descriptor.3.gz 13012OLD_FILES+=usr/share/man/man3/nvlist_existsv_null.3.gz 13013OLD_FILES+=usr/share/man/man3/nvlist_existsv_number.3.gz 13014OLD_FILES+=usr/share/man/man3/nvlist_existsv_nvlist.3.gz 13015OLD_FILES+=usr/share/man/man3/nvlist_existsv_string.3.gz 13016OLD_FILES+=usr/share/man/man3/nvlist_existsv_type.3.gz 13017OLD_FILES+=usr/share/man/man3/nvlist_freef.3.gz 13018OLD_FILES+=usr/share/man/man3/nvlist_freef_binary.3.gz 13019OLD_FILES+=usr/share/man/man3/nvlist_freef_bool.3.gz 13020OLD_FILES+=usr/share/man/man3/nvlist_freef_descriptor.3.gz 13021OLD_FILES+=usr/share/man/man3/nvlist_freef_null.3.gz 13022OLD_FILES+=usr/share/man/man3/nvlist_freef_number.3.gz 13023OLD_FILES+=usr/share/man/man3/nvlist_freef_nvlist.3.gz 13024OLD_FILES+=usr/share/man/man3/nvlist_freef_string.3.gz 13025OLD_FILES+=usr/share/man/man3/nvlist_freef_type.3.gz 13026OLD_FILES+=usr/share/man/man3/nvlist_freev.3.gz 13027OLD_FILES+=usr/share/man/man3/nvlist_freev_binary.3.gz 13028OLD_FILES+=usr/share/man/man3/nvlist_freev_bool.3.gz 13029OLD_FILES+=usr/share/man/man3/nvlist_freev_descriptor.3.gz 13030OLD_FILES+=usr/share/man/man3/nvlist_freev_null.3.gz 13031OLD_FILES+=usr/share/man/man3/nvlist_freev_number.3.gz 13032OLD_FILES+=usr/share/man/man3/nvlist_freev_nvlist.3.gz 13033OLD_FILES+=usr/share/man/man3/nvlist_freev_string.3.gz 13034OLD_FILES+=usr/share/man/man3/nvlist_freev_type.3.gz 13035OLD_FILES+=usr/share/man/man3/nvlist_getf_binary.3.gz 13036OLD_FILES+=usr/share/man/man3/nvlist_getf_bool.3.gz 13037OLD_FILES+=usr/share/man/man3/nvlist_getf_descriptor.3.gz 13038OLD_FILES+=usr/share/man/man3/nvlist_getf_number.3.gz 13039OLD_FILES+=usr/share/man/man3/nvlist_getf_nvlist.3.gz 13040OLD_FILES+=usr/share/man/man3/nvlist_getf_string.3.gz 13041OLD_FILES+=usr/share/man/man3/nvlist_getv_binary.3.gz 13042OLD_FILES+=usr/share/man/man3/nvlist_getv_bool.3.gz 13043OLD_FILES+=usr/share/man/man3/nvlist_getv_descriptor.3.gz 13044OLD_FILES+=usr/share/man/man3/nvlist_getv_number.3.gz 13045OLD_FILES+=usr/share/man/man3/nvlist_getv_nvlist.3.gz 13046OLD_FILES+=usr/share/man/man3/nvlist_getv_string.3.gz 13047OLD_FILES+=usr/share/man/man3/nvlist_movef_binary.3.gz 13048OLD_FILES+=usr/share/man/man3/nvlist_movef_descriptor.3.gz 13049OLD_FILES+=usr/share/man/man3/nvlist_movef_nvlist.3.gz 13050OLD_FILES+=usr/share/man/man3/nvlist_movef_string.3.gz 13051OLD_FILES+=usr/share/man/man3/nvlist_movev_binary.3.gz 13052OLD_FILES+=usr/share/man/man3/nvlist_movev_descriptor.3.gz 13053OLD_FILES+=usr/share/man/man3/nvlist_movev_nvlist.3.gz 13054OLD_FILES+=usr/share/man/man3/nvlist_movev_string.3.gz 13055OLD_FILES+=usr/share/man/man3/nvlist_takef_binary.3.gz 13056OLD_FILES+=usr/share/man/man3/nvlist_takef_bool.3.gz 13057OLD_FILES+=usr/share/man/man3/nvlist_takef_descriptor.3.gz 13058OLD_FILES+=usr/share/man/man3/nvlist_takef_number.3.gz 13059OLD_FILES+=usr/share/man/man3/nvlist_takef_nvlist.3.gz 13060OLD_FILES+=usr/share/man/man3/nvlist_takef_string.3.gz 13061OLD_FILES+=usr/share/man/man3/nvlist_takev_binary.3.gz 13062OLD_FILES+=usr/share/man/man3/nvlist_takev_bool.3.gz 13063OLD_FILES+=usr/share/man/man3/nvlist_takev_descriptor.3.gz 13064OLD_FILES+=usr/share/man/man3/nvlist_takev_number.3.gz 13065OLD_FILES+=usr/share/man/man3/nvlist_takev_nvlist.3.gz 13066OLD_FILES+=usr/share/man/man3/nvlist_takev_string.3.gz 13067# 20150429: remove never written documentation 13068OLD_FILES+=usr/share/doc/papers/hwpmc.ascii.gz 13069# 20150427: test/sys/kern/mmap_test moved to test/sys/vm/mmap_test 13070OLD_FILES+=usr/tests/sys/kern/mmap_test 13071# 20150422: zlib.c moved from net to libkern 13072OLD_FILES+=usr/include/net/zlib.h 13073OLD_FILES+=usr/include/net/zutil.h 13074# 20150418 13075OLD_FILES+=sbin/mount_oldnfs 13076OLD_FILES+=usr/share/man/man8/mount_oldnfs.8.gz 13077# 20150416: ALTQ moved to net/altq 13078OLD_FILES+=usr/include/altq/altq_rmclass_debug.h 13079OLD_FILES+=usr/include/altq/altq.h 13080OLD_FILES+=usr/include/altq/altq_cdnr.h 13081OLD_FILES+=usr/include/altq/altq_hfsc.h 13082OLD_FILES+=usr/include/altq/altq_priq.h 13083OLD_FILES+=usr/include/altq/altqconf.h 13084OLD_FILES+=usr/include/altq/altq_classq.h 13085OLD_FILES+=usr/include/altq/altq_red.h 13086OLD_FILES+=usr/include/altq/if_altq.h 13087OLD_FILES+=usr/include/altq/altq_var.h 13088OLD_FILES+=usr/include/altq/altq_rmclass.h 13089OLD_FILES+=usr/include/altq/altq_cbq.h 13090OLD_FILES+=usr/include/altq/altq_rio.h 13091OLD_DIRS+=usr/include/altq 13092# 20150330: ntp 4.2.8p1 13093OLD_FILES+=usr/share/doc/ntp/driver1.html 13094OLD_FILES+=usr/share/doc/ntp/driver10.html 13095OLD_FILES+=usr/share/doc/ntp/driver11.html 13096OLD_FILES+=usr/share/doc/ntp/driver12.html 13097OLD_FILES+=usr/share/doc/ntp/driver16.html 13098OLD_FILES+=usr/share/doc/ntp/driver18.html 13099OLD_FILES+=usr/share/doc/ntp/driver19.html 13100OLD_FILES+=usr/share/doc/ntp/driver2.html 13101OLD_FILES+=usr/share/doc/ntp/driver20.html 13102OLD_FILES+=usr/share/doc/ntp/driver22.html 13103OLD_FILES+=usr/share/doc/ntp/driver26.html 13104OLD_FILES+=usr/share/doc/ntp/driver27.html 13105OLD_FILES+=usr/share/doc/ntp/driver28.html 13106OLD_FILES+=usr/share/doc/ntp/driver29.html 13107OLD_FILES+=usr/share/doc/ntp/driver3.html 13108OLD_FILES+=usr/share/doc/ntp/driver30.html 13109OLD_FILES+=usr/share/doc/ntp/driver32.html 13110OLD_FILES+=usr/share/doc/ntp/driver33.html 13111OLD_FILES+=usr/share/doc/ntp/driver34.html 13112OLD_FILES+=usr/share/doc/ntp/driver35.html 13113OLD_FILES+=usr/share/doc/ntp/driver36.html 13114OLD_FILES+=usr/share/doc/ntp/driver37.html 13115OLD_FILES+=usr/share/doc/ntp/driver4.html 13116OLD_FILES+=usr/share/doc/ntp/driver5.html 13117OLD_FILES+=usr/share/doc/ntp/driver6.html 13118OLD_FILES+=usr/share/doc/ntp/driver7.html 13119OLD_FILES+=usr/share/doc/ntp/driver8.html 13120OLD_FILES+=usr/share/doc/ntp/driver9.html 13121OLD_FILES+=usr/share/doc/ntp/ldisc.html 13122OLD_FILES+=usr/share/doc/ntp/measure.html 13123OLD_FILES+=usr/share/doc/ntp/mx4200data.html 13124OLD_FILES+=usr/share/doc/ntp/notes.html 13125OLD_FILES+=usr/share/doc/ntp/patches.html 13126OLD_FILES+=usr/share/doc/ntp/porting.html 13127OLD_FILES+=usr/share/man/man1/sntp.1.gz 13128# 20150329 13129.if ${TARGET_ARCH} == "arm" 13130OLD_FILES+=usr/include/bootconfig.h 13131.endif 13132# 20150326 13133OLD_FILES+=usr/share/man/man1/pmcstudy.1.gz 13134# 20150315: new clang import which bumps version from 3.5.1 to 3.6.0 13135OLD_FILES+=usr/include/clang/3.5.1/__wmmintrin_aes.h 13136OLD_FILES+=usr/include/clang/3.5.1/__wmmintrin_pclmul.h 13137OLD_FILES+=usr/include/clang/3.5.1/altivec.h 13138OLD_FILES+=usr/include/clang/3.5.1/ammintrin.h 13139OLD_FILES+=usr/include/clang/3.5.1/arm_acle.h 13140OLD_FILES+=usr/include/clang/3.5.1/arm_neon.h 13141OLD_FILES+=usr/include/clang/3.5.1/avx2intrin.h 13142OLD_FILES+=usr/include/clang/3.5.1/avxintrin.h 13143OLD_FILES+=usr/include/clang/3.5.1/bmi2intrin.h 13144OLD_FILES+=usr/include/clang/3.5.1/bmiintrin.h 13145OLD_FILES+=usr/include/clang/3.5.1/cpuid.h 13146OLD_FILES+=usr/include/clang/3.5.1/emmintrin.h 13147OLD_FILES+=usr/include/clang/3.5.1/f16cintrin.h 13148OLD_FILES+=usr/include/clang/3.5.1/fma4intrin.h 13149OLD_FILES+=usr/include/clang/3.5.1/fmaintrin.h 13150OLD_FILES+=usr/include/clang/3.5.1/ia32intrin.h 13151OLD_FILES+=usr/include/clang/3.5.1/immintrin.h 13152OLD_FILES+=usr/include/clang/3.5.1/lzcntintrin.h 13153OLD_FILES+=usr/include/clang/3.5.1/mm3dnow.h 13154OLD_FILES+=usr/include/clang/3.5.1/mm_malloc.h 13155OLD_FILES+=usr/include/clang/3.5.1/mmintrin.h 13156OLD_FILES+=usr/include/clang/3.5.1/module.modulemap 13157OLD_FILES+=usr/include/clang/3.5.1/nmmintrin.h 13158OLD_FILES+=usr/include/clang/3.5.1/pmmintrin.h 13159OLD_FILES+=usr/include/clang/3.5.1/popcntintrin.h 13160OLD_FILES+=usr/include/clang/3.5.1/prfchwintrin.h 13161OLD_FILES+=usr/include/clang/3.5.1/rdseedintrin.h 13162OLD_FILES+=usr/include/clang/3.5.1/rtmintrin.h 13163OLD_FILES+=usr/include/clang/3.5.1/shaintrin.h 13164OLD_FILES+=usr/include/clang/3.5.1/smmintrin.h 13165OLD_FILES+=usr/include/clang/3.5.1/tbmintrin.h 13166OLD_FILES+=usr/include/clang/3.5.1/tmmintrin.h 13167OLD_FILES+=usr/include/clang/3.5.1/wmmintrin.h 13168OLD_FILES+=usr/include/clang/3.5.1/x86intrin.h 13169OLD_FILES+=usr/include/clang/3.5.1/xmmintrin.h 13170OLD_FILES+=usr/include/clang/3.5.1/xopintrin.h 13171OLD_DIRS+=usr/include/clang/3.5.1 13172OLD_DIRS+=usr/include/clang 13173OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan-i386.a 13174OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan-x86_64.a 13175OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan_cxx-i386.a 13176OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 13177OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.profile-arm.a 13178OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.profile-i386.a 13179OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.profile-x86_64.a 13180OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.san-i386.a 13181OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.san-x86_64.a 13182OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan-i386.a 13183OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan-x86_64.a 13184OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan_cxx-i386.a 13185OLD_FILES+=usr/lib/clang/3.5.1/lib/freebsd/libclang_rt.ubsan_cxx-x86_64.a 13186OLD_DIRS+=usr/lib/clang/3.5.1/lib/freebsd 13187OLD_DIRS+=usr/lib/clang/3.5.1/lib 13188OLD_DIRS+=usr/lib/clang/3.5.1 13189# 20150302: binutils documentation distributed as a manpage 13190OLD_FILES+=usr/share/doc/binutils/as.txt 13191OLD_FILES+=usr/share/doc/binutils/ld.txt 13192OLD_DIRS+=usr/share/doc/binutils 13193# 20150222: Removed bcd(6) and ppt(6) 13194OLD_FILES+=usr/bin/bcd 13195OLD_FILES+=usr/bin/ppt 13196OLD_FILES+=usr/share/man/man6/bcd.6.gz 13197OLD_FILES+=usr/share/man/man6/ppt.6.gz 13198# 20150217: Removed remnants of ar(4) driver 13199OLD_FILES+=usr/include/dev/ic/hd64570.h 13200# 20150212: /usr/games moving into /usr/bin 13201OLD_FILES+=usr/games/bcd 13202OLD_FILES+=usr/games/caesar 13203OLD_FILES+=usr/games/factor 13204OLD_FILES+=usr/games/fortune 13205OLD_FILES+=usr/games/grdc 13206OLD_FILES+=usr/games/morse 13207OLD_FILES+=usr/games/number 13208OLD_FILES+=usr/games/pom 13209OLD_FILES+=usr/games/ppt 13210OLD_FILES+=usr/games/primes 13211OLD_FILES+=usr/games/random 13212OLD_FILES+=usr/games/rot13 13213OLD_FILES+=usr/games/strfile 13214OLD_FILES+=usr/games/unstr 13215OLD_DIRS+=usr/games 13216# 20150209: liblzma header 13217OLD_FILES+=usr/include/lzma/lzma.h 13218# 20150124: spl.9 and friends 13219OLD_FILES+=usr/share/man/man9/spl.9.gz 13220OLD_FILES+=usr/share/man/man9/spl0.9.gz 13221OLD_FILES+=usr/share/man/man9/splbio.9.gz 13222OLD_FILES+=usr/share/man/man9/splclock.9.gz 13223OLD_FILES+=usr/share/man/man9/splhigh.9.gz 13224OLD_FILES+=usr/share/man/man9/splimp.9.gz 13225OLD_FILES+=usr/share/man/man9/splnet.9.gz 13226OLD_FILES+=usr/share/man/man9/splsoftclock.9.gz 13227OLD_FILES+=usr/share/man/man9/splsofttty.9.gz 13228OLD_FILES+=usr/share/man/man9/splstatclock.9.gz 13229OLD_FILES+=usr/share/man/man9/spltty.9.gz 13230OLD_FILES+=usr/share/man/man9/splvm.9.gz 13231OLD_FILES+=usr/share/man/man9/splx.9.gz 13232# 20150118: toeplitz.c moved from netinet to net 13233OLD_FILES+=usr/include/netinet/toeplitz.h 13234# 20150118: new clang import which bumps version from 3.5.0 to 3.5.1 13235OLD_FILES+=usr/include/clang/3.5.0/__wmmintrin_aes.h 13236OLD_FILES+=usr/include/clang/3.5.0/__wmmintrin_pclmul.h 13237OLD_FILES+=usr/include/clang/3.5.0/altivec.h 13238OLD_FILES+=usr/include/clang/3.5.0/ammintrin.h 13239OLD_FILES+=usr/include/clang/3.5.0/arm_acle.h 13240OLD_FILES+=usr/include/clang/3.5.0/arm_neon.h 13241OLD_FILES+=usr/include/clang/3.5.0/avx2intrin.h 13242OLD_FILES+=usr/include/clang/3.5.0/avxintrin.h 13243OLD_FILES+=usr/include/clang/3.5.0/bmi2intrin.h 13244OLD_FILES+=usr/include/clang/3.5.0/bmiintrin.h 13245OLD_FILES+=usr/include/clang/3.5.0/cpuid.h 13246OLD_FILES+=usr/include/clang/3.5.0/emmintrin.h 13247OLD_FILES+=usr/include/clang/3.5.0/f16cintrin.h 13248OLD_FILES+=usr/include/clang/3.5.0/fma4intrin.h 13249OLD_FILES+=usr/include/clang/3.5.0/fmaintrin.h 13250OLD_FILES+=usr/include/clang/3.5.0/ia32intrin.h 13251OLD_FILES+=usr/include/clang/3.5.0/immintrin.h 13252OLD_FILES+=usr/include/clang/3.5.0/lzcntintrin.h 13253OLD_FILES+=usr/include/clang/3.5.0/mm3dnow.h 13254OLD_FILES+=usr/include/clang/3.5.0/mm_malloc.h 13255OLD_FILES+=usr/include/clang/3.5.0/mmintrin.h 13256OLD_FILES+=usr/include/clang/3.5.0/module.modulemap 13257OLD_FILES+=usr/include/clang/3.5.0/nmmintrin.h 13258OLD_FILES+=usr/include/clang/3.5.0/pmmintrin.h 13259OLD_FILES+=usr/include/clang/3.5.0/popcntintrin.h 13260OLD_FILES+=usr/include/clang/3.5.0/prfchwintrin.h 13261OLD_FILES+=usr/include/clang/3.5.0/rdseedintrin.h 13262OLD_FILES+=usr/include/clang/3.5.0/rtmintrin.h 13263OLD_FILES+=usr/include/clang/3.5.0/shaintrin.h 13264OLD_FILES+=usr/include/clang/3.5.0/smmintrin.h 13265OLD_FILES+=usr/include/clang/3.5.0/tbmintrin.h 13266OLD_FILES+=usr/include/clang/3.5.0/tmmintrin.h 13267OLD_FILES+=usr/include/clang/3.5.0/wmmintrin.h 13268OLD_FILES+=usr/include/clang/3.5.0/x86intrin.h 13269OLD_FILES+=usr/include/clang/3.5.0/xmmintrin.h 13270OLD_FILES+=usr/include/clang/3.5.0/xopintrin.h 13271OLD_DIRS+=usr/include/clang/3.5.0 13272OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.asan-i386.a 13273OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.asan-x86_64.a 13274OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.asan_cxx-i386.a 13275OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.asan_cxx-x86_64.a 13276OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.profile-arm.a 13277OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.profile-i386.a 13278OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.profile-x86_64.a 13279OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.san-i386.a 13280OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.san-x86_64.a 13281OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.ubsan-i386.a 13282OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.ubsan-x86_64.a 13283OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.ubsan_cxx-i386.a 13284OLD_FILES+=usr/lib/clang/3.5.0/lib/freebsd/libclang_rt.ubsan_cxx-x86_64.a 13285OLD_DIRS+=usr/lib/clang/3.5.0/lib/freebsd 13286OLD_DIRS+=usr/lib/clang/3.5.0/lib 13287OLD_DIRS+=usr/lib/clang/3.5.0 13288# 20150102: removal of asr(4) 13289OLD_FILES+=usr/share/man/man4/asr.4.gz 13290# 20150102: removal of texinfo 13291OLD_FILES+=usr/bin/info 13292OLD_FILES+=usr/bin/infokey 13293OLD_FILES+=usr/bin/install-info 13294OLD_FILES+=usr/bin/makeinfo 13295OLD_FILES+=usr/bin/texindex 13296OLD_FILES+=usr/share/info/am-utils.info.gz 13297OLD_FILES+=usr/share/info/as.info.gz 13298OLD_FILES+=usr/share/info/binutils.info.gz 13299OLD_FILES+=usr/share/info/com_err.info.gz 13300OLD_FILES+=usr/share/info/cpp.info.gz 13301OLD_FILES+=usr/share/info/cppinternals.info.gz 13302OLD_FILES+=usr/share/info/diff.info.gz 13303OLD_FILES+=usr/share/info/dir 13304OLD_FILES+=usr/share/info/gcc.info.gz 13305OLD_FILES+=usr/share/info/gccint.info.gz 13306OLD_FILES+=usr/share/info/gdb.info.gz 13307OLD_FILES+=usr/share/info/gdbint.info.gz 13308OLD_FILES+=usr/share/info/gperf.info.gz 13309OLD_FILES+=usr/share/info/grep.info.gz 13310OLD_FILES+=usr/share/info/groff.info.gz 13311OLD_FILES+=usr/share/info/heimdal.info.gz 13312OLD_FILES+=usr/share/info/history.info.gz 13313OLD_FILES+=usr/share/info/info-stnd.info.gz 13314OLD_FILES+=usr/share/info/info.info.gz 13315OLD_FILES+=usr/share/info/ld.info.gz 13316OLD_FILES+=usr/share/info/regex.info.gz 13317OLD_FILES+=usr/share/info/rluserman.info.gz 13318OLD_FILES+=usr/share/info/stabs.info.gz 13319OLD_FILES+=usr/share/info/texinfo.info.gz 13320OLD_FILES+=usr/share/man/man1/info.1.gz 13321OLD_FILES+=usr/share/man/man1/infokey.1.gz 13322OLD_FILES+=usr/share/man/man1/install-info.1.gz 13323OLD_FILES+=usr/share/man/man1/makeinfo.1.gz 13324OLD_FILES+=usr/share/man/man1/texindex.1.gz 13325OLD_FILES+=usr/share/man/man5/info.5.gz 13326OLD_FILES+=usr/share/man/man5/texinfo.5.gz 13327OLD_DIRS+=usr/share/info 13328# 20141231: new clang import which bumps version from 3.4.1 to 3.5.0 13329OLD_FILES+=usr/include/clang/3.4.1/__wmmintrin_aes.h 13330OLD_FILES+=usr/include/clang/3.4.1/__wmmintrin_pclmul.h 13331OLD_FILES+=usr/include/clang/3.4.1/altivec.h 13332OLD_FILES+=usr/include/clang/3.4.1/ammintrin.h 13333OLD_FILES+=usr/include/clang/3.4.1/arm_neon.h 13334OLD_FILES+=usr/include/clang/3.4.1/avx2intrin.h 13335OLD_FILES+=usr/include/clang/3.4.1/avxintrin.h 13336OLD_FILES+=usr/include/clang/3.4.1/bmi2intrin.h 13337OLD_FILES+=usr/include/clang/3.4.1/bmiintrin.h 13338OLD_FILES+=usr/include/clang/3.4.1/cpuid.h 13339OLD_FILES+=usr/include/clang/3.4.1/emmintrin.h 13340OLD_FILES+=usr/include/clang/3.4.1/f16cintrin.h 13341OLD_FILES+=usr/include/clang/3.4.1/fma4intrin.h 13342OLD_FILES+=usr/include/clang/3.4.1/fmaintrin.h 13343OLD_FILES+=usr/include/clang/3.4.1/immintrin.h 13344OLD_FILES+=usr/include/clang/3.4.1/lzcntintrin.h 13345OLD_FILES+=usr/include/clang/3.4.1/mm3dnow.h 13346OLD_FILES+=usr/include/clang/3.4.1/mm_malloc.h 13347OLD_FILES+=usr/include/clang/3.4.1/mmintrin.h 13348OLD_FILES+=usr/include/clang/3.4.1/module.map 13349OLD_FILES+=usr/include/clang/3.4.1/nmmintrin.h 13350OLD_FILES+=usr/include/clang/3.4.1/pmmintrin.h 13351OLD_FILES+=usr/include/clang/3.4.1/popcntintrin.h 13352OLD_FILES+=usr/include/clang/3.4.1/prfchwintrin.h 13353OLD_FILES+=usr/include/clang/3.4.1/rdseedintrin.h 13354OLD_FILES+=usr/include/clang/3.4.1/rtmintrin.h 13355OLD_FILES+=usr/include/clang/3.4.1/shaintrin.h 13356OLD_FILES+=usr/include/clang/3.4.1/smmintrin.h 13357OLD_FILES+=usr/include/clang/3.4.1/tbmintrin.h 13358OLD_FILES+=usr/include/clang/3.4.1/tmmintrin.h 13359OLD_FILES+=usr/include/clang/3.4.1/wmmintrin.h 13360OLD_FILES+=usr/include/clang/3.4.1/x86intrin.h 13361OLD_FILES+=usr/include/clang/3.4.1/xmmintrin.h 13362OLD_FILES+=usr/include/clang/3.4.1/xopintrin.h 13363OLD_DIRS+=usr/include/clang/3.4.1 13364# 20141225: Remove gpib/ieee488 13365OLD_FILES+=usr/include/dev/ieee488/ibfoo_int.h 13366OLD_FILES+=usr/include/dev/ieee488/tnt4882.h 13367OLD_FILES+=usr/include/dev/ieee488/ugpib.h 13368OLD_FILES+=usr/include/dev/ieee488/upd7210.h 13369OLD_DIRS+=usr/include/dev/ieee488 13370OLD_FILES+=usr/include/gpib/gpib.h 13371OLD_DIRS+=usr/include/gpib 13372OLD_FILES+=usr/lib/libgpib.a 13373OLD_FILES+=usr/lib/libgpib_p.a 13374OLD_FILES+=usr/lib/libgpib.so 13375OLD_LIBS+=usr/lib/libgpib.so.3 13376OLD_FILES+=usr/share/man/man3/gpib.3.gz 13377OLD_FILES+=usr/share/man/man3/ibclr.3.gz 13378OLD_FILES+=usr/share/man/man3/ibdev.3.gz 13379OLD_FILES+=usr/share/man/man3/ibdma.3.gz 13380OLD_FILES+=usr/share/man/man3/ibeos.3.gz 13381OLD_FILES+=usr/share/man/man3/ibeot.3.gz 13382OLD_FILES+=usr/share/man/man3/ibloc.3.gz 13383OLD_FILES+=usr/share/man/man3/ibonl.3.gz 13384OLD_FILES+=usr/share/man/man3/ibpad.3.gz 13385OLD_FILES+=usr/share/man/man3/ibrd.3.gz 13386OLD_FILES+=usr/share/man/man3/ibsad.3.gz 13387OLD_FILES+=usr/share/man/man3/ibsic.3.gz 13388OLD_FILES+=usr/share/man/man3/ibtmo.3.gz 13389OLD_FILES+=usr/share/man/man3/ibtrg.3.gz 13390OLD_FILES+=usr/share/man/man3/ibwrt.3.gz 13391OLD_FILES+=usr/share/man/man4/gpib.4.gz 13392OLD_FILES+=usr/share/man/man4/pcii.4.gz 13393OLD_FILES+=usr/share/man/man4/tnt4882.4.gz 13394# 20141224: libxo moved to /lib 13395MOVED_LIBS+=usr/lib/libxo.so.0 13396# 20141223: remove in6_gif.h and in_gif.h 13397OLD_FILES+=usr/include/netinet/in_gif.h 13398OLD_FILES+=usr/include/netinet6/in6_gif.h 13399# 20141209: pw tests broken into a file per command 13400OLD_FILES+=usr/tests/usr.sbin/pw/pw_delete 13401OLD_FILES+=usr/tests/usr.sbin/pw/pw_modify 13402# 20141202: update to mandoc CVS 20141201 13403OLD_FILES+=usr.bin/preconv 13404OLD_FILES+=usr/share/man/man1/preconv.1.gz 13405# 20141129: mrouted rc.d scripts removed from base 13406OLD_FILES+=etc/rc.d/mrouted 13407# 20141126: convert sbin/mdconfig/tests to ATF format tests 13408OLD_FILES+=usr/tests/sbin/mdconfig/legacy_test 13409OLD_FILES+=usr/tests/sbin/mdconfig/mdconfig.test 13410OLD_FILES+=usr/tests/sbin/mdconfig/run.pl 13411# 20141126: remove xform_ipip decapsulation fallback 13412OLD_FILES+=usr/include/netipsec/ipip_var.h 13413# 20141122: mandoc updated to 1.13.1 13414OLD_FILES+=usr/share/mdocml/external.png 13415# 20141111: SF_KQUEUE code removed 13416OLD_FILES+=usr/include/sys/sf_base.h 13417OLD_FILES+=usr/include/sys/sf_sync.h 13418# 20141109: faith/faithd removal 13419OLD_FILES+=etc/rc.d/faith 13420OLD_FILES+=usr/share/man/man4/faith.4.gz 13421OLD_FILES+=usr/share/man/man4/if_faith.4.gz 13422OLD_FILES+=usr/sbin/faithd 13423OLD_FILES+=usr/share/man/man8/faithd.8.gz 13424# 20141107: overhaul if_gre(4) 13425OLD_FILES+=usr/include/netinet/ip_gre.h 13426# 20141102: postrandom obsoleted by new /dev/random code 13427OLD_FILES+=etc/rc.d/postrandom 13428# 20141031: initrandom obsoleted by new /dev/random code 13429OLD_FILES+=etc/rc.d/initrandom 13430# 20141030: atf 0.21 import 13431OLD_FILES+=usr/share/man/man3/atf-c++-api.3.gz 13432# 20141028: debug files accidentally installed as directory name 13433OLD_FILES+=usr/lib/debug/usr/lib/i18n 13434OLD_FILES+=usr/lib/debug/usr/lib/private 13435OLD_FILES+=usr/lib/debug/usr/lib32/i18n 13436OLD_FILES+=usr/lib/debug/usr/lib32/private 13437# 20141015: OpenSSL 1.0.1j import 13438OLD_FILES+=usr/share/openssl/man/man3/CMS_sign_add1_signer.3.gz 13439# 20141003: libproc version bump 13440OLD_LIBS+=usr/lib/libproc.so.2 13441# 20140922: sleepq_calc_signal_retval.9 and sleepq_catch_signals.9 removed 13442OLD_FILES+=usr/share/man/man9/sleepq_calc_signal_retval.9.gz 13443OLD_FILES+=usr/share/man/man9/sleepq_catch_signals.9.gz 13444# 20140917: hv_kvpd rc.d script removed in favor of devd configuration 13445OLD_FILES+=etc/rc.d/hv_kvpd 13446# 20140917: libnv was accidentally being installed to /usr/lib instead of /lib 13447MOVED_LIBS+=usr/lib/libnv.so.0 13448# 20140829: rc.d/kerberos removed 13449OLD_FILES+=etc/rc.d/kerberos 13450# 20140814: libopie version bump 13451OLD_LIBS+=usr/lib/libopie.so.7 13452# 20140811: otp-sha renamed to otp-sha1 13453OLD_FILES+=usr/bin/otp-sha 13454OLD_FILES+=usr/share/man/man1/otp-sha.1.gz 13455# 20140807: Remove private lib files that should not be installed 13456OLD_FILES+=usr/lib/private/libatf-c.a 13457OLD_FILES+=usr/lib/private/libatf-c.so 13458OLD_FILES+=usr/lib/private/libatf-c_p.a 13459OLD_FILES+=usr/lib/private/libatf-c++.a 13460OLD_FILES+=usr/lib/private/libatf-c++.so 13461OLD_FILES+=usr/lib/private/libatf-c++_p.a 13462OLD_FILES+=usr/lib/private/libbsdstat.a 13463OLD_FILES+=usr/lib/private/libbsdstat.so 13464OLD_FILES+=usr/lib/private/libbsdstat_p.a 13465OLD_FILES+=usr/lib/private/libheimipcc.a 13466OLD_FILES+=usr/lib/private/libheimipcc.so 13467OLD_FILES+=usr/lib/private/libheimipcc_p.a 13468OLD_FILES+=usr/lib/private/libheimipcs.a 13469OLD_FILES+=usr/lib/private/libheimipcs.so 13470OLD_FILES+=usr/lib/private/libheimipcs_p.a 13471OLD_FILES+=usr/lib/private/libldns.a 13472OLD_FILES+=usr/lib/private/libldns.so 13473OLD_FILES+=usr/lib/private/libldns_p.a 13474OLD_FILES+=usr/lib/private/libssh.a 13475OLD_FILES+=usr/lib/private/libssh.so 13476OLD_FILES+=usr/lib/private/libssh_p.a 13477OLD_FILES+=usr/lib/private/libunbound.a 13478OLD_FILES+=usr/lib/private/libunbound.so 13479OLD_FILES+=usr/lib/private/libunbound_p.a 13480OLD_FILES+=usr/lib/private/libucl.a 13481OLD_FILES+=usr/lib/private/libucl.so 13482OLD_FILES+=usr/lib/private/libucl_p.a 13483# 20140803: Remove an obsolete man page 13484OLD_FILES+=usr/share/man/man9/pmap_change_wiring.9.gz 13485# 20140731 13486OLD_FILES+=usr/share/man/man9/SYSCTL_ADD_OID.9.gz 13487# 20140728: libsbuf restored to old version 13488OLD_LIBS+=lib/libsbuf.so.7 13489# 20140728: Remove an obsolete man page 13490OLD_FILES+=usr/share/man/man9/VOP_GETVOBJECT.9.gz 13491OLD_FILES+=usr/share/man/man9/VOP_CREATEVOBJECT.9.gz 13492OLD_FILES+=usr/share/man/man9/VOP_DESTROYVOBJECT.9.gz 13493# 20140723: renamed to PCBGROUP.9 13494OLD_FILES+=usr/share/man/man9/PCBGROUPS.9.gz 13495# 20140722: browse_packages_ftp.sh removed 13496OLD_FILES+=usr/share/examples/bsdconfig/browse_packages_ftp.sh 13497# 20140718: Remove obsolete man pages 13498OLD_FILES+=usr/share/man/man9/zero_copy.9.gz 13499OLD_FILES+=usr/share/man/man9/zero_copy_sockets.9.gz 13500# 20140718: Remove an obsolete man page 13501OLD_FILES+=usr/share/man/man9/pmap_page_protect.9.gz 13502# 20140717: Remove an obsolete man page 13503OLD_FILES+=usr/share/man/man9/pmap_clear_reference.9.gz 13504# 20140716: Remove an incorrectly named man page 13505OLD_FILES+=usr/share/man/man9/pmap_ts_modified.9.gz 13506# 20140712: Removal of bsd.dtrace.mk 13507OLD_FILES+=usr/share/mk/bsd.dtrace.mk 13508# 20140705: turn libreadline into an internal lib 13509OLD_LIBS+=lib/libreadline.so.8 13510OLD_FILES+=usr/lib/libreadline.a 13511OLD_FILES+=usr/lib/libreadline_p.a 13512OLD_FILES+=usr/lib/libreadline.so 13513OLD_FILES+=usr/lib/libhistory.a 13514OLD_FILES+=usr/lib/libhistory_p.a 13515OLD_FILES+=usr/lib/libhistory.so 13516OLD_LIBS+=usr/lib/libhistory.so.8 13517OLD_FILES+=usr/include/readline/chardefs.h 13518OLD_FILES+=usr/include/readline/history.h 13519OLD_FILES+=usr/include/readline/keymaps.h 13520OLD_FILES+=usr/include/readline/readline.h 13521OLD_FILES+=usr/include/readline/tilde.h 13522OLD_FILES+=usr/include/readline/rlconf.h 13523OLD_FILES+=usr/include/readline/rlstdc.h 13524OLD_FILES+=usr/include/readline/rltypedefs.h 13525OLD_FILES+=usr/include/readline/rltypedefs.h 13526OLD_DIRS+=usr/include/readline 13527OLD_FILES+=usr/share/info/readline.info.gz 13528OLD_FILES+=usr/share/man/man3/readline.3.gz 13529OLD_FILES+=usr/share/man/man3/rlhistory.3.gz 13530# 20140625: csup removal 13531OLD_FILES+=usr/bin/csup 13532OLD_FILES+=usr/bin/cpasswd 13533OLD_FILES+=usr/share/man/man1/csup.1.gz 13534OLD_FILES+=usr/share/man/man1/cpasswd.1.gz 13535OLD_FILES+=usr/share/examples/cvsup/README 13536OLD_FILES+=usr/share/examples/cvsup/cvs-supfile 13537OLD_FILES+=usr/share/examples/cvsup/stable-supfile 13538OLD_FILES+=usr/share/examples/cvsup/standard-supfile 13539OLD_DIRS+=usr/share/examples/cvsup 13540# 20140614: send-pr removal 13541OLD_FILES+=usr/bin/sendbug 13542OLD_FILES+=usr/share/info/send-pr.info.gz 13543OLD_FILES+=usr/share/man/man1/send-pr.1.gz 13544OLD_FILES+=usr/share/man/man1/sendbug.1.gz 13545OLD_FILES+=etc/gnats/freefall 13546OLD_DIRS+=etc/gnats 13547# 20140512: new clang import which bumps version from 3.4 to 3.4.1 13548OLD_FILES+=usr/include/clang/3.4/__wmmintrin_aes.h 13549OLD_FILES+=usr/include/clang/3.4/__wmmintrin_pclmul.h 13550OLD_FILES+=usr/include/clang/3.4/altivec.h 13551OLD_FILES+=usr/include/clang/3.4/ammintrin.h 13552OLD_FILES+=usr/include/clang/3.4/avx2intrin.h 13553OLD_FILES+=usr/include/clang/3.4/avxintrin.h 13554OLD_FILES+=usr/include/clang/3.4/bmi2intrin.h 13555OLD_FILES+=usr/include/clang/3.4/bmiintrin.h 13556OLD_FILES+=usr/include/clang/3.4/cpuid.h 13557OLD_FILES+=usr/include/clang/3.4/emmintrin.h 13558OLD_FILES+=usr/include/clang/3.4/f16cintrin.h 13559OLD_FILES+=usr/include/clang/3.4/fma4intrin.h 13560OLD_FILES+=usr/include/clang/3.4/fmaintrin.h 13561OLD_FILES+=usr/include/clang/3.4/immintrin.h 13562OLD_FILES+=usr/include/clang/3.4/lzcntintrin.h 13563OLD_FILES+=usr/include/clang/3.4/mm3dnow.h 13564OLD_FILES+=usr/include/clang/3.4/mm_malloc.h 13565OLD_FILES+=usr/include/clang/3.4/mmintrin.h 13566OLD_FILES+=usr/include/clang/3.4/module.map 13567OLD_FILES+=usr/include/clang/3.4/nmmintrin.h 13568OLD_FILES+=usr/include/clang/3.4/pmmintrin.h 13569OLD_FILES+=usr/include/clang/3.4/popcntintrin.h 13570OLD_FILES+=usr/include/clang/3.4/prfchwintrin.h 13571OLD_FILES+=usr/include/clang/3.4/rdseedintrin.h 13572OLD_FILES+=usr/include/clang/3.4/rtmintrin.h 13573OLD_FILES+=usr/include/clang/3.4/shaintrin.h 13574OLD_FILES+=usr/include/clang/3.4/smmintrin.h 13575OLD_FILES+=usr/include/clang/3.4/tbmintrin.h 13576OLD_FILES+=usr/include/clang/3.4/tmmintrin.h 13577OLD_FILES+=usr/include/clang/3.4/wmmintrin.h 13578OLD_FILES+=usr/include/clang/3.4/x86intrin.h 13579OLD_FILES+=usr/include/clang/3.4/xmmintrin.h 13580OLD_FILES+=usr/include/clang/3.4/xopintrin.h 13581OLD_FILES+=usr/include/clang/3.4/arm_neon.h 13582OLD_FILES+=usr/include/clang/3.4/module.map 13583OLD_DIRS+=usr/include/clang/3.4 13584# 20140505: Bogusly installing src.opts.mk 13585OLD_FILES+=usr/share/mk/src.opts.mk 13586# 20140505: Reject PR kern/187551 13587OLD_FILES+=usr/tests/sbin/ifconfig/fibs_test 13588# 20140502: Removal of lindev(4) 13589OLD_FILES+=usr/share/man/man4/lindev.4.gz 13590# 20140425 13591OLD_FILES+=usr/lib/libssp_p.a 13592OLD_FILES+=usr/lib/libstand_p.a 13593# 20140413: Removed NO_MANCOMPRESS from mount_fusefs 13594OLD_FILES+=usr/share/man/man8/mount_fusefs.8 13595# 20140314: AppleTalk 13596OLD_DIRS+=usr/include/netatalk 13597OLD_FILES+=usr/include/netatalk/aarp.h 13598OLD_FILES+=usr/include/netatalk/at.h 13599OLD_FILES+=usr/include/netatalk/at_extern.h 13600OLD_FILES+=usr/include/netatalk/at_var.h 13601OLD_FILES+=usr/include/netatalk/ddp.h 13602OLD_FILES+=usr/include/netatalk/ddp_pcb.h 13603OLD_FILES+=usr/include/netatalk/ddp_var.h 13604OLD_FILES+=usr/include/netatalk/endian.h 13605OLD_FILES+=usr/include/netatalk/phase2.h 13606# 20140314: Remove IPX/SPX 13607OLD_LIBS+=lib/libipx.so.5 13608OLD_FILES+=usr/include/netipx/ipx.h 13609OLD_FILES+=usr/include/netipx/ipx_if.h 13610OLD_FILES+=usr/include/netipx/ipx_pcb.h 13611OLD_FILES+=usr/include/netipx/ipx_var.h 13612OLD_FILES+=usr/include/netipx/spx.h 13613OLD_FILES+=usr/include/netipx/spx_debug.h 13614OLD_FILES+=usr/include/netipx/spx_timer.h 13615OLD_FILES+=usr/include/netipx/spx_var.h 13616OLD_DIRS+=usr/include/netipx 13617OLD_FILES+=usr/lib/libipx.a 13618OLD_FILES+=usr/lib/libipx.so 13619OLD_FILES+=usr/lib/libipx_p.a 13620OLD_FILES+=usr/sbin/IPXrouted 13621OLD_FILES+=usr/share/man/man3/ipx.3.gz 13622OLD_FILES+=usr/share/man/man3/ipx_addr.3.gz 13623OLD_FILES+=usr/share/man/man3/ipx_ntoa.3.gz 13624OLD_FILES+=usr/share/man/man4/ef.4.gz 13625OLD_FILES+=usr/share/man/man4/if_ef.4.gz 13626OLD_FILES+=usr/share/man/man8/IPXrouted.8.gz 13627# 20140314: bsdconfig usermgmt rewrite 13628OLD_FILES+=usr/libexec/bsdconfig/070.usermgmt/userinput 13629# 20140307: bsdconfig groupmgmt rewrite 13630OLD_FILES+=usr/libexec/bsdconfig/070.usermgmt/groupinput 13631# 20140223: Remove libyaml 13632OLD_FILES+=usr/lib/private/libyaml.a 13633OLD_FILES+=usr/lib/private/libyaml.so 13634OLD_LIBS+=usr/lib/private/libyaml.so.1 13635OLD_FILES+=usr/lib/private/libyaml_p.a 13636# 20140216: new clang import which bumps version from 3.3 to 3.4 13637OLD_FILES+=usr/bin/llvm-prof 13638OLD_FILES+=usr/include/clang/3.3/__wmmintrin_aes.h 13639OLD_FILES+=usr/include/clang/3.3/__wmmintrin_pclmul.h 13640OLD_FILES+=usr/include/clang/3.3/altivec.h 13641OLD_FILES+=usr/include/clang/3.3/ammintrin.h 13642OLD_FILES+=usr/include/clang/3.3/avx2intrin.h 13643OLD_FILES+=usr/include/clang/3.3/avxintrin.h 13644OLD_FILES+=usr/include/clang/3.3/bmi2intrin.h 13645OLD_FILES+=usr/include/clang/3.3/bmiintrin.h 13646OLD_FILES+=usr/include/clang/3.3/cpuid.h 13647OLD_FILES+=usr/include/clang/3.3/emmintrin.h 13648OLD_FILES+=usr/include/clang/3.3/f16cintrin.h 13649OLD_FILES+=usr/include/clang/3.3/fma4intrin.h 13650OLD_FILES+=usr/include/clang/3.3/fmaintrin.h 13651OLD_FILES+=usr/include/clang/3.3/immintrin.h 13652OLD_FILES+=usr/include/clang/3.3/lzcntintrin.h 13653OLD_FILES+=usr/include/clang/3.3/mm3dnow.h 13654OLD_FILES+=usr/include/clang/3.3/mm_malloc.h 13655OLD_FILES+=usr/include/clang/3.3/mmintrin.h 13656OLD_FILES+=usr/include/clang/3.3/module.map 13657OLD_FILES+=usr/include/clang/3.3/nmmintrin.h 13658OLD_FILES+=usr/include/clang/3.3/pmmintrin.h 13659OLD_FILES+=usr/include/clang/3.3/popcntintrin.h 13660OLD_FILES+=usr/include/clang/3.3/prfchwintrin.h 13661OLD_FILES+=usr/include/clang/3.3/rdseedintrin.h 13662OLD_FILES+=usr/include/clang/3.3/rtmintrin.h 13663OLD_FILES+=usr/include/clang/3.3/smmintrin.h 13664OLD_FILES+=usr/include/clang/3.3/tmmintrin.h 13665OLD_FILES+=usr/include/clang/3.3/wmmintrin.h 13666OLD_FILES+=usr/include/clang/3.3/x86intrin.h 13667OLD_FILES+=usr/include/clang/3.3/xmmintrin.h 13668OLD_FILES+=usr/include/clang/3.3/xopintrin.h 13669OLD_FILES+=usr/share/man/man1/llvm-prof.1.gz 13670OLD_DIRS+=usr/include/clang/3.3 13671# 20140216: nve(4) removed 13672OLD_FILES+=usr/share/man/man4/if_nve.4.gz 13673OLD_FILES+=usr/share/man/man4/nve.4.gz 13674# 20140205: Open Firmware device moved 13675OLD_FILES+=usr/include/dev/ofw/ofw_nexus.h 13676# 20140128: libelf and libdwarf import 13677OLD_LIBS+=usr/lib/libelf.so.1 13678OLD_LIBS+=usr/lib/libdwarf.so.3 13679# 20140123: apicvar header moved to x86 13680OLD_FILES+=usr/include/machine/apicvar.h 13681# 20131215: libcam version bumped 13682OLD_LIBS+=lib/libcam.so.6 13683# 20131202: libcapsicum and libcasper moved to /lib/ 13684MOVED_LIBS+=usr/lib/libcapsicum.so.0 13685MOVED_LIBS+=usr/lib/libcasper.so.0 13686# 20131109: extattr(2) mlinks fixed 13687OLD_FILES+=usr/share/man/man2/extattr_delete_list.2.gz 13688OLD_FILES+=usr/share/man/man2/extattr_get_list.2.gz 13689# 20131107: example files removed 13690OLD_FILES+=usr/share/examples/libusb20/aux.c 13691OLD_FILES+=usr/share/examples/libusb20/aux.h 13692# 20131103: WITH_LIBICONV_COMPAT removal 13693OLD_FILES+=usr/include/_libiconv_compat.h 13694OLD_FILES+=usr/lib/libiconv.a 13695OLD_FILES+=usr/lib/libiconv.so 13696OLD_LIBS+=usr/lib/libiconv.so.3 13697OLD_FILES+=usr/lib/libiconv_p.a 13698# 20131103: removal of utxrm(8), use 'utx rm' instead 13699OLD_FILES+=usr/sbin/utxrm 13700OLD_FILES+=usr/share/man/man8/utxrm.8.gz 13701# 20131031: pkg_install has been removed 13702OLD_FILES+=etc/periodic/daily/220.backup-pkgdb 13703OLD_FILES+=etc/periodic/daily/490.status-pkg-changes 13704OLD_FILES+=etc/periodic/security/460.chkportsum 13705OLD_FILES+=etc/periodic/weekly/400.status-pkg 13706OLD_FILES+=usr/sbin/pkg_add 13707OLD_FILES+=usr/sbin/pkg_create 13708OLD_FILES+=usr/sbin/pkg_delete 13709OLD_FILES+=usr/sbin/pkg_info 13710OLD_FILES+=usr/sbin/pkg_updating 13711OLD_FILES+=usr/sbin/pkg_version 13712OLD_FILES+=usr/share/man/man1/pkg_add.1.gz 13713OLD_FILES+=usr/share/man/man1/pkg_create.1.gz 13714OLD_FILES+=usr/share/man/man1/pkg_delete.1.gz 13715OLD_FILES+=usr/share/man/man1/pkg_info.1.gz 13716OLD_FILES+=usr/share/man/man1/pkg_updating.1.gz 13717OLD_FILES+=usr/share/man/man1/pkg_version.1.gz 13718# 20131030: /etc/keys moved to /usr/share/keys 13719OLD_DIRS+=etc/keys 13720OLD_DIRS+=etc/keys/pkg 13721OLD_DIRS+=etc/keys/pkg/revoked 13722OLD_DIRS+=etc/keys/pkg/trusted 13723OLD_FILES+=etc/keys/pkg/trusted/pkg.freebsd.org.2013102301 13724# 20131028: ng_fec(4) removed 13725OLD_FILES+=usr/include/netgraph/ng_fec.h 13726OLD_FILES+=usr/share/man/man4/ng_fec.4.gz 13727# 20131027: header moved 13728OLD_FILES+=usr/include/net/pf_mtag.h 13729# 20131023: remove never used iscsi directory 13730OLD_DIRS+=usr/share/examples/iscsi 13731# 20131021: isf(4) removed 13732OLD_FILES+=usr/sbin/isfctl 13733OLD_FILES+=usr/share/man/man4/isf.4.gz 13734OLD_FILES+=usr/share/man/man8/isfctl.8.gz 13735# 20131014: libbsdyml becomes private 13736OLD_FILES+=usr/lib/libbsdyml.a 13737OLD_FILES+=usr/lib/libbsdyml.so 13738OLD_LIBS+=usr/lib/libbsdyml.so.0 13739OLD_FILES+=usr/lib/libbsdyml_p.a 13740OLD_FILES+=usr/share/man/man3/libbsdyml.3.gz 13741OLD_FILES+=usr/include/bsdyml.h 13742# 20131013: Removal of the ATF tools 13743OLD_FILES+=etc/atf/FreeBSD.conf 13744OLD_FILES+=etc/atf/atf-run.hooks 13745OLD_FILES+=etc/atf/common.conf 13746OLD_FILES+=usr/bin/atf-config 13747OLD_FILES+=usr/bin/atf-report 13748OLD_FILES+=usr/bin/atf-run 13749OLD_FILES+=usr/bin/atf-version 13750OLD_FILES+=usr/share/atf/atf-run.hooks 13751OLD_FILES+=usr/share/examples/atf/atf-run.hooks 13752OLD_FILES+=usr/share/examples/atf/tests-results.css 13753OLD_FILES+=usr/share/man/man1/atf-config.1.gz 13754OLD_FILES+=usr/share/man/man1/atf-report.1.gz 13755OLD_FILES+=usr/share/man/man1/atf-run.1.gz 13756OLD_FILES+=usr/share/man/man1/atf-version.1.gz 13757OLD_FILES+=usr/share/man/man5/atf-formats.5.gz 13758OLD_FILES+=usr/share/xml/atf/tests-results.dtd 13759OLD_FILES+=usr/share/xsl/atf/tests-results.xsl 13760OLD_DIRS+=etc/atf 13761OLD_DIRS+=usr/share/examples/atf 13762OLD_DIRS+=usr/share/xml/atf 13763OLD_DIRS+=usr/share/xml 13764OLD_DIRS+=usr/share/xsl/atf 13765OLD_DIRS+=usr/share/xsl 13766# 20131009: freebsd-version moved from /libexec to /bin 13767OLD_FILES+=libexec/freebsd-version 13768# 20131001: ar and ranlib from binutils not used 13769OLD_FILES+=usr/bin/gnu-ar 13770OLD_FILES+=usr/bin/gnu-ranlib 13771OLD_FILES+=usr/share/man/man1/gnu-ar.1.gz 13772OLD_FILES+=usr/share/man/man1/gnu-ranlib.1.gz 13773# 20130930: BIND removed from base 13774OLD_FILES+=etc/mtree/BIND.chroot.dist 13775OLD_FILES+=etc/namedb 13776OLD_FILES+=etc/periodic/daily/470.status-named 13777OLD_FILES+=usr/bin/dig 13778OLD_FILES+=usr/bin/nslookup 13779OLD_FILES+=usr/bin/nsupdate 13780OLD_DIRS+=usr/include/lwres 13781OLD_FILES+=usr/include/lwres/context.h 13782OLD_FILES+=usr/include/lwres/int.h 13783OLD_FILES+=usr/include/lwres/ipv6.h 13784OLD_FILES+=usr/include/lwres/lang.h 13785OLD_FILES+=usr/include/lwres/list.h 13786OLD_FILES+=usr/include/lwres/lwbuffer.h 13787OLD_FILES+=usr/include/lwres/lwpacket.h 13788OLD_FILES+=usr/include/lwres/lwres.h 13789OLD_FILES+=usr/include/lwres/net.h 13790OLD_FILES+=usr/include/lwres/netdb.h 13791OLD_FILES+=usr/include/lwres/platform.h 13792OLD_FILES+=usr/include/lwres/result.h 13793OLD_FILES+=usr/include/lwres/string.h 13794OLD_FILES+=usr/include/lwres/version.h 13795OLD_FILES+=usr/lib/liblwres.a 13796OLD_FILES+=usr/lib/liblwres.so 13797OLD_LIBS+=usr/lib/liblwres.so.90 13798OLD_FILES+=usr/lib/liblwres_p.a 13799OLD_FILES+=usr/sbin/arpaname 13800OLD_FILES+=usr/sbin/ddns-confgen 13801OLD_FILES+=usr/sbin/dnssec-dsfromkey 13802OLD_FILES+=usr/sbin/dnssec-keyfromlabel 13803OLD_FILES+=usr/sbin/dnssec-keygen 13804OLD_FILES+=usr/sbin/dnssec-revoke 13805OLD_FILES+=usr/sbin/dnssec-settime 13806OLD_FILES+=usr/sbin/dnssec-signzone 13807OLD_FILES+=usr/sbin/dnssec-verify 13808OLD_FILES+=usr/sbin/genrandom 13809OLD_FILES+=usr/sbin/isc-hmac-fixup 13810OLD_FILES+=usr/sbin/lwresd 13811OLD_FILES+=usr/sbin/named 13812OLD_FILES+=usr/sbin/named-checkconf 13813OLD_FILES+=usr/sbin/named-checkzone 13814OLD_FILES+=usr/sbin/named-compilezone 13815OLD_FILES+=usr/sbin/named-journalprint 13816OLD_FILES+=usr/sbin/named.reconfig 13817OLD_FILES+=usr/sbin/named.reload 13818OLD_FILES+=usr/sbin/nsec3hash 13819OLD_FILES+=usr/sbin/rndc 13820OLD_FILES+=usr/sbin/rndc-confgen 13821OLD_DIRS+=usr/share/doc/bind9 13822OLD_FILES+=usr/share/doc/bind9/CHANGES 13823OLD_FILES+=usr/share/doc/bind9/COPYRIGHT 13824OLD_FILES+=usr/share/doc/bind9/FAQ 13825OLD_FILES+=usr/share/doc/bind9/HISTORY 13826OLD_FILES+=usr/share/doc/bind9/README 13827OLD_DIRS+=usr/share/doc/bind9/arm 13828OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch01.html 13829OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch02.html 13830OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch03.html 13831OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch04.html 13832OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch05.html 13833OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch06.html 13834OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch07.html 13835OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch08.html 13836OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch09.html 13837OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.ch10.html 13838OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.html 13839OLD_FILES+=usr/share/doc/bind9/arm/Bv9ARM.pdf 13840OLD_FILES+=usr/share/doc/bind9/arm/man.arpaname.html 13841OLD_FILES+=usr/share/doc/bind9/arm/man.ddns-confgen.html 13842OLD_FILES+=usr/share/doc/bind9/arm/man.dig.html 13843OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-dsfromkey.html 13844OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-keyfromlabel.html 13845OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-keygen.html 13846OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-revoke.html 13847OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-settime.html 13848OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-signzone.html 13849OLD_FILES+=usr/share/doc/bind9/arm/man.dnssec-verify.html 13850OLD_FILES+=usr/share/doc/bind9/arm/man.genrandom.html 13851OLD_FILES+=usr/share/doc/bind9/arm/man.host.html 13852OLD_FILES+=usr/share/doc/bind9/arm/man.isc-hmac-fixup.html 13853OLD_FILES+=usr/share/doc/bind9/arm/man.named-checkconf.html 13854OLD_FILES+=usr/share/doc/bind9/arm/man.named-checkzone.html 13855OLD_FILES+=usr/share/doc/bind9/arm/man.named-journalprint.html 13856OLD_FILES+=usr/share/doc/bind9/arm/man.named.html 13857OLD_FILES+=usr/share/doc/bind9/arm/man.nsec3hash.html 13858OLD_FILES+=usr/share/doc/bind9/arm/man.nsupdate.html 13859OLD_FILES+=usr/share/doc/bind9/arm/man.rndc-confgen.html 13860OLD_FILES+=usr/share/doc/bind9/arm/man.rndc.conf.html 13861OLD_FILES+=usr/share/doc/bind9/arm/man.rndc.html 13862OLD_DIRS+=usr/share/doc/bind9/misc 13863OLD_FILES+=usr/share/doc/bind9/misc/dnssec 13864OLD_FILES+=usr/share/doc/bind9/misc/format-options.pl 13865OLD_FILES+=usr/share/doc/bind9/misc/ipv6 13866OLD_FILES+=usr/share/doc/bind9/misc/migration 13867OLD_FILES+=usr/share/doc/bind9/misc/migration-4to9 13868OLD_FILES+=usr/share/doc/bind9/misc/options 13869OLD_FILES+=usr/share/doc/bind9/misc/rfc-compliance 13870OLD_FILES+=usr/share/doc/bind9/misc/roadmap 13871OLD_FILES+=usr/share/doc/bind9/misc/sdb 13872OLD_FILES+=usr/share/doc/bind9/misc/sort-options.pl 13873OLD_FILES+=usr/share/man/man1/arpaname.1.gz 13874OLD_FILES+=usr/share/man/man1/dig.1.gz 13875OLD_FILES+=usr/share/man/man1/nslookup.1.gz 13876OLD_FILES+=usr/share/man/man1/nsupdate.1.gz 13877OLD_FILES+=usr/share/man/man3/lwres.3.gz 13878OLD_FILES+=usr/share/man/man3/lwres_addr_parse.3.gz 13879OLD_FILES+=usr/share/man/man3/lwres_buffer.3.gz 13880OLD_FILES+=usr/share/man/man3/lwres_buffer_add.3.gz 13881OLD_FILES+=usr/share/man/man3/lwres_buffer_back.3.gz 13882OLD_FILES+=usr/share/man/man3/lwres_buffer_clear.3.gz 13883OLD_FILES+=usr/share/man/man3/lwres_buffer_first.3.gz 13884OLD_FILES+=usr/share/man/man3/lwres_buffer_forward.3.gz 13885OLD_FILES+=usr/share/man/man3/lwres_buffer_getmem.3.gz 13886OLD_FILES+=usr/share/man/man3/lwres_buffer_getuint16.3.gz 13887OLD_FILES+=usr/share/man/man3/lwres_buffer_getuint32.3.gz 13888OLD_FILES+=usr/share/man/man3/lwres_buffer_getuint8.3.gz 13889OLD_FILES+=usr/share/man/man3/lwres_buffer_init.3.gz 13890OLD_FILES+=usr/share/man/man3/lwres_buffer_invalidate.3.gz 13891OLD_FILES+=usr/share/man/man3/lwres_buffer_putmem.3.gz 13892OLD_FILES+=usr/share/man/man3/lwres_buffer_putuint16.3.gz 13893OLD_FILES+=usr/share/man/man3/lwres_buffer_putuint32.3.gz 13894OLD_FILES+=usr/share/man/man3/lwres_buffer_putuint8.3.gz 13895OLD_FILES+=usr/share/man/man3/lwres_buffer_subtract.3.gz 13896OLD_FILES+=usr/share/man/man3/lwres_conf_clear.3.gz 13897OLD_FILES+=usr/share/man/man3/lwres_conf_get.3.gz 13898OLD_FILES+=usr/share/man/man3/lwres_conf_init.3.gz 13899OLD_FILES+=usr/share/man/man3/lwres_conf_parse.3.gz 13900OLD_FILES+=usr/share/man/man3/lwres_conf_print.3.gz 13901OLD_FILES+=usr/share/man/man3/lwres_config.3.gz 13902OLD_FILES+=usr/share/man/man3/lwres_context.3.gz 13903OLD_FILES+=usr/share/man/man3/lwres_context_allocmem.3.gz 13904OLD_FILES+=usr/share/man/man3/lwres_context_create.3.gz 13905OLD_FILES+=usr/share/man/man3/lwres_context_destroy.3.gz 13906OLD_FILES+=usr/share/man/man3/lwres_context_freemem.3.gz 13907OLD_FILES+=usr/share/man/man3/lwres_context_initserial.3.gz 13908OLD_FILES+=usr/share/man/man3/lwres_context_nextserial.3.gz 13909OLD_FILES+=usr/share/man/man3/lwres_context_sendrecv.3.gz 13910OLD_FILES+=usr/share/man/man3/lwres_endhostent.3.gz 13911OLD_FILES+=usr/share/man/man3/lwres_endhostent_r.3.gz 13912OLD_FILES+=usr/share/man/man3/lwres_freeaddrinfo.3.gz 13913OLD_FILES+=usr/share/man/man3/lwres_freehostent.3.gz 13914OLD_FILES+=usr/share/man/man3/lwres_gabn.3.gz 13915OLD_FILES+=usr/share/man/man3/lwres_gabnrequest_free.3.gz 13916OLD_FILES+=usr/share/man/man3/lwres_gabnrequest_parse.3.gz 13917OLD_FILES+=usr/share/man/man3/lwres_gabnrequest_render.3.gz 13918OLD_FILES+=usr/share/man/man3/lwres_gabnresponse_free.3.gz 13919OLD_FILES+=usr/share/man/man3/lwres_gabnresponse_parse.3.gz 13920OLD_FILES+=usr/share/man/man3/lwres_gabnresponse_render.3.gz 13921OLD_FILES+=usr/share/man/man3/lwres_gai_strerror.3.gz 13922OLD_FILES+=usr/share/man/man3/lwres_getaddrinfo.3.gz 13923OLD_FILES+=usr/share/man/man3/lwres_getaddrsbyname.3.gz 13924OLD_FILES+=usr/share/man/man3/lwres_gethostbyaddr.3.gz 13925OLD_FILES+=usr/share/man/man3/lwres_gethostbyaddr_r.3.gz 13926OLD_FILES+=usr/share/man/man3/lwres_gethostbyname.3.gz 13927OLD_FILES+=usr/share/man/man3/lwres_gethostbyname2.3.gz 13928OLD_FILES+=usr/share/man/man3/lwres_gethostbyname_r.3.gz 13929OLD_FILES+=usr/share/man/man3/lwres_gethostent.3.gz 13930OLD_FILES+=usr/share/man/man3/lwres_gethostent_r.3.gz 13931OLD_FILES+=usr/share/man/man3/lwres_getipnode.3.gz 13932OLD_FILES+=usr/share/man/man3/lwres_getipnodebyaddr.3.gz 13933OLD_FILES+=usr/share/man/man3/lwres_getipnodebyname.3.gz 13934OLD_FILES+=usr/share/man/man3/lwres_getnamebyaddr.3.gz 13935OLD_FILES+=usr/share/man/man3/lwres_getnameinfo.3.gz 13936OLD_FILES+=usr/share/man/man3/lwres_getrrsetbyname.3.gz 13937OLD_FILES+=usr/share/man/man3/lwres_gnba.3.gz 13938OLD_FILES+=usr/share/man/man3/lwres_gnbarequest_free.3.gz 13939OLD_FILES+=usr/share/man/man3/lwres_gnbarequest_parse.3.gz 13940OLD_FILES+=usr/share/man/man3/lwres_gnbarequest_render.3.gz 13941OLD_FILES+=usr/share/man/man3/lwres_gnbaresponse_free.3.gz 13942OLD_FILES+=usr/share/man/man3/lwres_gnbaresponse_parse.3.gz 13943OLD_FILES+=usr/share/man/man3/lwres_gnbaresponse_render.3.gz 13944OLD_FILES+=usr/share/man/man3/lwres_herror.3.gz 13945OLD_FILES+=usr/share/man/man3/lwres_hstrerror.3.gz 13946OLD_FILES+=usr/share/man/man3/lwres_inetntop.3.gz 13947OLD_FILES+=usr/share/man/man3/lwres_lwpacket_parseheader.3.gz 13948OLD_FILES+=usr/share/man/man3/lwres_lwpacket_renderheader.3.gz 13949OLD_FILES+=usr/share/man/man3/lwres_net_ntop.3.gz 13950OLD_FILES+=usr/share/man/man3/lwres_noop.3.gz 13951OLD_FILES+=usr/share/man/man3/lwres_nooprequest_free.3.gz 13952OLD_FILES+=usr/share/man/man3/lwres_nooprequest_parse.3.gz 13953OLD_FILES+=usr/share/man/man3/lwres_nooprequest_render.3.gz 13954OLD_FILES+=usr/share/man/man3/lwres_noopresponse_free.3.gz 13955OLD_FILES+=usr/share/man/man3/lwres_noopresponse_parse.3.gz 13956OLD_FILES+=usr/share/man/man3/lwres_noopresponse_render.3.gz 13957OLD_FILES+=usr/share/man/man3/lwres_packet.3.gz 13958OLD_FILES+=usr/share/man/man3/lwres_resutil.3.gz 13959OLD_FILES+=usr/share/man/man3/lwres_sethostent.3.gz 13960OLD_FILES+=usr/share/man/man3/lwres_sethostent_r.3.gz 13961OLD_FILES+=usr/share/man/man3/lwres_string_parse.3.gz 13962OLD_FILES+=usr/share/man/man5/named.conf.5.gz 13963OLD_FILES+=usr/share/man/man5/rndc.conf.5.gz 13964OLD_FILES+=usr/share/man/man8/ddns-confgen.8.gz 13965OLD_FILES+=usr/share/man/man8/dnssec-dsfromkey.8.gz 13966OLD_FILES+=usr/share/man/man8/dnssec-keyfromlabel.8.gz 13967OLD_FILES+=usr/share/man/man8/dnssec-keygen.8.gz 13968OLD_FILES+=usr/share/man/man8/dnssec-revoke.8.gz 13969OLD_FILES+=usr/share/man/man8/dnssec-settime.8.gz 13970OLD_FILES+=usr/share/man/man8/dnssec-signzone.8.gz 13971OLD_FILES+=usr/share/man/man8/dnssec-verify.8.gz 13972OLD_FILES+=usr/share/man/man8/genrandom.8.gz 13973OLD_FILES+=usr/share/man/man8/isc-hmac-fixup.8.gz 13974OLD_FILES+=usr/share/man/man8/lwresd.8.gz 13975OLD_FILES+=usr/share/man/man8/named-checkconf.8.gz 13976OLD_FILES+=usr/share/man/man8/named-checkzone.8.gz 13977OLD_FILES+=usr/share/man/man8/named-compilezone.8.gz 13978OLD_FILES+=usr/share/man/man8/named-journalprint.8.gz 13979OLD_FILES+=usr/share/man/man8/named.8.gz 13980OLD_FILES+=usr/share/man/man8/named.reconfig.8.gz 13981OLD_FILES+=usr/share/man/man8/named.reload.8.gz 13982OLD_FILES+=usr/share/man/man8/nsec3hash.8.gz 13983OLD_FILES+=usr/share/man/man8/rndc-confgen.8.gz 13984OLD_FILES+=usr/share/man/man8/rndc.8.gz 13985OLD_DIRS+=var/named/dev 13986OLD_DIRS+=var/named/etc 13987OLD_DIRS+=var/named/etc/namedb 13988OLD_FILES+=var/named/etc/namedb/PROTO.localhost-v6.rev 13989OLD_FILES+=var/named/etc/namedb/PROTO.localhost.rev 13990OLD_DIRS+=var/named/etc/namedb/dynamic 13991OLD_FILES+=var/named/etc/namedb/make-localhost 13992OLD_DIRS+=var/named/etc/namedb/master 13993OLD_FILES+=var/named/etc/namedb/master/empty.db 13994OLD_FILES+=var/named/etc/namedb/master/localhost-forward.db 13995OLD_FILES+=var/named/etc/namedb/master/localhost-reverse.db 13996#OLD_FILES+=var/named/etc/namedb/named.conf # intentionally left out 13997OLD_FILES+=var/named/etc/namedb/named.root 13998OLD_DIRS+=var/named/etc/namedb/working 13999OLD_DIRS+=var/named/etc/namedb/slave 14000OLD_DIRS+=var/named/var 14001OLD_DIRS+=var/named/var/dump 14002OLD_DIRS+=var/named/var/log 14003OLD_DIRS+=var/named/var/run 14004OLD_DIRS+=var/named/var/run/named 14005OLD_DIRS+=var/named/var/stats 14006OLD_DIRS+=var/run/named 14007# 20130923: example moved 14008OLD_FILES+=usr/share/examples/bsdconfig/browse_packages.sh 14009# 20130908: libssh becomes private 14010OLD_FILES+=usr/lib/libssh.a 14011OLD_FILES+=usr/lib/libssh.so 14012OLD_LIBS+=usr/lib/libssh.so.5 14013OLD_FILES+=usr/lib/libssh_p.a 14014# 20130903: gnupatch is no more 14015OLD_FILES+=usr/bin/gnupatch 14016OLD_FILES+=usr/share/man/man1/gnupatch.1.gz 14017# 20130829: bsdpatch is patch unconditionally 14018OLD_FILES+=usr/bin/bsdpatch 14019OLD_FILES+=usr/share/man/man1/bsdpatch.1.gz 14020# 20130822: bind 9.9.3-P2 import 14021OLD_LIBS+=usr/lib/liblwres.so.80 14022# 20130814: vm_page_busy(9) 14023OLD_FILES+=usr/share/man/man9/vm_page_flash.9.gz 14024OLD_FILES+=usr/share/man/man9/vm_page_io.9.gz 14025OLD_FILES+=usr/share/man/man9/vm_page_io_finish.9.gz 14026OLD_FILES+=usr/share/man/man9/vm_page_io_start.9.gz 14027OLD_FILES+=usr/share/man/man9/vm_page_wakeup.9.gz 14028# 20130710: libkvm version bump 14029OLD_LIBS+=lib/libkvm.so.5 14030# 20130623: dialog update from 1.1 to 1.2 14031OLD_LIBS+=usr/lib/libdialog.so.7 14032# 20130616: vfs_mount.9 removed 14033OLD_FILES+=usr/share/man/man9/vfs_mount.9.gz 14034# 20130614: remove CVS from base 14035OLD_FILES+=usr/bin/cvs 14036OLD_FILES+=usr/bin/cvsbug 14037OLD_FILES+=usr/share/doc/psd/28.cvs/paper.ascii.gz 14038OLD_FILES+=usr/share/doc/psd/28.cvs/paper.ps.gz 14039OLD_DIRS+=usr/share/doc/psd/28.cvs 14040OLD_FILES+=usr/share/examples/cvs/contrib/README 14041OLD_FILES+=usr/share/examples/cvs/contrib/clmerge 14042OLD_FILES+=usr/share/examples/cvs/contrib/cln_hist 14043OLD_FILES+=usr/share/examples/cvs/contrib/commit_prep 14044OLD_FILES+=usr/share/examples/cvs/contrib/cvs2vendor 14045OLD_FILES+=usr/share/examples/cvs/contrib/cvs_acls 14046OLD_FILES+=usr/share/examples/cvs/contrib/cvscheck 14047OLD_FILES+=usr/share/examples/cvs/contrib/cvscheck.man 14048OLD_FILES+=usr/share/examples/cvs/contrib/cvshelp.man 14049OLD_FILES+=usr/share/examples/cvs/contrib/descend.man 14050OLD_FILES+=usr/share/examples/cvs/contrib/easy-import 14051OLD_FILES+=usr/share/examples/cvs/contrib/intro.doc 14052OLD_FILES+=usr/share/examples/cvs/contrib/log 14053OLD_FILES+=usr/share/examples/cvs/contrib/log_accum 14054OLD_FILES+=usr/share/examples/cvs/contrib/mfpipe 14055OLD_FILES+=usr/share/examples/cvs/contrib/rcs-to-cvs 14056OLD_FILES+=usr/share/examples/cvs/contrib/rcs2log 14057OLD_FILES+=usr/share/examples/cvs/contrib/rcslock 14058OLD_FILES+=usr/share/examples/cvs/contrib/sccs2rcs 14059OLD_DIRS+=usr/share/examples/cvs/contrib 14060OLD_DIRS+=usr/share/examples/cvs 14061OLD_FILES+=usr/share/info/cvs.info.gz 14062OLD_FILES+=usr/share/info/cvsclient.info.gz 14063OLD_FILES+=usr/share/man/man1/cvs.1.gz 14064OLD_FILES+=usr/share/man/man5/cvs.5.gz 14065OLD_FILES+=usr/share/man/man8/cvsbug.8.gz 14066# 20130607: WITH_DEBUG_FILES added 14067OLD_FILES+=lib/libufs.so.6.symbols 14068# 20130417: nfs fha moved from nfsserver to nfs 14069OLD_FILES+=usr/include/nfsserver/nfs_fha.h 14070# 20130411: new clang import which bumps version from 3.2 to 3.3 14071OLD_FILES+=usr/include/clang/3.2/__wmmintrin_aes.h 14072OLD_FILES+=usr/include/clang/3.2/__wmmintrin_pclmul.h 14073OLD_FILES+=usr/include/clang/3.2/altivec.h 14074OLD_FILES+=usr/include/clang/3.2/ammintrin.h 14075OLD_FILES+=usr/include/clang/3.2/avx2intrin.h 14076OLD_FILES+=usr/include/clang/3.2/avxintrin.h 14077OLD_FILES+=usr/include/clang/3.2/bmi2intrin.h 14078OLD_FILES+=usr/include/clang/3.2/bmiintrin.h 14079OLD_FILES+=usr/include/clang/3.2/cpuid.h 14080OLD_FILES+=usr/include/clang/3.2/emmintrin.h 14081OLD_FILES+=usr/include/clang/3.2/f16cintrin.h 14082OLD_FILES+=usr/include/clang/3.2/fma4intrin.h 14083OLD_FILES+=usr/include/clang/3.2/fmaintrin.h 14084OLD_FILES+=usr/include/clang/3.2/immintrin.h 14085OLD_FILES+=usr/include/clang/3.2/lzcntintrin.h 14086OLD_FILES+=usr/include/clang/3.2/mm3dnow.h 14087OLD_FILES+=usr/include/clang/3.2/mm_malloc.h 14088OLD_FILES+=usr/include/clang/3.2/mmintrin.h 14089OLD_FILES+=usr/include/clang/3.2/module.map 14090OLD_FILES+=usr/include/clang/3.2/nmmintrin.h 14091OLD_FILES+=usr/include/clang/3.2/pmmintrin.h 14092OLD_FILES+=usr/include/clang/3.2/popcntintrin.h 14093OLD_FILES+=usr/include/clang/3.2/rtmintrin.h 14094OLD_FILES+=usr/include/clang/3.2/smmintrin.h 14095OLD_FILES+=usr/include/clang/3.2/tmmintrin.h 14096OLD_FILES+=usr/include/clang/3.2/wmmintrin.h 14097OLD_FILES+=usr/include/clang/3.2/x86intrin.h 14098OLD_FILES+=usr/include/clang/3.2/xmmintrin.h 14099OLD_FILES+=usr/include/clang/3.2/xopintrin.h 14100OLD_DIRS+=usr/include/clang/3.2 14101# 20130404: legacy ATA stack removed 14102OLD_FILES+=etc/periodic/daily/405.status-ata-raid 14103OLD_FILES+=rescue/atacontrol 14104OLD_FILES+=sbin/atacontrol 14105OLD_FILES+=usr/share/man/man8/atacontrol.8.gz 14106OLD_FILES+=usr/share/man/man4/atapicam.4.gz 14107OLD_FILES+=usr/share/man/man4/ataraid.4.gz 14108OLD_FILES+=usr/sbin/burncd 14109OLD_FILES+=usr/share/man/man8/burncd.8.gz 14110# 20130316: vinum.4 removed 14111OLD_FILES+=usr/share/man/man4/vinum.4.gz 14112# 20130312: fortunes-o removed 14113OLD_FILES+=usr/share/games/fortune/fortunes-o 14114OLD_FILES+=usr/share/games/fortune/fortunes-o.dat 14115# 20130311: Ports are no more available via cvsup 14116OLD_FILES+=usr/share/examples/cvsup/ports-supfile 14117OLD_FILES+=usr/share/examples/cvsup/refuse 14118OLD_FILES+=usr/share/examples/cvsup/refuse.README 14119# 20130309: NWFS and NCP supports removed 14120OLD_FILES+=usr/bin/ncplist 14121OLD_FILES+=usr/bin/ncplogin 14122OLD_FILES+=usr/bin/ncplogout 14123OLD_FILES+=usr/include/fs/nwfs/nwfs.h 14124OLD_FILES+=usr/include/fs/nwfs/nwfs_mount.h 14125OLD_FILES+=usr/include/fs/nwfs/nwfs_node.h 14126OLD_FILES+=usr/include/fs/nwfs/nwfs_subr.h 14127OLD_DIRS+=usr/include/fs/nwfs 14128OLD_FILES+=usr/include/netncp/ncp.h 14129OLD_FILES+=usr/include/netncp/ncp_cfg.h 14130OLD_FILES+=usr/include/netncp/ncp_conn.h 14131OLD_FILES+=usr/include/netncp/ncp_file.h 14132OLD_FILES+=usr/include/netncp/ncp_lib.h 14133OLD_FILES+=usr/include/netncp/ncp_ncp.h 14134OLD_FILES+=usr/include/netncp/ncp_nls.h 14135OLD_FILES+=usr/include/netncp/ncp_rcfile.h 14136OLD_FILES+=usr/include/netncp/ncp_rq.h 14137OLD_FILES+=usr/include/netncp/ncp_sock.h 14138OLD_FILES+=usr/include/netncp/ncp_subr.h 14139OLD_FILES+=usr/include/netncp/ncp_user.h 14140OLD_FILES+=usr/include/netncp/ncpio.h 14141OLD_FILES+=usr/include/netncp/nwerror.h 14142OLD_DIRS+=usr/include/netncp 14143OLD_FILES+=usr/lib/libncp.a 14144OLD_FILES+=usr/lib/libncp.so 14145OLD_LIBS+=usr/lib/libncp.so.4 14146OLD_FILES+=usr/lib/libncp_p.a 14147OLD_FILES+=usr/sbin/mount_nwfs 14148OLD_FILES+=usr/share/examples/nwclient/dot.nwfsrc 14149OLD_FILES+=usr/share/examples/nwclient/nwfs.sh.sample 14150OLD_DIRS+=usr/share/examples/nwclient 14151OLD_FILES+=usr/share/man/man1/ncplist.1.gz 14152OLD_FILES+=usr/share/man/man1/ncplogin.1.gz 14153OLD_FILES+=usr/share/man/man1/ncplogout.1.gz 14154OLD_FILES+=usr/share/man/man8/mount_nwfs.8.gz 14155# 20130302: NTFS support removed 14156OLD_FILES+=rescue/mount_ntfs 14157OLD_FILES+=sbin/mount_ntfs 14158OLD_FILES+=usr/include/fs/ntfs/ntfs.h 14159OLD_FILES+=usr/include/fs/ntfs/ntfs_compr.h 14160OLD_FILES+=usr/include/fs/ntfs/ntfs_ihash.h 14161OLD_FILES+=usr/include/fs/ntfs/ntfs_inode.h 14162OLD_FILES+=usr/include/fs/ntfs/ntfs_subr.h 14163OLD_FILES+=usr/include/fs/ntfs/ntfs_vfsops.h 14164OLD_FILES+=usr/include/fs/ntfs/ntfsmount.h 14165OLD_DIRS+=usr/include/fs/ntfs 14166OLD_FILES+=usr/share/man/man8/mount_ntfs.8.gz 14167# 20130302: PORTALFS support removed 14168OLD_FILES+=usr/include/fs/portalfs/portal.h 14169OLD_DIRS+=usr/include/fs/portalfs 14170OLD_FILES+=usr/sbin/mount_portalfs 14171OLD_FILES+=usr/share/examples/portal/README 14172OLD_FILES+=usr/share/examples/portal/portal.conf 14173OLD_DIRS+=usr/share/examples/portal 14174OLD_FILES+=usr/share/man/man8/mount_portalfs.8.gz 14175# 20130302: CODAFS support removed 14176OLD_FILES+=usr/share/man/man4/coda.4.gz 14177# 20130302: XFS support removed 14178OLD_FILES+=usr/share/man/man5/xfs.5.gz 14179# 20130302: Capsicum overhaul 14180OLD_FILES+=usr/share/man/man2/cap_getrights.2.gz 14181OLD_FILES+=usr/share/man/man2/cap_new.2.gz 14182# 20130213: OpenSSL 1.0.1e import 14183OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_verifyrecover.3.gz 14184OLD_FILES+=usr/share/openssl/man/man3/EVP_PKEY_verifyrecover_init.3.gz 14185# 20130116: removed long unused directories for .1aout section manpages 14186OLD_FILES+=usr/share/man/en.ISO8859-1/man1aout 14187OLD_FILES+=usr/share/man/en.UTF-8/man1aout 14188OLD_DIRS+=usr/share/man/man1aout 14189OLD_DIRS+=usr/share/man/cat1aout 14190OLD_DIRS+=usr/share/man/en.ISO8859-1/cat1aout 14191OLD_DIRS+=usr/share/man/en.UTF-8/cat1aout 14192# 20130103: gnats-supfile removed 14193OLD_FILES+=usr/share/examples/cvsup/gnats-supfile 14194# 20121230: libdisk removed 14195OLD_FILES+=usr/share/man/man3/libdisk.3.gz usr/include/libdisk.h 14196OLD_FILES+=usr/lib/libdisk.a 14197# 20121230: remove wrongly created directories for auditdistd 14198OLD_DIRS+=var/dist 14199OLD_DIRS+=var/remote 14200# 20121022: remove harp, hfa and idt man page 14201OLD_FILES+=usr/share/man/man4/harp.4.gz 14202OLD_FILES+=usr/share/man/man4/hfa.4.gz 14203OLD_FILES+=usr/share/man/man4/idt.4.gz 14204OLD_FILES+=usr/share/man/man4/if_idt.4.gz 14205# 20121022: VFS_LOCK_GIANT elimination 14206OLD_FILES+=usr/share/man/man9/VFS_LOCK_GIANT.9.gz 14207OLD_FILES+=usr/share/man/man9/VFS_UNLOCK_GIANT.9.gz 14208# 20121004: remove incomplete unwind.h 14209OLD_FILES+=usr/include/clang/3.2/unwind.h 14210# 20120910: NetBSD compat shims removed 14211OLD_FILES+=usr/include/cam/scsi/scsi_low_pisa.h 14212OLD_FILES+=usr/include/sys/device_port.h 14213# 20120909: doc and www supfiles removed 14214OLD_FILES+=usr/share/examples/cvsup/doc-supfile 14215OLD_FILES+=usr/share/examples/cvsup/www-supfile 14216# 20120908: pf cleanup 14217OLD_FILES+=usr/include/net/if_pflow.h 14218# 20120816: new clang import which bumps version from 3.1 to 3.2 14219OLD_FILES+=usr/bin/llvm-ld 14220OLD_FILES+=usr/bin/llvm-stub 14221OLD_FILES+=usr/include/clang/3.1/altivec.h 14222OLD_FILES+=usr/include/clang/3.1/avx2intrin.h 14223OLD_FILES+=usr/include/clang/3.1/avxintrin.h 14224OLD_FILES+=usr/include/clang/3.1/bmi2intrin.h 14225OLD_FILES+=usr/include/clang/3.1/bmiintrin.h 14226OLD_FILES+=usr/include/clang/3.1/cpuid.h 14227OLD_FILES+=usr/include/clang/3.1/emmintrin.h 14228OLD_FILES+=usr/include/clang/3.1/fma4intrin.h 14229OLD_FILES+=usr/include/clang/3.1/immintrin.h 14230OLD_FILES+=usr/include/clang/3.1/lzcntintrin.h 14231OLD_FILES+=usr/include/clang/3.1/mm3dnow.h 14232OLD_FILES+=usr/include/clang/3.1/mm_malloc.h 14233OLD_FILES+=usr/include/clang/3.1/mmintrin.h 14234OLD_FILES+=usr/include/clang/3.1/module.map 14235OLD_FILES+=usr/include/clang/3.1/nmmintrin.h 14236OLD_FILES+=usr/include/clang/3.1/pmmintrin.h 14237OLD_FILES+=usr/include/clang/3.1/popcntintrin.h 14238OLD_FILES+=usr/include/clang/3.1/smmintrin.h 14239OLD_FILES+=usr/include/clang/3.1/tmmintrin.h 14240OLD_FILES+=usr/include/clang/3.1/unwind.h 14241OLD_FILES+=usr/include/clang/3.1/wmmintrin.h 14242OLD_FILES+=usr/include/clang/3.1/x86intrin.h 14243OLD_FILES+=usr/include/clang/3.1/xmmintrin.h 14244OLD_DIRS+=usr/include/clang/3.1 14245OLD_FILES+=usr/share/man/man1/llvm-ld.1.gz 14246# 20120712: OpenSSL 1.0.1c import 14247OLD_LIBS+=lib/libcrypto.so.6 14248OLD_LIBS+=usr/lib/libssl.so.6 14249OLD_FILES+=usr/include/openssl/aes_locl.h 14250OLD_FILES+=usr/include/openssl/bio_lcl.h 14251OLD_FILES+=usr/include/openssl/e_os.h 14252OLD_FILES+=usr/include/openssl/fips.h 14253OLD_FILES+=usr/include/openssl/fips_rand.h 14254OLD_FILES+=usr/include/openssl/pq_compat.h 14255OLD_FILES+=usr/include/openssl/tmdiff.h 14256OLD_FILES+=usr/include/openssl/ui_locl.h 14257OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz 14258# 20120621: remove old man page 14259OLD_FILES+=usr/share/man/man8/vnconfig.8.gz 14260# 20120619: TOE support updated 14261OLD_FILES+=usr/include/netinet/toedev.h 14262# 20120613: auth.conf removed 14263OLD_FILES+=etc/auth.conf 14264OLD_FILES+=usr/share/examples/etc/auth.conf 14265OLD_FILES+=usr/share/man/man3/auth.3.gz 14266OLD_FILES+=usr/share/man/man3/auth_getval.3.gz 14267OLD_FILES+=usr/share/man/man5/auth.conf.5.gz 14268# 20120530: kde pam lives now in ports 14269OLD_FILES+=etc/pam.d/kde 14270# 20120521: byacc import 14271OLD_FILES+=usr/bin/yyfix 14272OLD_FILES+=usr/share/man/man1/yyfix.1.gz 14273# 20120505: new clang import installed a redundant internal header 14274OLD_FILES+=usr/include/clang/3.1/stdalign.h 14275# 20120428: MD2 removed from libmd 14276OLD_LIBS+=lib/libmd.so.5 14277OLD_FILES+=usr/include/md2.h 14278OLD_FILES+=usr/share/man/man3/MD2Data.3.gz 14279OLD_FILES+=usr/share/man/man3/MD2End.3.gz 14280OLD_FILES+=usr/share/man/man3/MD2File.3.gz 14281OLD_FILES+=usr/share/man/man3/MD2FileChunk.3.gz 14282OLD_FILES+=usr/share/man/man3/MD2Final.3.gz 14283OLD_FILES+=usr/share/man/man3/MD2Init.3.gz 14284OLD_FILES+=usr/share/man/man3/MD2Update.3.gz 14285OLD_FILES+=usr/share/man/man3/md2.3.gz 14286# 20120425: libusb version bump (r234684) 14287OLD_LIBS+=usr/lib/libusb.so.2 14288OLD_FILES+=usr/share/man/man3/libsub_get_active_config_descriptor.3.gz 14289# 20120415: new clang import which bumps version from 3.0 to 3.1 14290OLD_FILES+=usr/include/clang/3.0/altivec.h 14291OLD_FILES+=usr/include/clang/3.0/avxintrin.h 14292OLD_FILES+=usr/include/clang/3.0/emmintrin.h 14293OLD_FILES+=usr/include/clang/3.0/immintrin.h 14294OLD_FILES+=usr/include/clang/3.0/mm3dnow.h 14295OLD_FILES+=usr/include/clang/3.0/mm_malloc.h 14296OLD_FILES+=usr/include/clang/3.0/mmintrin.h 14297OLD_FILES+=usr/include/clang/3.0/nmmintrin.h 14298OLD_FILES+=usr/include/clang/3.0/pmmintrin.h 14299OLD_FILES+=usr/include/clang/3.0/smmintrin.h 14300OLD_FILES+=usr/include/clang/3.0/tmmintrin.h 14301OLD_FILES+=usr/include/clang/3.0/wmmintrin.h 14302OLD_FILES+=usr/include/clang/3.0/x86intrin.h 14303OLD_FILES+=usr/include/clang/3.0/xmmintrin.h 14304OLD_DIRS+=usr/include/clang/3.0 14305# 20120412: BIND 9.8.1 release notes removed 14306OLD_FILES+=usr/share/doc/bind9/RELEASE-NOTES-BIND-9.8.1.pdf 14307OLD_FILES+=usr/share/doc/bind9/RELEASE-NOTES-BIND-9.8.1.txt 14308OLD_FILES+=usr/share/doc/bind9/RELEASE-NOTES-BIND-9.8.1.html 14309OLD_FILES+=usr/share/doc/bind9/release-notes.css 14310# 20120330: legacy(4) moved to x86 14311OLD_FILES+=usr/include/machine/legacyvar.h 14312# 20120324: MPI headers updated 14313OLD_FILES+=usr/include/dev/mpt/mpilib/mpi_inb.h 14314# 20120322: hwpmc_mips24k.h removed 14315OLD_FILES+=usr/include/dev/hwpmc/hwpmc_mips24k.h 14316# 20120322: Update heimdal to 1.5.1 14317OLD_FILES+=usr/include/krb5-v4compat.h \ 14318 usr/include/krb_err.h \ 14319 usr/include/hdb-private.h \ 14320 usr/share/man/man3/krb5_addresses.3.gz \ 14321 usr/share/man/man3/krb5_cc_cursor.3.gz \ 14322 usr/share/man/man3/krb5_cc_ops.3.gz \ 14323 usr/share/man/man3/krb5_config.3.gz \ 14324 usr/share/man/man3/krb5_config_get_int_default.3.gz \ 14325 usr/share/man/man3/krb5_context.3.gz \ 14326 usr/share/man/man3/krb5_data.3.gz \ 14327 usr/share/man/man3/krb5_err.3.gz \ 14328 usr/share/man/man3/krb5_errx.3.gz \ 14329 usr/share/man/man3/krb5_keyblock.3.gz \ 14330 usr/share/man/man3/krb5_keytab_entry.3.gz \ 14331 usr/share/man/man3/krb5_kt_cursor.3.gz \ 14332 usr/share/man/man3/krb5_kt_ops.3.gz \ 14333 usr/share/man/man3/krb5_set_warn_dest.3.gz \ 14334 usr/share/man/man3/krb5_verr.3.gz \ 14335 usr/share/man/man3/krb5_verrx.3.gz \ 14336 usr/share/man/man3/krb5_vwarnx.3.gz \ 14337 usr/share/man/man3/krb5_warn.3.gz \ 14338 usr/share/man/man3/krb5_warnx.3.gz 14339OLD_LIBS+=usr/lib/libasn1.so.10 \ 14340 usr/lib/libhdb.so.10 \ 14341 usr/lib/libheimntlm.so.10 \ 14342 usr/lib/libhx509.so.10 \ 14343 usr/lib/libkadm5clnt.so.10 \ 14344 usr/lib/libkadm5srv.so.10 \ 14345 usr/lib/libkafs5.so.10 \ 14346 usr/lib/libkrb5.so.10 \ 14347 usr/lib/libroken.so.10 14348# 20120309: Remove fifofs header files 14349OLD_FILES+=usr/include/fs/fifofs/fifo.h 14350OLD_DIRS+=usr/include/fs/fifofs 14351# 20120304: xlocale cleanup 14352OLD_FILES+=usr/include/_xlocale_ctype.h 14353# 20120225: libarchive 3.0.3 14354OLD_FILES+=usr/share/man/man3/archive_read_data_into_buffer.3.gz \ 14355 usr/share/man/man3/archive_read_support_compression_all.3.gz \ 14356 usr/share/man/man3/archive_read_support_compression_bzip2.3.gz \ 14357 usr/share/man/man3/archive_read_support_compression_compress.3.gz \ 14358 usr/share/man/man3/archive_read_support_compression_gzip.3.gz \ 14359 usr/share/man/man3/archive_read_support_compression_lzma.3.gz \ 14360 usr/share/man/man3/archive_read_support_compression_none.3.gz \ 14361 usr/share/man/man3/archive_read_support_compression_program.3.gz \ 14362 usr/share/man/man3/archive_read_support_compression_program_signature.3.gz \ 14363 usr/share/man/man3/archive_read_support_compression_xz.3.gz \ 14364 usr/share/man/man3/archive_write_set_callbacks.3.gz \ 14365 usr/share/man/man3/archive_write_set_compression_bzip2.3.gz \ 14366 usr/share/man/man3/archive_write_set_compression_compress.3.gz \ 14367 usr/share/man/man3/archive_write_set_compression_gzip.3.gz \ 14368 usr/share/man/man3/archive_write_set_compression_none.3.gz \ 14369 usr/share/man/man3/archive_write_set_compression_program.3.gz 14370OLD_LIBS+=usr/lib/libarchive.so.5 14371# 20120113: removal of wtmpcvt(1) 14372OLD_FILES+=usr/bin/wtmpcvt 14373OLD_FILES+=usr/share/man/man1/wtmpcvt.1.gz 14374# 20111214: eventtimers(7) moved to eventtimers(4) 14375OLD_FILES+=usr/share/man/man7/eventtimers.7.gz 14376# 20111125: amd(4) removed 14377OLD_FILES+=usr/share/man/man4/amd.4.gz 14378# 20111125: libodialog removed 14379OLD_FILES+=usr/lib/libodialog.a 14380OLD_FILES+=usr/lib/libodialog.so 14381OLD_LIBS+=usr/lib/libodialog.so.7 14382OLD_FILES+=usr/lib/libodialog_p.a 14383# 20110930: sysinstall removed 14384OLD_FILES+=usr/sbin/sysinstall 14385OLD_FILES+=usr/share/man/man8/sysinstall.8.gz 14386OLD_FILES+=usr/lib/libftpio.a 14387OLD_FILES+=usr/lib/libftpio.so 14388OLD_LIBS+=usr/lib/libftpio.so.8 14389OLD_FILES+=usr/lib/libftpio_p.a 14390OLD_FILES+=usr/include/ftpio.h 14391OLD_FILES+=usr/share/man/man3/ftpio.3.gz 14392# 20110915: rename congestion control manpages 14393OLD_FILES+=usr/share/man/man9/cc.9.gz 14394# 20110831: atomic page flags operations 14395OLD_FILES+=usr/share/man/man9/vm_page_flag.9.gz 14396OLD_FILES+=usr/share/man/man9/vm_page_flag_clear.9.gz 14397OLD_FILES+=usr/share/man/man9/vm_page_flag_set.9.gz 14398# 20110828: library version bump for 9.0 14399OLD_LIBS+=lib/libcam.so.5 14400OLD_LIBS+=lib/libpcap.so.7 14401OLD_LIBS+=lib/libufs.so.5 14402OLD_LIBS+=usr/lib/libbsnmp.so.5 14403OLD_LIBS+=usr/lib/libdwarf.so.2 14404OLD_LIBS+=usr/lib/libopie.so.6 14405OLD_LIBS+=usr/lib/librtld_db.so.1 14406OLD_LIBS+=usr/lib/libtacplus.so.4 14407# 20110817: no more acd.4, ad.4, afd.4 and ast.4 14408OLD_FILES+=usr/share/man/man4/acd.4.gz 14409OLD_FILES+=usr/share/man/man4/ad.4.gz 14410OLD_FILES+=usr/share/man/man4/afd.4.gz 14411OLD_FILES+=usr/share/man/man4/ast.4.gz 14412# 20110718: no longer useful in the age of rc.d 14413OLD_FILES+=usr/sbin/named.reconfig 14414OLD_FILES+=usr/sbin/named.reload 14415OLD_FILES+=usr/share/man/man8/named.reconfig.8.gz 14416OLD_FILES+=usr/share/man/man8/named.reload.8.gz 14417# 20110716: bind 9.8.0 import 14418OLD_LIBS+=usr/lib/liblwres.so.50 14419OLD_FILES+=usr/share/doc/bind9/KNOWN-DEFECTS 14420OLD_FILES+=usr/share/doc/bind9/NSEC3-NOTES 14421OLD_FILES+=usr/share/doc/bind9/README.idnkit 14422OLD_FILES+=usr/share/doc/bind9/README.pkcs11 14423# 20110709: vm_map_clean.9 -> vm_map_sync.9 14424OLD_FILES+=usr/share/man/man9/vm_map_clean.9.gz 14425# 20110709: Catch up with removal of these functions 14426OLD_FILES+=usr/share/man/man9/vm_page_copy.9.gz 14427OLD_FILES+=usr/share/man/man9/vm_page_protect.9.gz 14428OLD_FILES+=usr/share/man/man9/vm_page_zero_fill.9.gz 14429# 20110707: script no longer needed by /etc/rc.d/nfsd 14430OLD_FILES+=etc/rc.d/nfsserver 14431# 20110705: files moved so both NFS clients can share them 14432OLD_FILES+=usr/include/nfsclient/krpc.h 14433OLD_FILES+=usr/include/nfsclient/nfsdiskless.h 14434# 20110705: the switch of default NFS client to the new one 14435OLD_FILES+=sbin/mount_newnfs 14436OLD_FILES+=usr/share/man/man8/mount_newnfs.8.gz 14437OLD_FILES+=usr/include/nfsclient/nfs_kdtrace.h 14438# 20110628: calendar.msk removed 14439OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.msk 14440# 20110517: libpkg removed 14441OLD_FILES+=usr/include/pkg.h 14442OLD_FILES+=usr/lib/libpkg.a 14443OLD_FILES+=usr/lib/libpkg.so 14444OLD_LIBS+=usr/lib/libpkg.so.0 14445OLD_FILES+=usr/lib/libpkg_p.a 14446# 20110517: libsbuf version bump 14447OLD_LIBS+=lib/libsbuf.so.5 14448# 20110502: new clang import which bumps version from 2.9 to 3.0 14449OLD_FILES+=usr/include/clang/2.9/emmintrin.h 14450OLD_FILES+=usr/include/clang/2.9/mm_malloc.h 14451OLD_FILES+=usr/include/clang/2.9/mmintrin.h 14452OLD_FILES+=usr/include/clang/2.9/pmmintrin.h 14453OLD_FILES+=usr/include/clang/2.9/tmmintrin.h 14454OLD_FILES+=usr/include/clang/2.9/xmmintrin.h 14455OLD_DIRS+=usr/include/clang/2.9 14456# 20110417: removal of Objective-C support 14457OLD_FILES+=usr/include/objc/encoding.h 14458OLD_FILES+=usr/include/objc/hash.h 14459OLD_FILES+=usr/include/objc/NXConstStr.h 14460OLD_FILES+=usr/include/objc/objc-api.h 14461OLD_FILES+=usr/include/objc/objc-decls.h 14462OLD_FILES+=usr/include/objc/objc-list.h 14463OLD_FILES+=usr/include/objc/objc.h 14464OLD_FILES+=usr/include/objc/Object.h 14465OLD_FILES+=usr/include/objc/Protocol.h 14466OLD_FILES+=usr/include/objc/runtime.h 14467OLD_FILES+=usr/include/objc/sarray.h 14468OLD_FILES+=usr/include/objc/thr.h 14469OLD_FILES+=usr/include/objc/typedstream.h 14470OLD_FILES+=usr/lib/libobjc.a 14471OLD_FILES+=usr/lib/libobjc.so 14472OLD_FILES+=usr/lib/libobjc_p.a 14473OLD_FILES+=usr/libexec/cc1obj 14474OLD_LIBS+=usr/lib/libobjc.so.4 14475OLD_DIRS+=usr/include/objc 14476# 20110331: firmware.img created at build time 14477OLD_FILES+=usr/share/examples/kld/firmware/fwimage/firmware.img 14478# 20110224: sticky.8 -> sticky.7 14479OLD_FILES+=usr/share/man/man8/sticky.8.gz 14480# 20110220: new clang import which bumps version from 2.8 to 2.9 14481OLD_FILES+=usr/include/clang/2.8/emmintrin.h 14482OLD_FILES+=usr/include/clang/2.8/mm_malloc.h 14483OLD_FILES+=usr/include/clang/2.8/mmintrin.h 14484OLD_FILES+=usr/include/clang/2.8/pmmintrin.h 14485OLD_FILES+=usr/include/clang/2.8/tmmintrin.h 14486OLD_FILES+=usr/include/clang/2.8/xmmintrin.h 14487OLD_DIRS+=usr/include/clang/2.8 14488# 20110119: netinet/sctp_cc_functions.h removed 14489OLD_FILES+=usr/include/netinet/sctp_cc_functions.h 14490# 20110119: Remove SYSCTL_*X* sysctl additions 14491OLD_FILES+=usr/share/man/man9/SYSCTL_XINT.9.gz \ 14492 usr/share/man/man9/SYSCTL_XLONG.9.gz 14493 14494# 20110112: Update dialog to new version, rename old libdialog to libodialog, 14495# removing associated man pages and header files. 14496OLD_FILES+=usr/share/man/man3/draw_shadow.3.gz \ 14497 usr/share/man/man3/draw_box.3.gz usr/share/man/man3/line_edit.3.gz \ 14498 usr/share/man/man3/strheight.3.gz usr/share/man/man3/strwidth.3.gz \ 14499 usr/share/man/man3/dialog_create_rc.3.gz \ 14500 usr/share/man/man3/dialog_yesno.3.gz usr/share/man/man3/dialog_noyes.3.gz \ 14501 usr/share/man/man3/dialog_prgbox.3.gz \ 14502 usr/share/man/man3/dialog_textbox.3.gz usr/share/man/man3/dialog_menu.3.gz \ 14503 usr/share/man/man3/dialog_checklist.3.gz \ 14504 usr/share/man/man3/dialog_radiolist.3.gz \ 14505 usr/share/man/man3/dialog_inputbox.3.gz \ 14506 usr/share/man/man3/dialog_clear_norefresh.3.gz \ 14507 usr/share/man/man3/dialog_clear.3.gz usr/share/man/man3/dialog_update.3.gz \ 14508 usr/share/man/man3/dialog_fselect.3.gz \ 14509 usr/share/man/man3/dialog_notify.3.gz \ 14510 usr/share/man/man3/dialog_mesgbox.3.gz \ 14511 usr/share/man/man3/dialog_gauge.3.gz usr/share/man/man3/init_dialog.3.gz \ 14512 usr/share/man/man3/end_dialog.3.gz usr/share/man/man3/use_helpfile.3.gz \ 14513 usr/share/man/man3/use_helpline.3.gz usr/share/man/man3/get_helpline.3.gz \ 14514 usr/share/man/man3/restore_helpline.3.gz \ 14515 usr/share/man/man3/dialog_msgbox.3.gz \ 14516 usr/share/man/man3/dialog_ftree.3.gz usr/share/man/man3/dialog_tree.3.gz \ 14517 usr/share/examples/dialog/README usr/share/examples/dialog/checklist \ 14518 usr/share/examples/dialog/ftreebox usr/share/examples/dialog/infobox \ 14519 usr/share/examples/dialog/inputbox usr/share/examples/dialog/menubox \ 14520 usr/share/examples/dialog/msgbox usr/share/examples/dialog/prgbox \ 14521 usr/share/examples/dialog/radiolist usr/share/examples/dialog/textbox \ 14522 usr/share/examples/dialog/treebox usr/share/examples/dialog/yesno \ 14523 usr/share/examples/libdialog/Makefile usr/share/examples/libdialog/check1.c\ 14524 usr/share/examples/libdialog/check2.c usr/share/examples/libdialog/check3.c\ 14525 usr/share/examples/libdialog/dselect.c \ 14526 usr/share/examples/libdialog/fselect.c \ 14527 usr/share/examples/libdialog/ftree1.c \ 14528 usr/share/examples/libdialog/ftree1.test \ 14529 usr/share/examples/libdialog/ftree2.c \ 14530 usr/share/examples/libdialog/ftree2.test \ 14531 usr/share/examples/libdialog/gauge.c usr/share/examples/libdialog/input1.c \ 14532 usr/share/examples/libdialog/input2.c usr/share/examples/libdialog/menu1.c \ 14533 usr/share/examples/libdialog/menu2.c usr/share/examples/libdialog/menu3.c \ 14534 usr/share/examples/libdialog/msg.c usr/share/examples/libdialog/prgbox.c \ 14535 usr/share/examples/libdialog/radio1.c usr/share/examples/libdialog/radio2.c\ 14536 usr/share/examples/libdialog/radio3.c usr/share/examples/libdialog/text.c \ 14537 usr/share/examples/libdialog/tree.c usr/share/examples/libdialog/yesno.c 14538OLD_DIRS+=usr/share/examples/libdialog usr/share/examples/dialog 14539# 20101114: Remove long-obsolete MAKEDEV.8 14540OLD_FILES+=usr/share/man/man8/MAKEDEV.8.gz 14541# 20101112: vgonel(9) has gone to private API a while ago 14542OLD_FILES+=usr/share/man/man9/vgonel.9.gz 14543# 20101112: removed gasp.info 14544OLD_FILES+=usr/share/info/gasp.info.gz 14545# 20101109: machine/mutex.h removed 14546OLD_FILES+=usr/include/machine/mutex.h 14547# 20101109: headers moved from machine/ to x86/ 14548.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 14549OLD_FILES+=usr/include/machine/mptable.h 14550.endif 14551# 20101101: headers moved from machine/ to x86/ 14552.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 14553OLD_FILES+=usr/include/machine/apicreg.h 14554OLD_FILES+=usr/include/machine/mca.h 14555.endif 14556# 20101020: catch up with vm_page_sleep_if_busy rename 14557OLD_FILES+=usr/share/man/man9/vm_page_sleep_busy.9.gz 14558# 20101018: taskqueue(9) updates 14559OLD_FILES+=usr/share/man/man9/taskqueue_find.9.gz 14560# 20101011: removed subblock.h from liblzma 14561OLD_FILES+=usr/include/lzma/subblock.h 14562# 20101002: removed manpath.config 14563OLD_FILES+=etc/manpath.config 14564OLD_FILES+=usr/share/examples/etc/manpath.config 14565# 20100910: renamed sbuf_overflowed to sbuf_error 14566OLD_FILES+=usr/share/man/man9/sbuf_overflowed.9.gz 14567# 20100815: retired last traces of chooseproc(9) 14568OLD_FILES+=usr/share/man/man9/chooseproc.9.gz 14569# 20100806: removal of unused libcompat routines 14570OLD_FILES+=usr/share/man/man3/ascftime.3.gz 14571OLD_FILES+=usr/share/man/man3/cfree.3.gz 14572OLD_FILES+=usr/share/man/man3/cftime.3.gz 14573OLD_FILES+=usr/share/man/man3/getpw.3.gz 14574# 20100725: acpi_aiboost(4) removal 14575OLD_FILES+=usr/share/man/man4/acpi_aiboost.4.gz 14576# 20100724: nfsclient/nfs_lock.h moved to nfs/nfs_lock.h 14577OLD_FILES+=usr/include/nfsclient/nfs_lock.h 14578# 20100720: new clang import which bumps version from 2.0 to 2.8 14579OLD_FILES+=usr/include/clang/2.0/emmintrin.h 14580OLD_FILES+=usr/include/clang/2.0/mm_malloc.h 14581OLD_FILES+=usr/include/clang/2.0/mmintrin.h 14582OLD_FILES+=usr/include/clang/2.0/pmmintrin.h 14583OLD_FILES+=usr/include/clang/2.0/tmmintrin.h 14584OLD_FILES+=usr/include/clang/2.0/xmmintrin.h 14585OLD_DIRS+=usr/include/clang/2.0 14586# 20100706: removed pc-sysinstall's detect-vmware.sh 14587OLD_FILES+=usr/share/pc-sysinstall/backend-query/detect-vmware.sh 14588# 20100701: [powerpc] removed <machine/intr.h> 14589.if ${TARGET_ARCH} == "powerpc" 14590OLD_FILES+=usr/include/machine/intr.h 14591.endif 14592# 20100514: library version bump for versioned symbols for liblzma 14593OLD_LIBS+=usr/lib/liblzma.so.0 14594# 20100511: move GCC-specific headers to /usr/include/gcc 14595.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 14596OLD_FILES+=usr/include/emmintrin.h 14597OLD_FILES+=usr/include/mm_malloc.h 14598OLD_FILES+=usr/include/pmmintrin.h 14599OLD_FILES+=usr/include/xmmintrin.h 14600.endif 14601.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "arm" 14602OLD_FILES+=usr/include/mmintrin.h 14603.endif 14604.if ${TARGET_ARCH} == "powerpc" 14605OLD_FILES+=usr/include/altivec.h 14606OLD_FILES+=usr/include/ppc-asm.h 14607OLD_FILES+=usr/include/spe.h 14608.endif 14609# 20100416: [mips] removed <machine/psl.h> 14610.if ${TARGET_ARCH} == "mips" 14611OLD_FILES+=usr/include/machine/psl.h 14612.endif 14613# 20100415: [mips] removed unused headers 14614.if ${TARGET_ARCH} == "mips" 14615OLD_FILES+=usr/include/machine/archtype.h 14616OLD_FILES+=usr/include/machine/segments.h 14617OLD_FILES+=usr/include/machine/rm7000.h 14618OLD_FILES+=usr/include/machine/defs.h 14619OLD_FILES+=usr/include/machine/queue.h 14620.endif 14621# 20100326: gcpio removal 14622OLD_FILES+=usr/bin/gcpio 14623OLD_FILES+=usr/share/info/cpio.info.gz 14624OLD_FILES+=usr/share/man/man1/gcpio.1.gz 14625# 20100322: libz update 14626OLD_LIBS+=lib/libz.so.5 14627# 20100314: removal of regexp.h 14628OLD_FILES+=usr/include/regexp.h 14629OLD_FILES+=usr/share/man/man3/regexp.3.gz 14630OLD_FILES+=usr/share/man/man3/regsub.3.gz 14631# 20100303: actual removal of utmp.h 14632OLD_FILES+=usr/include/utmp.h 14633# 20100208: man pages moved 14634.if ${TARGET_ARCH} == "i386" 14635OLD_FILES+=usr/share/man/man4/i386/alpm.4.gz 14636OLD_FILES+=usr/share/man/man4/i386/amdpm.4.gz 14637OLD_FILES+=usr/share/man/man4/i386/mcd.4.gz 14638OLD_FILES+=usr/share/man/man4/i386/padlock.4.gz 14639OLD_FILES+=usr/share/man/man4/i386/pcf.4.gz 14640OLD_FILES+=usr/share/man/man4/i386/scd.4.gz 14641OLD_FILES+=usr/share/man/man4/i386/viapm.4.gz 14642.endif 14643# 20100122: move BSDL bc/dc USD documents to /usr/share/doc/usd 14644OLD_FILES+=usr/share/doc/papers/bc.ascii.gz 14645OLD_FILES+=usr/share/doc/papers/dc.ascii.gz 14646# 20100120: replacing GNU bc/dc with BSDL versions 14647OLD_FILES+=usr/share/examples/bc/ckbook.b 14648OLD_FILES+=usr/share/examples/bc/pi.b 14649OLD_FILES+=usr/share/examples/bc/primes.b 14650OLD_FILES+=usr/share/examples/bc/twins.b 14651OLD_FILES+=usr/share/info/dc.info.gz 14652OLD_DIRS+=usr/share/examples/bc 14653# 20100114: removal of ttyslot(3) 14654OLD_FILES+=usr/share/man/man3/ttyslot.3.gz 14655# 20100113: remove utmp.h, replace it by utmpx.h 14656OLD_FILES+=usr/share/man/man3/login.3.gz 14657OLD_FILES+=usr/share/man/man3/logout.3.gz 14658OLD_FILES+=usr/share/man/man3/logwtmp.3.gz 14659OLD_FILES+=usr/share/man/man3/ulog_endutxent.3.gz 14660OLD_FILES+=usr/share/man/man3/ulog_getutxent.3.gz 14661OLD_FILES+=usr/share/man/man3/ulog_getutxline.3.gz 14662OLD_FILES+=usr/share/man/man3/ulog_getutxuser.3.gz 14663OLD_FILES+=usr/share/man/man3/ulog_pututxline.3.gz 14664OLD_FILES+=usr/share/man/man3/ulog_setutxent.3.gz 14665OLD_FILES+=usr/share/man/man3/ulog_setutxfile.3.gz 14666OLD_FILES+=usr/share/man/man5/lastlog.5.gz 14667OLD_FILES+=usr/share/man/man5/utmp.5.gz 14668OLD_FILES+=usr/share/man/man5/wtmp.5.gz 14669OLD_LIBS+=lib/libutil.so.8 14670# 20100105: new userland semaphore implementation 14671OLD_FILES+=usr/include/sys/semaphore.h 14672# 20100103: ntptrace(8) removed 14673OLD_FILES+=usr/sbin/ntptrace 14674OLD_FILES+=usr/share/man/man8/ntptrace.8.gz 14675# 20091229: remove no longer relevant examples 14676OLD_FILES+=usr/share/examples/pppd/auth-down.sample 14677OLD_FILES+=usr/share/examples/pppd/auth-up.sample 14678OLD_FILES+=usr/share/examples/pppd/chap-secrets.sample 14679OLD_FILES+=usr/share/examples/pppd/chat.sh.sample 14680OLD_FILES+=usr/share/examples/pppd/ip-down.sample 14681OLD_FILES+=usr/share/examples/pppd/ip-up.sample 14682OLD_FILES+=usr/share/examples/pppd/options.sample 14683OLD_FILES+=usr/share/examples/pppd/pap-secrets.sample 14684OLD_FILES+=usr/share/examples/pppd/ppp.deny.sample 14685OLD_FILES+=usr/share/examples/pppd/ppp.shells.sample 14686OLD_DIRS+=usr/share/examples/pppd 14687OLD_FILES+=usr/share/examples/slattach/unit-command.sh 14688OLD_DIRS+=usr/share/examples/slattach 14689OLD_FILES+=usr/share/examples/sliplogin/slip.hosts 14690OLD_FILES+=usr/share/examples/sliplogin/slip.login 14691OLD_FILES+=usr/share/examples/sliplogin/slip.logout 14692OLD_FILES+=usr/share/examples/sliplogin/slip.slparms 14693OLD_DIRS+=usr/share/examples/sliplogin 14694OLD_FILES+=usr/share/examples/startslip/sldown.sh 14695OLD_FILES+=usr/share/examples/startslip/slip.sh 14696OLD_FILES+=usr/share/examples/startslip/slup.sh 14697OLD_DIRS+=usr/share/examples/startslip 14698# 20091202: unify rc.firewall and rc.firewall6 14699OLD_FILES+=etc/rc.d/ip6fw 14700OLD_FILES+=etc/rc.firewall6 14701OLD_FILES+=usr/share/examples/etc/rc.firewall6 14702# 20091117: removal of rc.early(8) link 14703OLD_FILES+=usr/share/man/man8/rc.early.8.gz 14704# 20091027: pselect.3 implemented as syscall 14705OLD_FILES+=usr/share/man/man3/pselect.3.gz 14706# 20091005: fusword.9 and susword.9 removed 14707OLD_FILES+=usr/share/man/man9/fusword.9.gz 14708OLD_FILES+=usr/share/man/man9/susword.9.gz 14709# 20090909: vesa and dpms promoted to be i386/amd64 common 14710OLD_FILES+=usr/include/machine/pc/vesa.h 14711OLD_FILES+=usr/share/man/man4/i386/dpms.4.gz 14712# 20090904: remove lukemftpd 14713OLD_FILES+=usr/libexec/lukemftpd 14714OLD_FILES+=usr/share/man/man5/ftpd.conf.5.gz 14715OLD_FILES+=usr/share/man/man5/ftpusers.5.gz 14716OLD_FILES+=usr/share/man/man8/lukemftpd.8.gz 14717# 20090902: BSD.{x11,x11-4}.dist are dead and BSD.local.dist lives in ports/ 14718OLD_FILES+=etc/mtree/BSD.local.dist 14719OLD_FILES+=etc/mtree/BSD.x11.dist 14720OLD_FILES+=etc/mtree/BSD.x11-4.dist 14721# 20090812: net80211 documentation overhaul 14722OLD_FILES+=usr/share/man/man9/ieee80211_add_rates.9.gz 14723OLD_FILES+=usr/share/man/man9/ieee80211_add_xrates.9.gz 14724OLD_FILES+=usr/share/man/man9/ieee80211_alloc_node.9.gz 14725OLD_FILES+=usr/share/man/man9/ieee80211_attach.9.gz 14726OLD_FILES+=usr/share/man/man9/ieee80211_begin_scan.9.gz 14727OLD_FILES+=usr/share/man/man9/ieee80211_cfgget.9.gz 14728OLD_FILES+=usr/share/man/man9/ieee80211_cfgset.9.gz 14729OLD_FILES+=usr/share/man/man9/ieee80211_chan2ieee.9.gz 14730OLD_FILES+=usr/share/man/man9/ieee80211_chan2mode.9.gz 14731OLD_FILES+=usr/share/man/man9/ieee80211_create_ibss.9.gz 14732OLD_FILES+=usr/share/man/man9/ieee80211_crypto_attach.9.gz 14733OLD_FILES+=usr/share/man/man9/ieee80211_crypto_detach.9.gz 14734OLD_FILES+=usr/share/man/man9/ieee80211_decap.9.gz 14735OLD_FILES+=usr/share/man/man9/ieee80211_dump_pkt.9.gz 14736OLD_FILES+=usr/share/man/man9/ieee80211_dup_bss.9.gz 14737OLD_FILES+=usr/share/man/man9/ieee80211_encap.9.gz 14738OLD_FILES+=usr/share/man/man9/ieee80211_end_scan.9.gz 14739OLD_FILES+=usr/share/man/man9/ieee80211_find_node.9.gz 14740OLD_FILES+=usr/share/man/man9/ieee80211_fix_rate.9.gz 14741OLD_FILES+=usr/share/man/man9/ieee80211_free_allnodes.9.gz 14742OLD_FILES+=usr/share/man/man9/ieee80211_ieee2mhz.9.gz 14743OLD_FILES+=usr/share/man/man9/ieee80211_ioctl.9.gz 14744OLD_FILES+=usr/share/man/man9/ieee80211_lookup_node.9.gz 14745OLD_FILES+=usr/share/man/man9/ieee80211_media2rate.9.gz 14746OLD_FILES+=usr/share/man/man9/ieee80211_media_change.9.gz 14747OLD_FILES+=usr/share/man/man9/ieee80211_media_init.9.gz 14748OLD_FILES+=usr/share/man/man9/ieee80211_media_status.9.gz 14749OLD_FILES+=usr/share/man/man9/ieee80211_mhz2ieee.9.gz 14750OLD_FILES+=usr/share/man/man9/ieee80211_next_scan.9.gz 14751OLD_FILES+=usr/share/man/man9/ieee80211_node_attach.9.gz 14752OLD_FILES+=usr/share/man/man9/ieee80211_node_detach.9.gz 14753OLD_FILES+=usr/share/man/man9/ieee80211_node_lateattach.9.gz 14754OLD_FILES+=usr/share/man/man9/ieee80211_print_essid.9.gz 14755OLD_FILES+=usr/share/man/man9/ieee80211_proto_attach.9.gz 14756OLD_FILES+=usr/share/man/man9/ieee80211_proto_detach.9.gz 14757OLD_FILES+=usr/share/man/man9/ieee80211_rate2media.9.gz 14758OLD_FILES+=usr/share/man/man9/ieee80211_recv_mgmt.9.gz 14759OLD_FILES+=usr/share/man/man9/ieee80211_send_mgmt.9.gz 14760OLD_FILES+=usr/share/man/man9/ieee80211_setmode.9.gz 14761OLD_FILES+=usr/share/man/man9/ieee80211_timeout_nodes.9.gz 14762OLD_FILES+=usr/share/man/man9/ieee80211_watchdog.9.gz 14763OLD_FILES+=usr/share/man/man9/ieee80211_wep_crypt.9.gz 14764# 20090801: vimage.h removed in favour of vnet.h 14765OLD_FILES+=usr/include/sys/vimage.h 14766# 20101208: libbsnmp was moved to usr/lib 14767MOVED_LIBS+=lib/libbsnmp.so.5 14768# 20090719: library version bump for 8.0 14769OLD_LIBS+=lib/libalias.so.6 14770OLD_LIBS+=lib/libavl.so.1 14771OLD_LIBS+=lib/libbegemot.so.3 14772OLD_LIBS+=lib/libbsdxml.so.3 14773OLD_LIBS+=lib/libbsnmp.so.4 14774OLD_LIBS+=lib/libcam.so.4 14775OLD_LIBS+=lib/libcrypt.so.4 14776OLD_LIBS+=lib/libcrypto.so.5 14777OLD_LIBS+=lib/libctf.so.1 14778OLD_LIBS+=lib/libdevstat.so.6 14779OLD_LIBS+=lib/libdtrace.so.1 14780OLD_LIBS+=lib/libedit.so.6 14781OLD_LIBS+=lib/libgeom.so.4 14782OLD_LIBS+=lib/libipsec.so.3 14783OLD_LIBS+=lib/libipx.so.4 14784OLD_LIBS+=lib/libkiconv.so.3 14785OLD_LIBS+=lib/libkvm.so.4 14786OLD_LIBS+=lib/libmd.so.4 14787OLD_LIBS+=lib/libncurses.so.7 14788OLD_LIBS+=lib/libncursesw.so.7 14789OLD_LIBS+=lib/libnvpair.so.1 14790OLD_LIBS+=lib/libpcap.so.6 14791OLD_LIBS+=lib/libreadline.so.7 14792OLD_LIBS+=lib/libsbuf.so.4 14793OLD_LIBS+=lib/libufs.so.4 14794OLD_LIBS+=lib/libumem.so.1 14795OLD_LIBS+=lib/libutil.so.7 14796OLD_LIBS+=lib/libuutil.so.1 14797OLD_LIBS+=lib/libz.so.4 14798OLD_LIBS+=lib/libzfs.so.1 14799OLD_LIBS+=lib/libzpool.so.1 14800OLD_LIBS+=usr/lib/libarchive.so.4 14801OLD_LIBS+=usr/lib/libauditd.so.4 14802OLD_LIBS+=usr/lib/libbluetooth.so.3 14803OLD_LIBS+=usr/lib/libbsm.so.2 14804OLD_LIBS+=usr/lib/libbz2.so.3 14805OLD_LIBS+=usr/lib/libcalendar.so.4 14806OLD_LIBS+=usr/lib/libcom_err.so.4 14807OLD_LIBS+=usr/lib/libdevinfo.so.4 14808OLD_LIBS+=usr/lib/libdialog.so.6 14809OLD_LIBS+=usr/lib/libdwarf.so.1 14810OLD_LIBS+=usr/lib/libfetch.so.5 14811OLD_LIBS+=usr/lib/libform.so.4 14812OLD_LIBS+=usr/lib/libformw.so.4 14813OLD_LIBS+=usr/lib/libftpio.so.7 14814OLD_LIBS+=usr/lib/libgnuregex.so.4 14815OLD_LIBS+=usr/lib/libgpib.so.2 14816OLD_LIBS+=usr/lib/libhistory.so.7 14817OLD_LIBS+=usr/lib/libmagic.so.3 14818OLD_LIBS+=usr/lib/libmemstat.so.2 14819OLD_LIBS+=usr/lib/libmenu.so.4 14820OLD_LIBS+=usr/lib/libmenuw.so.4 14821OLD_LIBS+=usr/lib/libmilter.so.4 14822OLD_LIBS+=usr/lib/libncp.so.3 14823OLD_LIBS+=usr/lib/libnetgraph.so.3 14824OLD_LIBS+=usr/lib/libngatm.so.3 14825OLD_LIBS+=usr/lib/libobjc.so.3 14826OLD_LIBS+=usr/lib/libopie.so.5 14827OLD_LIBS+=usr/lib/libpam.so.4 14828OLD_LIBS+=usr/lib/libpanel.so.4 14829OLD_LIBS+=usr/lib/libpanelw.so.4 14830OLD_LIBS+=usr/lib/libpmc.so.4 14831OLD_LIBS+=usr/lib/libproc.so.1 14832OLD_LIBS+=usr/lib/libradius.so.3 14833OLD_LIBS+=usr/lib/librpcsvc.so.4 14834OLD_LIBS+=usr/lib/libsdp.so.3 14835OLD_LIBS+=usr/lib/libsmb.so.3 14836OLD_LIBS+=usr/lib/libssh.so.4 14837OLD_LIBS+=usr/lib/libssl.so.5 14838OLD_LIBS+=usr/lib/libtacplus.so.3 14839OLD_LIBS+=usr/lib/libugidfw.so.3 14840OLD_LIBS+=usr/lib/libusb.so.1 14841OLD_LIBS+=usr/lib/libusbhid.so.3 14842OLD_LIBS+=usr/lib/libvgl.so.5 14843OLD_LIBS+=usr/lib/libwrap.so.5 14844OLD_LIBS+=usr/lib/libypclnt.so.3 14845OLD_LIBS+=usr/lib/pam_chroot.so.4 14846OLD_LIBS+=usr/lib/pam_deny.so.4 14847OLD_LIBS+=usr/lib/pam_echo.so.4 14848OLD_LIBS+=usr/lib/pam_exec.so.4 14849OLD_LIBS+=usr/lib/pam_ftpusers.so.4 14850OLD_LIBS+=usr/lib/pam_group.so.4 14851OLD_LIBS+=usr/lib/pam_guest.so.4 14852OLD_LIBS+=usr/lib/pam_krb5.so.4 14853OLD_LIBS+=usr/lib/pam_ksu.so.4 14854OLD_LIBS+=usr/lib/pam_lastlog.so.4 14855OLD_LIBS+=usr/lib/pam_login_access.so.4 14856OLD_LIBS+=usr/lib/pam_nologin.so.4 14857OLD_LIBS+=usr/lib/pam_opie.so.4 14858OLD_LIBS+=usr/lib/pam_opieaccess.so.4 14859OLD_LIBS+=usr/lib/pam_passwdqc.so.4 14860OLD_LIBS+=usr/lib/pam_permit.so.4 14861OLD_LIBS+=usr/lib/pam_radius.so.4 14862OLD_LIBS+=usr/lib/pam_rhosts.so.4 14863OLD_LIBS+=usr/lib/pam_rootok.so.4 14864OLD_LIBS+=usr/lib/pam_securetty.so.4 14865OLD_LIBS+=usr/lib/pam_self.so.4 14866OLD_LIBS+=usr/lib/pam_ssh.so.4 14867OLD_LIBS+=usr/lib/pam_tacplus.so.4 14868OLD_LIBS+=usr/lib/pam_unix.so.4 14869OLD_LIBS+=usr/lib/snmp_atm.so.5 14870OLD_LIBS+=usr/lib/snmp_bridge.so.5 14871OLD_LIBS+=usr/lib/snmp_hostres.so.5 14872OLD_LIBS+=usr/lib/snmp_mibII.so.5 14873OLD_LIBS+=usr/lib/snmp_netgraph.so.5 14874OLD_LIBS+=usr/lib/snmp_pf.so.5 14875# 20090718: the gdm pam.d file is no longer required 14876OLD_FILES+=etc/pam.d/gdm 14877# 20090714: net_add_domain(9) renamed to domain_add(9) 14878OLD_FILES+=usr/share/man/man9/net_add_domain.9.gz 14879# 20090713: vimage container structs removed 14880OLD_FILES+=usr/include/netinet/vinet.h 14881OLD_FILES+=usr/include/netinet6/vinet6.h 14882OLD_FILES+=usr/include/netipsec/vipsec.h 14883# 20090712: ieee80211.4 -> net80211.4 14884OLD_FILES+=usr/share/man/man4/ieee80211.4.gz 14885# 20090711: typo fixed, kproc_resume,.9 -> kproc_resume.9 14886OLD_FILES+=usr/share/man/man9/kproc_resume,.9.gz 14887# 20090709: msgctl.3 msgget.3 msgrcv.3 msgsnd.3 manual pages moved 14888OLD_FILES+=usr/share/man/man3/msgctl.3.gz 14889OLD_FILES+=usr/share/man/man3/msgget.3.gz 14890OLD_FILES+=usr/share/man/man3/msgrcv.3.gz 14891OLD_FILES+=usr/share/man/man3/msgsnd.3.gz 14892# 20090630: old kernel RPC implementation removal 14893OLD_FILES+=usr/include/nfs/rpcv2.h 14894# 20090624: update usbdi(9) 14895OLD_FILES+=usr/share/man/man9/usbd_abort_default_pipe.9.gz 14896OLD_FILES+=usr/share/man/man9/usbd_abort_pipe.9.gz 14897OLD_FILES+=usr/share/man/man9/usbd_alloc_buffer.9.gz 14898OLD_FILES+=usr/share/man/man9/usbd_alloc_xfer.9.gz 14899OLD_FILES+=usr/share/man/man9/usbd_clear_endpoint_stall.9.gz 14900OLD_FILES+=usr/share/man/man9/usbd_clear_endpoint_stall_async.9.gz 14901OLD_FILES+=usr/share/man/man9/usbd_clear_endpoint_toggle.9.gz 14902OLD_FILES+=usr/share/man/man9/usbd_close_pipe.9.gz 14903OLD_FILES+=usr/share/man/man9/usbd_device2interface_handle.9.gz 14904OLD_FILES+=usr/share/man/man9/usbd_do_request_async.9.gz 14905OLD_FILES+=usr/share/man/man9/usbd_do_request_flags_pipe.9.gz 14906OLD_FILES+=usr/share/man/man9/usbd_endpoint_count.9.gz 14907OLD_FILES+=usr/share/man/man9/usbd_find_edesc.9.gz 14908OLD_FILES+=usr/share/man/man9/usbd_find_idesc.9.gz 14909OLD_FILES+=usr/share/man/man9/usbd_free_buffer.9.gz 14910OLD_FILES+=usr/share/man/man9/usbd_free_xfer.9.gz 14911OLD_FILES+=usr/share/man/man9/usbd_get_buffer.9.gz 14912OLD_FILES+=usr/share/man/man9/usbd_get_config.9.gz 14913OLD_FILES+=usr/share/man/man9/usbd_get_config_desc.9.gz 14914OLD_FILES+=usr/share/man/man9/usbd_get_config_desc_full.9.gz 14915OLD_FILES+=usr/share/man/man9/usbd_get_config_descriptor.9.gz 14916OLD_FILES+=usr/share/man/man9/usbd_get_device_descriptor.9.gz 14917OLD_FILES+=usr/share/man/man9/usbd_get_endpoint_descriptor.9.gz 14918OLD_FILES+=usr/share/man/man9/usbd_get_interface_altindex.9.gz 14919OLD_FILES+=usr/share/man/man9/usbd_get_interface_descriptor.9.gz 14920OLD_FILES+=usr/share/man/man9/usbd_get_no_alts.9.gz 14921OLD_FILES+=usr/share/man/man9/usbd_get_quirks.9.gz 14922OLD_FILES+=usr/share/man/man9/usbd_get_speed.9.gz 14923OLD_FILES+=usr/share/man/man9/usbd_get_string.9.gz 14924OLD_FILES+=usr/share/man/man9/usbd_get_string_desc.9.gz 14925OLD_FILES+=usr/share/man/man9/usbd_get_xfer_status.9.gz 14926OLD_FILES+=usr/share/man/man9/usbd_interface2device_handle.9.gz 14927OLD_FILES+=usr/share/man/man9/usbd_interface2endpoint_descriptor.9.gz 14928OLD_FILES+=usr/share/man/man9/usbd_interface_count.9.gz 14929OLD_FILES+=usr/share/man/man9/usbd_open_pipe.9.gz 14930OLD_FILES+=usr/share/man/man9/usbd_open_pipe_intr.9.gz 14931OLD_FILES+=usr/share/man/man9/usbd_pipe2device_handle.9.gz 14932OLD_FILES+=usr/share/man/man9/usbd_set_config_index.9.gz 14933OLD_FILES+=usr/share/man/man9/usbd_set_config_no.9.gz 14934OLD_FILES+=usr/share/man/man9/usbd_set_interface.9.gz 14935OLD_FILES+=usr/share/man/man9/usbd_setup_default_xfer.9.gz 14936OLD_FILES+=usr/share/man/man9/usbd_setup_isoc_xfer.9.gz 14937OLD_FILES+=usr/share/man/man9/usbd_setup_xfer.9.gz 14938OLD_FILES+=usr/share/man/man9/usbd_sync_transfer.9.gz 14939OLD_FILES+=usr/share/man/man9/usbd_transfer.9.gz 14940OLD_FILES+=usr/share/man/man9/usb_find_desc.9.gz 14941# 20090623: number of headers needed for a usb driver reduced 14942OLD_FILES+=usr/include/dev/usb/usb_defs.h 14943OLD_FILES+=usr/include/dev/usb/usb_error.h 14944OLD_FILES+=usr/include/dev/usb/usb_handle_request.h 14945OLD_FILES+=usr/include/dev/usb/usb_hid.h 14946OLD_FILES+=usr/include/dev/usb/usb_lookup.h 14947OLD_FILES+=usr/include/dev/usb/usb_mfunc.h 14948OLD_FILES+=usr/include/dev/usb/usb_parse.h 14949OLD_FILES+=usr/include/dev/usb/usb_revision.h 14950# 20090609: devclass_add_driver is no longer public 14951OLD_FILES+=usr/share/man/man9/devclass_add_driver.9.gz 14952OLD_FILES+=usr/share/man/man9/devclass_delete_driver.9.gz 14953OLD_FILES+=usr/share/man/man9/devclass_find_driver.9.gz 14954# 20090605: removal of clists 14955OLD_FILES+=usr/include/sys/clist.h 14956# 20090602: removal of window(1) 14957OLD_FILES+=usr/bin/window 14958OLD_FILES+=usr/share/man/man1/window.1.gz 14959# 20090531: bind 9.6.1rc1 import 14960OLD_LIBS+=usr/lib/liblwres.so.30 14961# 20090530: removal of early.sh 14962OLD_FILES+=etc/rc.d/early.sh 14963# 20090527: renaming of S{LIST,TAILQ}_REMOVE_NEXT() to _REMOVE_AFTER() 14964OLD_FILES+=usr/share/man/man3/SLIST_REMOVE_NEXT.3.gz 14965OLD_FILES+=usr/share/man/man3/STAILQ_REMOVE_NEXT.3.gz 14966# 20090527: removal of legacy USB stack 14967OLD_FILES+=usr/include/legacy/dev/usb/dsbr100io.h 14968OLD_FILES+=usr/include/legacy/dev/usb/ehcireg.h 14969OLD_FILES+=usr/include/legacy/dev/usb/ehcivar.h 14970OLD_FILES+=usr/include/legacy/dev/usb/hid.h 14971OLD_FILES+=usr/include/legacy/dev/usb/if_urtwreg.h 14972OLD_FILES+=usr/include/legacy/dev/usb/if_urtwvar.h 14973OLD_FILES+=usr/include/legacy/dev/usb/ohcireg.h 14974OLD_FILES+=usr/include/legacy/dev/usb/ohcivar.h 14975OLD_FILES+=usr/include/legacy/dev/usb/rio500_usb.h 14976OLD_FILES+=usr/include/legacy/dev/usb/rt2573_ucode.h 14977OLD_FILES+=usr/include/legacy/dev/usb/sl811hsreg.h 14978OLD_FILES+=usr/include/legacy/dev/usb/sl811hsvar.h 14979OLD_FILES+=usr/include/legacy/dev/usb/ubser.h 14980OLD_FILES+=usr/include/legacy/dev/usb/ucomvar.h 14981OLD_FILES+=usr/include/legacy/dev/usb/udbp.h 14982OLD_FILES+=usr/include/legacy/dev/usb/uftdireg.h 14983OLD_FILES+=usr/include/legacy/dev/usb/ugraphire_rdesc.h 14984OLD_FILES+=usr/include/legacy/dev/usb/uhcireg.h 14985OLD_FILES+=usr/include/legacy/dev/usb/uhcivar.h 14986OLD_FILES+=usr/include/legacy/dev/usb/usb.h 14987OLD_FILES+=usr/include/legacy/dev/usb/usb_mem.h 14988OLD_FILES+=usr/include/legacy/dev/usb/usb_port.h 14989OLD_FILES+=usr/include/legacy/dev/usb/usb_quirks.h 14990OLD_FILES+=usr/include/legacy/dev/usb/usbcdc.h 14991OLD_FILES+=usr/include/legacy/dev/usb/usbdi.h 14992OLD_FILES+=usr/include/legacy/dev/usb/usbdi_util.h 14993OLD_FILES+=usr/include/legacy/dev/usb/usbdivar.h 14994OLD_FILES+=usr/include/legacy/dev/usb/usbhid.h 14995OLD_FILES+=usr/include/legacy/dev/usb/uxb360gp_rdesc.h 14996OLD_DIRS+=usr/include/legacy/dev/usb 14997OLD_DIRS+=usr/include/legacy/dev 14998OLD_DIRS+=usr/include/legacy 14999# 20090526: removal of makekey(8) 15000OLD_FILES+=usr/libexec/makekey 15001OLD_FILES+=usr/share/man/man8/makekey.8.gz 15002# 20090522: removal of University of Michigan NFSv4 client 15003OLD_FILES+=etc/rc.d/idmapd 15004OLD_FILES+=sbin/idmapd 15005OLD_FILES+=sbin/mount_nfs4 15006OLD_FILES+=usr/share/man/man8/idmapd.8.gz 15007OLD_FILES+=usr/share/man/man8/mount_nfs4.8.gz 15008# 20090513: removal of legacy versions of USB network interface drivers 15009OLD_FILES+=usr/include/legacy/dev/usb/if_upgtvar.h 15010OLD_FILES+=usr/include/legacy/dev/usb/usb_ethersubr.h 15011# 20090417: removal of legacy versions of USB network interface drivers 15012OLD_FILES+=usr/include/legacy/dev/usb/if_auereg.h 15013OLD_FILES+=usr/include/legacy/dev/usb/if_axereg.h 15014OLD_FILES+=usr/include/legacy/dev/usb/if_cdcereg.h 15015OLD_FILES+=usr/include/legacy/dev/usb/if_cuereg.h 15016OLD_FILES+=usr/include/legacy/dev/usb/if_kuereg.h 15017OLD_FILES+=usr/include/legacy/dev/usb/if_ruereg.h 15018OLD_FILES+=usr/include/legacy/dev/usb/if_rumreg.h 15019OLD_FILES+=usr/include/legacy/dev/usb/if_rumvar.h 15020OLD_FILES+=usr/include/legacy/dev/usb/if_udavreg.h 15021OLD_FILES+=usr/include/legacy/dev/usb/if_uralreg.h 15022OLD_FILES+=usr/include/legacy/dev/usb/if_uralvar.h 15023OLD_FILES+=usr/include/legacy/dev/usb/if_zydfw.h 15024OLD_FILES+=usr/include/legacy/dev/usb/if_zydreg.h 15025OLD_FILES+=usr/include/legacy/dev/usb/kue_fw.h 15026# 20090416: removal of ar(4), ray(4), sr(4), raycontrol(8) 15027OLD_FILES+=usr/sbin/raycontrol 15028OLD_FILES+=usr/share/man/man4/i386/ar.4.gz 15029OLD_FILES+=usr/share/man/man4/i386/ray.4.gz 15030OLD_FILES+=usr/share/man/man4/i386/sr.4.gz 15031OLD_FILES+=usr/share/man/man8/raycontrol.8.gz 15032# 20090410: VOP_LEASE.9 removed 15033OLD_FILES+=usr/share/man/man9/VOP_LEASE.9.gz 15034# 20090406: usb_sw_transfer.h removed 15035OLD_FILES+=usr/include/dev/usb/usb_sw_transfer.h 15036# 20090405: removal of if_ppp(4) and if_sl(4) 15037OLD_FILES+=sbin/slattach rescue/slattach 15038OLD_FILES+=sbin/startslip rescue/startslip 15039OLD_FILES+=usr/include/net/if_ppp.h 15040OLD_FILES+=usr/include/net/if_pppvar.h 15041OLD_FILES+=usr/include/net/if_slvar.h 15042OLD_FILES+=usr/include/net/ppp_comp.h 15043OLD_FILES+=usr/include/net/slip.h 15044OLD_FILES+=usr/sbin/sliplogin 15045OLD_FILES+=usr/sbin/slstat 15046OLD_FILES+=usr/sbin/pppd 15047OLD_FILES+=usr/sbin/pppstats 15048OLD_FILES+=usr/share/man/man1/startslip.1.gz 15049OLD_FILES+=usr/share/man/man4/if_ppp.4.gz 15050OLD_FILES+=usr/share/man/man4/if_sl.4.gz 15051OLD_FILES+=usr/share/man/man4/ppp.4.gz 15052OLD_FILES+=usr/share/man/man4/sl.4.gz 15053OLD_FILES+=usr/share/man/man8/pppd.8.gz 15054OLD_FILES+=usr/share/man/man8/pppstats.8.gz 15055OLD_FILES+=usr/share/man/man8/slattach.8.gz 15056OLD_FILES+=usr/share/man/man8/slip.8.gz 15057OLD_FILES+=usr/share/man/man8/sliplogin.8.gz 15058OLD_FILES+=usr/share/man/man8/slstat.8.gz 15059# 20090321: libpcap upgraded to 1.0.0 15060OLD_LIBS+=lib/libpcap.so.5 15061# 20090319: uscanner(4) has been removed 15062OLD_FILES+=usr/share/man/man4/uscanner.4.gz 15063# 20090313: k8temp(4) renamed to amdtemp(4) 15064OLD_FILES+=usr/share/man/man4/k8temp.4.gz 15065# 20090308: libusb.so.1 renamed 15066OLD_LIBS+=usr/lib/libusb20.so.1 15067OLD_FILES+=usr/lib/libusb20.a 15068OLD_FILES+=usr/lib/libusb20.so 15069OLD_FILES+=usr/lib/libusb20_p.a 15070OLD_FILES+=usr/include/libusb20_compat01.h 15071OLD_FILES+=usr/include/libusb20_compat10.h 15072# 20090226: libmp(3) functions renamed 15073OLD_LIBS+=usr/lib/libmp.so.6 15074# 20090223: changeover of USB stacks 15075OLD_FILES+=usr/include/dev/usb2/include/ufm2_ioctl.h 15076OLD_FILES+=usr/include/dev/usb2/include/urio2_ioctl.h 15077OLD_FILES+=usr/include/dev/usb2/include/usb2_cdc.h 15078OLD_FILES+=usr/include/dev/usb2/include/usb2_defs.h 15079OLD_FILES+=usr/include/dev/usb2/include/usb2_devid.h 15080OLD_FILES+=usr/include/dev/usb2/include/usb2_devtable.h 15081OLD_FILES+=usr/include/dev/usb2/include/usb2_endian.h 15082OLD_FILES+=usr/include/dev/usb2/include/usb2_error.h 15083OLD_FILES+=usr/include/dev/usb2/include/usb2_hid.h 15084OLD_FILES+=usr/include/dev/usb2/include/usb2_ioctl.h 15085OLD_FILES+=usr/include/dev/usb2/include/usb2_mfunc.h 15086OLD_FILES+=usr/include/dev/usb2/include/usb2_revision.h 15087OLD_FILES+=usr/include/dev/usb2/include/usb2_standard.h 15088OLD_DIRS+=usr/include/dev/usb2/include 15089OLD_DIRS+=usr/include/dev/usb2 15090OLD_FILES+=usr/include/dev/usb/dsbr100io.h 15091OLD_FILES+=usr/include/dev/usb/ehcireg.h 15092OLD_FILES+=usr/include/dev/usb/ehcivar.h 15093OLD_FILES+=usr/include/dev/usb/hid.h 15094OLD_FILES+=usr/include/dev/usb/if_auereg.h 15095OLD_FILES+=usr/include/dev/usb/if_axereg.h 15096OLD_FILES+=usr/include/dev/usb/if_cdcereg.h 15097OLD_FILES+=usr/include/dev/usb/if_cuereg.h 15098OLD_FILES+=usr/include/dev/usb/if_kuereg.h 15099OLD_FILES+=usr/include/dev/usb/if_ruereg.h 15100OLD_FILES+=usr/include/dev/usb/if_rumreg.h 15101OLD_FILES+=usr/include/dev/usb/if_rumvar.h 15102OLD_FILES+=usr/include/dev/usb/if_udavreg.h 15103OLD_FILES+=usr/include/dev/usb/if_upgtvar.h 15104OLD_FILES+=usr/include/dev/usb/if_uralreg.h 15105OLD_FILES+=usr/include/dev/usb/if_uralvar.h 15106OLD_FILES+=usr/include/dev/usb/if_urtwreg.h 15107OLD_FILES+=usr/include/dev/usb/if_urtwvar.h 15108OLD_FILES+=usr/include/dev/usb/if_zydfw.h 15109OLD_FILES+=usr/include/dev/usb/if_zydreg.h 15110OLD_FILES+=usr/include/dev/usb/kue_fw.h 15111OLD_FILES+=usr/include/dev/usb/ohcireg.h 15112OLD_FILES+=usr/include/dev/usb/ohcivar.h 15113OLD_FILES+=usr/include/dev/usb/rio500_usb.h 15114OLD_FILES+=usr/include/dev/usb/rt2573_ucode.h 15115OLD_FILES+=usr/include/dev/usb/sl811hsreg.h 15116OLD_FILES+=usr/include/dev/usb/sl811hsvar.h 15117OLD_FILES+=usr/include/dev/usb/ubser.h 15118OLD_FILES+=usr/include/dev/usb/ucomvar.h 15119OLD_FILES+=usr/include/dev/usb/udbp.h 15120OLD_FILES+=usr/include/dev/usb/uftdireg.h 15121OLD_FILES+=usr/include/dev/usb/ugraphire_rdesc.h 15122OLD_FILES+=usr/include/dev/usb/uhcireg.h 15123OLD_FILES+=usr/include/dev/usb/uhcivar.h 15124OLD_FILES+=usr/include/dev/usb/usb_ethersubr.h 15125OLD_FILES+=usr/include/dev/usb/usb_mem.h 15126OLD_FILES+=usr/include/dev/usb/usb_port.h 15127OLD_FILES+=usr/include/dev/usb/usb_quirks.h 15128OLD_FILES+=usr/include/dev/usb/usbcdc.h 15129OLD_FILES+=usr/include/dev/usb/usbdivar.h 15130OLD_FILES+=usr/include/dev/usb/uxb360gp_rdesc.h 15131OLD_FILES+=usr/sbin/usbdevs 15132OLD_FILES+=usr/share/man/man8/usbdevs.8.gz 15133# 20090203: removal of pccard header files 15134OLD_FILES+=usr/include/pccard/cardinfo.h 15135OLD_FILES+=usr/include/pccard/cis.h 15136OLD_DIRS+=usr/include/pccard 15137# 20090203: adding_user.8 moved to adding_user.7 15138OLD_FILES+=usr/share/man/man8/adding_user.8.gz 15139# 20090102: file 4.26 import 15140OLD_FILES+=usr/share/misc/magic.mime 15141OLD_FILES+=usr/share/misc/magic.mime.mgc 15142# 20081223: bind 9.4.3 import, nsupdate.8 moved to nsupdate.1 15143OLD_FILES+=usr/share/man/man8/nsupdate.8.gz 15144# 20081223: ipprotosw.h removed 15145OLD_FILES+=usr/include/netinet/ipprotosw.h 15146# 20081123: vfs_mountedon.9 removed 15147OLD_FILES+=usr/share/man/man9/vfs_mountedon.9.gz 15148# 20081023: FREE.9 and MALLOC.9 removed 15149OLD_FILES+=usr/share/man/man9/FREE.9.gz 15150OLD_FILES+=usr/share/man/man9/MALLOC.9.gz 15151# 20080928: removal of inaccurate device_ids(9) manual page 15152OLD_FILES+=usr/share/man/man9/device_ids.9.gz 15153OLD_FILES+=usr/share/man/man9/major.9.gz 15154OLD_FILES+=usr/share/man/man9/minor.9.gz 15155OLD_FILES+=usr/share/man/man9/umajor.9.gz 15156OLD_FILES+=usr/share/man/man9/uminor.9.gz 15157# 20080917: removal of manpage for axed kernel primitive suser(9) 15158OLD_FILES+=usr/share/man/man9/suser.9.gz 15159OLD_FILES+=usr/share/man/man9/suser_cred.9.gz 15160# 20080913: pax removed from rescue 15161OLD_FILES+=rescue/pax 15162# 20080823: removal of unneeded pt_chown, to implement grantpt(3) 15163OLD_FILES+=usr/libexec/pt_chown 15164# 20080822: ntp 4.2.4p5 import 15165OLD_FILES+=usr/share/doc/ntp/driver23.html 15166OLD_FILES+=usr/share/doc/ntp/driver24.html 15167# 20080821: several man pages moved from man4.i386 to man4 15168.if ${TARGET_ARCH} == "i386" 15169OLD_FILES+=usr/share/man/man4/i386/acpi_aiboost.4.gz 15170OLD_FILES+=usr/share/man/man4/i386/acpi_asus.4.gz 15171OLD_FILES+=usr/share/man/man4/i386/acpi_fujitsu.4.gz 15172OLD_FILES+=usr/share/man/man4/i386/acpi_ibm.4.gz 15173OLD_FILES+=usr/share/man/man4/i386/acpi_panasonic.4.gz 15174OLD_FILES+=usr/share/man/man4/i386/acpi_sony.4.gz 15175OLD_FILES+=usr/share/man/man4/i386/acpi_toshiba.4.gz 15176OLD_FILES+=usr/share/man/man4/i386/ichwd.4.gz 15177OLD_FILES+=usr/share/man/man4/i386/if_ndis.4.gz 15178OLD_FILES+=usr/share/man/man4/i386/io.4.gz 15179OLD_FILES+=usr/share/man/man4/i386/linux.4.gz 15180OLD_FILES+=usr/share/man/man4/i386/ndis.4.gz 15181.endif 15182# 20080820: MPSAFE TTY layer integrated 15183OLD_FILES+=usr/include/sys/linedisc.h 15184OLD_FILES+=usr/share/man/man3/posix_openpt.3.gz 15185# 20080725: sgtty.h removed 15186OLD_FILES+=usr/include/sgtty.h 15187# 20080706: bsdlabel(8) removed on powerpc 15188.if ${TARGET_ARCH} == "powerpc" 15189OLD_FILES+=sbin/bsdlabel 15190OLD_FILES+=usr/share/man/man8/bsdlabel.8.gz 15191.endif 15192# 20080704: sbsh(4) removed 15193OLD_FILES+=usr/share/man/man4/if_sbsh.4.gz 15194OLD_FILES+=usr/share/man/man4/sbsh.4.gz 15195# 20080704: cnw(4) removed 15196OLD_FILES+=usr/share/man/man4/if_cnw.4.gz 15197OLD_FILES+=usr/share/man/man4/cnw.4.gz 15198# 20080704: oltr(4) removed 15199.if ${TARGET_ARCH} == "i386" 15200OLD_FILES+=usr/share/man/man4/i386/if_oltr.4.gz 15201OLD_FILES+=usr/share/man/man4/i386/oltr.4.gz 15202.endif 15203# 20080704: arl(4) removed 15204.if ${TARGET_ARCH} == "i386" 15205OLD_FILES+=usr/sbin/arlcontrol 15206OLD_FILES+=usr/share/man/man4/i386/arl.4.gz 15207OLD_FILES+=usr/share/man/man8/arlcontrol.8.gz 15208.endif 15209# 20080703: sunlabel only for sparc64 15210.if ${TARGET_ARCH} != "sparc64" 15211OLD_FILES+=sbin/sunlabel 15212OLD_FILES+=usr/share/man/man8/sunlabel.8.gz 15213.endif 15214# 20080701: wpa_supplicant.conf moved to share/examples/etc/ 15215OLD_FILES+=usr/share/examples/wpa_supplicant/wpa_supplicant.conf 15216OLD_DIRS+=usr/share/examples/wpa_supplicant 15217# 20080614: pecoff image activator removed 15218.if ${TARGET_ARCH} == "i386" 15219OLD_FILES+=usr/include/machine/pecoff_machdep.h 15220.endif 15221# 20080614: sgtty removed 15222OLD_FILES+=usr/include/sys/ttychars.h 15223OLD_FILES+=usr/include/sys/ttydev.h 15224OLD_FILES+=usr/share/man/man3/gtty.3.gz 15225OLD_FILES+=usr/share/man/man3/stty.3.gz 15226# 20080609: gpt(8) removed 15227OLD_FILES+=sbin/gpt 15228OLD_FILES+=usr/share/man/man8/gpt.8.gz 15229# 20080525: I4B removed 15230OLD_FILES+=etc/isdn/answer 15231OLD_FILES+=etc/isdn/isdntel 15232OLD_FILES+=etc/isdn/record 15233OLD_FILES+=etc/isdn/tell 15234OLD_FILES+=etc/isdn/tell-record 15235OLD_FILES+=etc/isdn/unknown_incoming 15236OLD_FILES+=etc/isdn/holidays.D 15237OLD_FILES+=etc/isdn/isdnd.rates.A 15238OLD_FILES+=etc/isdn/isdnd.rates.D 15239OLD_FILES+=etc/isdn/isdnd.rates.F 15240OLD_FILES+=etc/isdn/isdnd.rates.L 15241OLD_FILES+=etc/isdn/isdnd.rates.UK.BT 15242OLD_FILES+=etc/isdn/isdnd.rc.sample 15243OLD_FILES+=etc/isdn/isdntel.alias.sample 15244OLD_DIRS+=etc/isdn 15245OLD_FILES+=etc/rc.d/isdnd 15246OLD_FILES+=usr/include/i4b/i4b_cause.h 15247OLD_FILES+=usr/include/i4b/i4b_debug.h 15248OLD_FILES+=usr/include/i4b/i4b_ioctl.h 15249OLD_FILES+=usr/include/i4b/i4b_rbch_ioctl.h 15250OLD_FILES+=usr/include/i4b/i4b_tel_ioctl.h 15251OLD_FILES+=usr/include/i4b/i4b_trace.h 15252OLD_DIRS+=usr/include/i4b 15253OLD_FILES+=usr/sbin/dtmfdecode 15254OLD_FILES+=usr/sbin/g711conv 15255OLD_FILES+=usr/sbin/isdnd 15256OLD_FILES+=usr/sbin/isdndebug 15257OLD_FILES+=usr/sbin/isdndecode 15258OLD_FILES+=usr/sbin/isdnmonitor 15259OLD_FILES+=usr/sbin/isdnphone 15260OLD_FILES+=usr/sbin/isdntel 15261OLD_FILES+=usr/sbin/isdntelctl 15262OLD_FILES+=usr/sbin/isdntrace 15263OLD_FILES+=usr/share/isdn/0.al 15264OLD_FILES+=usr/share/isdn/1.al 15265OLD_FILES+=usr/share/isdn/2.al 15266OLD_FILES+=usr/share/isdn/3.al 15267OLD_FILES+=usr/share/isdn/4.al 15268OLD_FILES+=usr/share/isdn/5.al 15269OLD_FILES+=usr/share/isdn/6.al 15270OLD_FILES+=usr/share/isdn/7.al 15271OLD_FILES+=usr/share/isdn/8.al 15272OLD_FILES+=usr/share/isdn/9.al 15273OLD_FILES+=usr/share/isdn/beep.al 15274OLD_FILES+=usr/share/isdn/msg.al 15275OLD_DIRS+=usr/share/isdn 15276OLD_FILES+=usr/share/man/man1/dtmfdecode.1.gz 15277OLD_FILES+=usr/share/man/man1/g711conv.1.gz 15278OLD_FILES+=usr/share/man/man4/i4b.4.gz 15279OLD_FILES+=usr/share/man/man4/i4bcapi.4.gz 15280OLD_FILES+=usr/share/man/man4/i4bctl.4.gz 15281OLD_FILES+=usr/share/man/man4/i4bing.4.gz 15282OLD_FILES+=usr/share/man/man4/i4bipr.4.gz 15283OLD_FILES+=usr/share/man/man4/i4bisppp.4.gz 15284OLD_FILES+=usr/share/man/man4/i4bq921.4.gz 15285OLD_FILES+=usr/share/man/man4/i4bq931.4.gz 15286OLD_FILES+=usr/share/man/man4/i4brbch.4.gz 15287OLD_FILES+=usr/share/man/man4/i4btel.4.gz 15288OLD_FILES+=usr/share/man/man4/i4btrc.4.gz 15289OLD_FILES+=usr/share/man/man4/iavc.4.gz 15290OLD_FILES+=usr/share/man/man4/isic.4.gz 15291OLD_FILES+=usr/share/man/man4/ifpi.4.gz 15292OLD_FILES+=usr/share/man/man4/ifpi2.4.gz 15293OLD_FILES+=usr/share/man/man4/ifpnp.4.gz 15294OLD_FILES+=usr/share/man/man4/ihfc.4.gz 15295OLD_FILES+=usr/share/man/man4/itjc.4.gz 15296OLD_FILES+=usr/share/man/man4/iwic.4.gz 15297OLD_FILES+=usr/share/man/man5/isdnd.rc.5.gz 15298OLD_FILES+=usr/share/man/man5/isdnd.rates.5.gz 15299OLD_FILES+=usr/share/man/man5/isdnd.acct.5.gz 15300OLD_FILES+=usr/share/man/man8/isdnd.8.gz 15301OLD_FILES+=usr/share/man/man8/isdndebug.8.gz 15302OLD_FILES+=usr/share/man/man8/isdndecode.8.gz 15303OLD_FILES+=usr/share/man/man8/isdnmonitor.8.gz 15304OLD_FILES+=usr/share/man/man8/isdnphone.8.gz 15305OLD_FILES+=usr/share/man/man8/isdntel.8.gz 15306OLD_FILES+=usr/share/man/man8/isdntelctl.8.gz 15307OLD_FILES+=usr/share/man/man8/isdntrace.8.gz 15308OLD_FILES+=usr/share/examples/isdn/contrib/README 15309OLD_FILES+=usr/share/examples/isdn/contrib/anleitung.ppp 15310OLD_FILES+=usr/share/examples/isdn/contrib/answer.c 15311OLD_FILES+=usr/share/examples/isdn/contrib/answer.sh 15312OLD_FILES+=usr/share/examples/isdn/contrib/convert.sh 15313OLD_FILES+=usr/share/examples/isdn/contrib/hplay.c 15314OLD_FILES+=usr/share/examples/isdn/contrib/i4b-ppp-newbie.txt 15315OLD_FILES+=usr/share/examples/isdn/contrib/isdnctl 15316OLD_FILES+=usr/share/examples/isdn/contrib/isdnd_acct 15317OLD_FILES+=usr/share/examples/isdn/contrib/isdnd_acct.pl 15318OLD_FILES+=usr/share/examples/isdn/contrib/isdntelmux.c 15319OLD_FILES+=usr/share/examples/isdn/contrib/mrtg-isp0.sh 15320OLD_FILES+=usr/share/examples/isdn/i4brunppp/Makefile 15321OLD_FILES+=usr/share/examples/isdn/i4brunppp/README 15322OLD_FILES+=usr/share/examples/isdn/i4brunppp/i4brunppp-isdnd.rc 15323OLD_FILES+=usr/share/examples/isdn/i4brunppp/i4brunppp.8 15324OLD_FILES+=usr/share/examples/isdn/i4brunppp/i4brunppp.c 15325OLD_FILES+=usr/share/examples/isdn/v21/Makefile 15326OLD_FILES+=usr/share/examples/isdn/v21/README 15327OLD_FILES+=usr/share/examples/isdn/v21/v21modem.c 15328OLD_FILES+=usr/share/examples/isdn/FAQ 15329OLD_FILES+=usr/share/examples/isdn/KERNEL 15330OLD_FILES+=usr/share/examples/isdn/Overview 15331OLD_FILES+=usr/share/examples/isdn/README 15332OLD_FILES+=usr/share/examples/isdn/ROADMAP 15333OLD_FILES+=usr/share/examples/isdn/ReleaseNotes 15334OLD_FILES+=usr/share/examples/isdn/Resources 15335OLD_FILES+=usr/share/examples/isdn/SupportedCards 15336OLD_FILES+=usr/share/examples/isdn/ThankYou 15337OLD_DIRS+=usr/share/examples/isdn/contrib 15338OLD_DIRS+=usr/share/examples/isdn/i4brunppp 15339OLD_DIRS+=usr/share/examples/isdn/v21 15340OLD_DIRS+=usr/share/examples/isdn 15341OLD_FILES+=usr/share/examples/ppp/isdnd.rc 15342OLD_FILES+=usr/share/examples/ppp/ppp.conf.isdn 15343# 20080525: ng_atmpif removed 15344OLD_FILES+=usr/include/netgraph/atm/ng_atmpif.h 15345OLD_FILES+=usr/share/man/man4/ng_atmpif.4.gz 15346# 20080522: pmap_addr_hint removed 15347OLD_FILES+=usr/share/man/man9/pmap_addr_hint.9.gz 15348# 20080517: ipsec_osdep.h removed 15349OLD_FILES+=usr/include/netipsec/ipsec_osdep.h 15350# 20080507: heimdal 1.1 import 15351OLD_LIBS+=usr/lib/libasn1.so.9 15352OLD_LIBS+=usr/lib/libgssapi.so.9 15353OLD_LIBS+=usr/lib/libgssapi_krb5.so.9 15354OLD_LIBS+=usr/lib/libhdb.so.9 15355OLD_LIBS+=usr/lib/libkadm5clnt.so.9 15356OLD_LIBS+=usr/lib/libkadm5srv.so.9 15357OLD_LIBS+=usr/lib/libkafs5.so.9 15358OLD_LIBS+=usr/lib/libkrb5.so.9 15359OLD_LIBS+=usr/lib/libroken.so.9 15360# 20080420: Symbol card support dropped 15361OLD_FILES+=usr/include/dev/wi/spectrum24t_cf.h 15362# 20080420: awi removal 15363OLD_FILES+=usr/share/man/man4/awi.4.gz 15364OLD_FILES+=usr/share/man/man4/if_awi.4.gz 15365# 20080331: pkg_sign has been removed 15366OLD_FILES+=usr/sbin/pkg_check 15367OLD_FILES+=usr/sbin/pkg_sign 15368OLD_FILES+=usr/share/man/man1/pkg_check.1.gz 15369OLD_FILES+=usr/share/man/man1/pkg_sign.1.gz 15370# 20080314: stack_print(9) mlink fixed 15371OLD_FILES+=usr/share/man/man9/stack_printf.9.gz 15372# 20080312: libkse removal 15373OLD_FILES+=usr/include/sys/kse.h 15374OLD_FILES+=usr/lib/libkse.so 15375OLD_LIBS+=usr/lib/libkse.so.3 15376OLD_FILES+=usr/share/man/man2/kse.2.gz 15377OLD_FILES+=usr/share/man/man2/kse_create.2.gz 15378OLD_FILES+=usr/share/man/man2/kse_exit.2.gz 15379OLD_FILES+=usr/share/man/man2/kse_release.2.gz 15380OLD_FILES+=usr/share/man/man2/kse_switchin.2.gz 15381OLD_FILES+=usr/share/man/man2/kse_thr_interrupt.2.gz 15382OLD_FILES+=usr/share/man/man2/kse_wakeup.2.gz 15383# 20080225: bsdar/bsdranlib rename to ar/ranlib 15384OLD_FILES+=usr/bin/bsdar 15385OLD_FILES+=usr/bin/bsdranlib 15386OLD_FILES+=usr/share/man/man1/bsdar.1.gz 15387OLD_FILES+=usr/share/man/man1/bsdranlib.1.gz 15388# 20080220: geom_lvm rename to geom_linux_lvm 15389OLD_FILES+=usr/share/man/man4/geom_lvm.4.gz 15390# 20080126: oldcard.4 removal 15391OLD_FILES+=usr/share/man/man4/card.4.gz 15392OLD_FILES+=usr/share/man/man4/oldcard.4.gz 15393# 20080122: Removed from the tree 15394OLD_FILES+=usr/share/man/man9/BUF_REFCNT.9.gz 15395# 20080108: Moved to section 2 15396OLD_FILES+=usr/share/man/man3/shm_open.3.gz 15397OLD_FILES+=usr/share/man/man3/shm_unlink.3.gz 15398# 20071207: Merged with fortunes-o.real 15399OLD_FILES+=usr/share/games/fortune/fortunes2-o 15400OLD_FILES+=usr/share/games/fortune/fortunes2-o.dat 15401# 20071201: Removal of XRPU driver 15402OLD_FILES+=usr/include/sys/xrpuio.h 15403# 20071129: Disabled static versions of libkse by default 15404OLD_FILES+=usr/lib/libkse.a 15405OLD_FILES+=usr/lib/libkse_p.a 15406OLD_FILES+=usr/lib/libkse_pic.a 15407# 20071129: Removed a Solaris compatibility header 15408OLD_FILES+=usr/include/sys/_elf_solaris.h 15409# 20071125: Renamed to pmc_get_msr() 15410OLD_FILES+=usr/share/man/man3/pmc_x86_get_msr.3.gz 15411# 20071108: Removed very crunch OLDCARD support file 15412OLD_FILES+=etc/defaults/pccard.conf 15413# 20071025: rc.d/nfslocking superseded by rc.d/lockd and rc.d/statd 15414OLD_FILES+=etc/rc.d/nfslocking 15415# 20070930: rename of cached to nscd 15416OLD_FILES+=etc/cached.conf 15417OLD_FILES+=etc/rc.d/cached 15418OLD_FILES+=usr/sbin/cached 15419OLD_FILES+=usr/share/man/man5/cached.conf.5.gz 15420OLD_FILES+=usr/share/man/man8/cached.8.gz 15421# 20070807: removal of PowerPC specific header file 15422.if ${TARGET_ARCH} == "powerpc" 15423OLD_FILES+=usr/include/machine/interruptvar.h 15424.endif 15425# 20070801: fast_ipsec.4 gone 15426OLD_FILES+=usr/share/man/man4/fast_ipsec.4.gz 15427# 20070715: netatm temporarily disconnected (removed 20080525) 15428OLD_FILES+=rescue/atm 15429OLD_FILES+=rescue/fore_dnld 15430OLD_FILES+=rescue/ilmid 15431OLD_FILES+=sbin/atm 15432OLD_FILES+=sbin/fore_dnld 15433OLD_FILES+=sbin/ilmid 15434OLD_FILES+=usr/include/libatm.h 15435OLD_FILES+=usr/include/netatm/atm.h 15436OLD_FILES+=usr/include/netatm/atm_cm.h 15437OLD_FILES+=usr/include/netatm/atm_if.h 15438OLD_FILES+=usr/include/netatm/atm_ioctl.h 15439OLD_FILES+=usr/include/netatm/atm_pcb.h 15440OLD_FILES+=usr/include/netatm/atm_sap.h 15441OLD_FILES+=usr/include/netatm/atm_sigmgr.h 15442OLD_FILES+=usr/include/netatm/atm_stack.h 15443OLD_FILES+=usr/include/netatm/atm_sys.h 15444OLD_FILES+=usr/include/netatm/atm_var.h 15445OLD_FILES+=usr/include/netatm/atm_vc.h 15446OLD_FILES+=usr/include/netatm/ipatm/ipatm.h 15447OLD_FILES+=usr/include/netatm/ipatm/ipatm_serv.h 15448OLD_FILES+=usr/include/netatm/ipatm/ipatm_var.h 15449OLD_FILES+=usr/include/netatm/port.h 15450OLD_FILES+=usr/include/netatm/queue.h 15451OLD_FILES+=usr/include/netatm/sigpvc/sigpvc_var.h 15452OLD_FILES+=usr/include/netatm/spans/spans_cls.h 15453OLD_FILES+=usr/include/netatm/spans/spans_kxdr.h 15454OLD_FILES+=usr/include/netatm/spans/spans_var.h 15455OLD_FILES+=usr/include/netatm/uni/sscf_uni.h 15456OLD_FILES+=usr/include/netatm/uni/sscf_uni_var.h 15457OLD_FILES+=usr/include/netatm/uni/sscop.h 15458OLD_FILES+=usr/include/netatm/uni/sscop_misc.h 15459OLD_FILES+=usr/include/netatm/uni/sscop_pdu.h 15460OLD_FILES+=usr/include/netatm/uni/sscop_var.h 15461OLD_FILES+=usr/include/netatm/uni/uni.h 15462OLD_FILES+=usr/include/netatm/uni/uniip_var.h 15463OLD_FILES+=usr/include/netatm/uni/unisig.h 15464OLD_FILES+=usr/include/netatm/uni/unisig_decode.h 15465OLD_FILES+=usr/include/netatm/uni/unisig_mbuf.h 15466OLD_FILES+=usr/include/netatm/uni/unisig_msg.h 15467OLD_FILES+=usr/include/netatm/uni/unisig_print.h 15468OLD_FILES+=usr/include/netatm/uni/unisig_var.h 15469OLD_FILES+=usr/lib/libatm.a 15470OLD_FILES+=usr/lib/libatm_p.a 15471OLD_FILES+=usr/sbin/atmarpd 15472OLD_FILES+=usr/sbin/scspd 15473OLD_FILES+=usr/share/man/en.ISO8859-1/man8/atm.8.gz 15474OLD_FILES+=usr/share/man/en.ISO8859-1/man8/atmarpd.8.gz 15475OLD_FILES+=usr/share/man/en.ISO8859-1/man8/fore_dnld.8.gz 15476OLD_FILES+=usr/share/man/en.ISO8859-1/man8/ilmid.8.gz 15477OLD_FILES+=usr/share/man/en.ISO8859-1/man8/scspd.8.gz 15478OLD_FILES+=usr/share/man/man8/atm.8.gz 15479OLD_FILES+=usr/share/man/man8/atmarpd.8.gz 15480OLD_FILES+=usr/share/man/man8/fore_dnld.8.gz 15481OLD_FILES+=usr/share/man/man8/ilmid.8.gz 15482OLD_FILES+=usr/share/man/man8/scspd.8.gz 15483OLD_FILES+=usr/share/examples/atm/NOTES 15484OLD_FILES+=usr/share/examples/atm/README 15485OLD_FILES+=usr/share/examples/atm/Startup 15486OLD_FILES+=usr/share/examples/atm/atm-config.sh 15487OLD_FILES+=usr/share/examples/atm/atm-sockets.txt 15488OLD_FILES+=usr/share/examples/atm/cpcs-design.txt 15489OLD_FILES+=usr/share/examples/atm/fore-microcode.txt 15490OLD_FILES+=usr/share/examples/atm/sscf-design.txt 15491OLD_FILES+=usr/share/examples/atm/sscop-design.txt 15492OLD_LIBS+=lib/libatm.so.5 15493OLD_FILES+=usr/lib/libatm.so 15494OLD_DIRS+=usr/include/netatm/sigpvc 15495OLD_DIRS+=usr/include/netatm/spans 15496OLD_DIRS+=usr/include/netatm/ipatm 15497OLD_DIRS+=usr/include/netatm/uni 15498OLD_DIRS+=usr/include/netatm 15499OLD_DIRS+=usr/share/examples/atm 15500# 20070705: I4B headers repo-copied to include/i4b/ 15501.if ${TARGET_ARCH} == "i386" 15502OLD_FILES+=usr/include/machine/i4b_cause.h 15503OLD_FILES+=usr/include/machine/i4b_debug.h 15504OLD_FILES+=usr/include/machine/i4b_ioctl.h 15505OLD_FILES+=usr/include/machine/i4b_rbch_ioctl.h 15506OLD_FILES+=usr/include/machine/i4b_tel_ioctl.h 15507OLD_FILES+=usr/include/machine/i4b_trace.h 15508.endif 15509# 20070703: pf 4.1 import 15510OLD_FILES+=usr/libexec/ftp-proxy 15511# 20070701: KAME IPSec removal 15512OLD_FILES+=usr/include/netinet6/ah.h 15513OLD_FILES+=usr/include/netinet6/ah6.h 15514OLD_FILES+=usr/include/netinet6/ah_aesxcbcmac.h 15515OLD_FILES+=usr/include/netinet6/esp.h 15516OLD_FILES+=usr/include/netinet6/esp6.h 15517OLD_FILES+=usr/include/netinet6/esp_aesctr.h 15518OLD_FILES+=usr/include/netinet6/esp_camellia.h 15519OLD_FILES+=usr/include/netinet6/esp_rijndael.h 15520OLD_FILES+=usr/include/netinet6/ipsec.h 15521OLD_FILES+=usr/include/netinet6/ipsec6.h 15522OLD_FILES+=usr/include/netinet6/ipcomp.h 15523OLD_FILES+=usr/include/netinet6/ipcomp6.h 15524OLD_FILES+=usr/include/netkey/key.h 15525OLD_FILES+=usr/include/netkey/key_debug.h 15526OLD_FILES+=usr/include/netkey/key_var.h 15527OLD_FILES+=usr/include/netkey/keydb.h 15528OLD_FILES+=usr/include/netkey/keysock.h 15529OLD_DIRS+=usr/include/netkey 15530# 20070701: remove wicontrol 15531OLD_FILES+=usr/sbin/wicontrol 15532OLD_FILES+=usr/share/man/man8/wicontrol.8.gz 15533# 20070625: umapfs removal 15534OLD_FILES+=rescue/mount_umapfs 15535OLD_FILES+=sbin/mount_umapfs 15536OLD_FILES+=usr/include/fs/umapfs/umap.h 15537OLD_FILES+=usr/share/man/man8/mount_umapfs.8.gz 15538OLD_DIRS+=usr/include/fs/umapfs 15539# 20070618: Removal of the PROTO.localhost* files 15540OLD_FILES+=etc/namedb/PROTO.localhost-v6.rev 15541OLD_FILES+=etc/namedb/PROTO.localhost.rev 15542OLD_FILES+=etc/namedb/make-localhost 15543# 20070618: shared library version bump 15544OLD_LIBS+=lib/libalias.so.5 15545OLD_LIBS+=lib/libbsnmp.so.3 15546OLD_LIBS+=lib/libncurses.so.6 15547OLD_LIBS+=lib/libncursesw.so.6 15548OLD_LIBS+=lib/libreadline.so.6 15549OLD_LIBS+=usr/lib/libdialog.so.5 15550OLD_LIBS+=usr/lib/libgnuregex.so.3 15551OLD_LIBS+=usr/lib/libhistory.so.6 15552OLD_LIBS+=usr/lib/libpam.so.3 15553OLD_LIBS+=usr/lib/libssh.so.3 15554OLD_LIBS+=usr/lib/pam_chroot.so.3 15555OLD_LIBS+=usr/lib/pam_deny.so.3 15556OLD_LIBS+=usr/lib/pam_echo.so.3 15557OLD_LIBS+=usr/lib/pam_exec.so.3 15558OLD_LIBS+=usr/lib/pam_ftpusers.so.3 15559OLD_LIBS+=usr/lib/pam_group.so.3 15560OLD_LIBS+=usr/lib/pam_guest.so.3 15561OLD_LIBS+=usr/lib/pam_krb5.so.3 15562OLD_LIBS+=usr/lib/pam_ksu.so.3 15563OLD_LIBS+=usr/lib/pam_lastlog.so.3 15564OLD_LIBS+=usr/lib/pam_login_access.so.3 15565OLD_LIBS+=usr/lib/pam_nologin.so.3 15566OLD_LIBS+=usr/lib/pam_opie.so.3 15567OLD_LIBS+=usr/lib/pam_opieaccess.so.3 15568OLD_LIBS+=usr/lib/pam_passwdqc.so.3 15569OLD_LIBS+=usr/lib/pam_permit.so.3 15570OLD_LIBS+=usr/lib/pam_radius.so.3 15571OLD_LIBS+=usr/lib/pam_rhosts.so.3 15572OLD_LIBS+=usr/lib/pam_rootok.so.3 15573OLD_LIBS+=usr/lib/pam_securetty.so.3 15574OLD_LIBS+=usr/lib/pam_self.so.3 15575OLD_LIBS+=usr/lib/pam_ssh.so.3 15576OLD_LIBS+=usr/lib/pam_tacplus.so.3 15577OLD_LIBS+=usr/lib/pam_unix.so.3 15578OLD_LIBS+=usr/lib/snmp_atm.so.4 15579OLD_LIBS+=usr/lib/snmp_bridge.so.4 15580OLD_LIBS+=usr/lib/snmp_hostres.so.4 15581OLD_LIBS+=usr/lib/snmp_mibII.so.4 15582OLD_LIBS+=usr/lib/snmp_netgraph.so.4 15583OLD_LIBS+=usr/lib/snmp_pf.so.4 15584# 20070613: IPX over IP tunnel removal 15585OLD_FILES+=usr/include/netipx/ipx_ip.h 15586# 20070605: sched_core removal 15587OLD_FILES+=usr/share/man/man4/sched_core.4.gz 15588# 20070603: BIND 9.4.1 import 15589OLD_LIBS+=usr/lib/liblwres.so.10 15590# 20070521: shared library version bump 15591OLD_LIBS+=lib/libatm.so.4 15592OLD_LIBS+=lib/libbegemot.so.2 15593OLD_LIBS+=lib/libbsdxml.so.2 15594OLD_LIBS+=lib/libcam.so.3 15595OLD_LIBS+=lib/libcrypt.so.3 15596OLD_LIBS+=lib/libdevstat.so.5 15597OLD_LIBS+=lib/libedit.so.5 15598OLD_LIBS+=lib/libgeom.so.3 15599OLD_LIBS+=lib/libipsec.so.2 15600OLD_LIBS+=lib/libipx.so.3 15601OLD_LIBS+=lib/libkiconv.so.2 15602OLD_LIBS+=lib/libkse.so.2 15603OLD_LIBS+=lib/libkvm.so.3 15604OLD_LIBS+=lib/libm.so.4 15605OLD_LIBS+=lib/libmd.so.3 15606OLD_LIBS+=lib/libpcap.so.4 15607OLD_LIBS+=lib/libpthread.so.2 15608OLD_LIBS+=lib/libsbuf.so.3 15609OLD_LIBS+=lib/libthr.so.2 15610OLD_LIBS+=lib/libufs.so.3 15611OLD_LIBS+=lib/libutil.so.6 15612OLD_LIBS+=lib/libz.so.3 15613OLD_LIBS+=usr/lib/libbluetooth.so.2 15614OLD_LIBS+=usr/lib/libbsm.so.1 15615OLD_LIBS+=usr/lib/libbz2.so.2 15616OLD_LIBS+=usr/lib/libcalendar.so.3 15617OLD_LIBS+=usr/lib/libcom_err.so.3 15618OLD_LIBS+=usr/lib/libdevinfo.so.3 15619OLD_LIBS+=usr/lib/libfetch.so.4 15620OLD_LIBS+=usr/lib/libform.so.3 15621OLD_LIBS+=usr/lib/libformw.so.3 15622OLD_LIBS+=usr/lib/libftpio.so.6 15623OLD_LIBS+=usr/lib/libgpib.so.1 15624OLD_LIBS+=usr/lib/libkse.so.2 15625OLD_LIBS+=usr/lib/libmagic.so.2 15626OLD_LIBS+=usr/lib/libmemstat.so.1 15627OLD_LIBS+=usr/lib/libmenu.so.3 15628OLD_LIBS+=usr/lib/libmenuw.so.3 15629OLD_LIBS+=usr/lib/libmilter.so.3 15630OLD_LIBS+=usr/lib/libmp.so.5 15631OLD_LIBS+=usr/lib/libncp.so.2 15632OLD_LIBS+=usr/lib/libnetgraph.so.2 15633OLD_LIBS+=usr/lib/libngatm.so.2 15634OLD_LIBS+=usr/lib/libopie.so.4 15635OLD_LIBS+=usr/lib/libpanel.so.3 15636OLD_LIBS+=usr/lib/libpanelw.so.3 15637OLD_LIBS+=usr/lib/libpmc.so.3 15638OLD_LIBS+=usr/lib/libradius.so.2 15639OLD_LIBS+=usr/lib/librpcsvc.so.3 15640OLD_LIBS+=usr/lib/libsdp.so.2 15641OLD_LIBS+=usr/lib/libsmb.so.2 15642OLD_LIBS+=usr/lib/libstdc++.so.5 15643OLD_LIBS+=usr/lib/libtacplus.so.2 15644OLD_LIBS+=usr/lib/libthr.so.2 15645OLD_LIBS+=usr/lib/libthread_db.so.2 15646OLD_LIBS+=usr/lib/libugidfw.so.2 15647OLD_LIBS+=usr/lib/libusbhid.so.2 15648OLD_LIBS+=usr/lib/libvgl.so.4 15649OLD_LIBS+=usr/lib/libwrap.so.4 15650OLD_LIBS+=usr/lib/libypclnt.so.2 15651OLD_LIBS+=usr/lib/snmp_bridge.so.3 15652OLD_LIBS+=usr/lib/snmp_hostres.so.3 15653# 20070519: GCC 4.2 15654OLD_FILES+=usr/bin/f77 15655OLD_FILES+=usr/bin/protoize 15656OLD_FILES+=usr/include/g2c.h 15657OLD_FILES+=usr/libexec/f771 15658OLD_FILES+=usr/share/info/g77.info.gz 15659OLD_FILES+=usr/share/man/man1/f77.1.gz 15660OLD_FILES+=usr/include/c++/3.4/algorithm 15661OLD_FILES+=usr/include/c++/3.4/backward/algo.h 15662OLD_FILES+=usr/include/c++/3.4/backward/algobase.h 15663OLD_FILES+=usr/include/c++/3.4/backward/alloc.h 15664OLD_FILES+=usr/include/c++/3.4/backward/backward_warning.h 15665OLD_FILES+=usr/include/c++/3.4/backward/bvector.h 15666OLD_FILES+=usr/include/c++/3.4/backward/complex.h 15667OLD_FILES+=usr/include/c++/3.4/backward/defalloc.h 15668OLD_FILES+=usr/include/c++/3.4/backward/deque.h 15669OLD_FILES+=usr/include/c++/3.4/backward/fstream.h 15670OLD_FILES+=usr/include/c++/3.4/backward/function.h 15671OLD_FILES+=usr/include/c++/3.4/backward/hash_map.h 15672OLD_FILES+=usr/include/c++/3.4/backward/hash_set.h 15673OLD_FILES+=usr/include/c++/3.4/backward/hashtable.h 15674OLD_FILES+=usr/include/c++/3.4/backward/heap.h 15675OLD_FILES+=usr/include/c++/3.4/backward/iomanip.h 15676OLD_FILES+=usr/include/c++/3.4/backward/iostream.h 15677OLD_FILES+=usr/include/c++/3.4/backward/istream.h 15678OLD_FILES+=usr/include/c++/3.4/backward/iterator.h 15679OLD_FILES+=usr/include/c++/3.4/backward/list.h 15680OLD_FILES+=usr/include/c++/3.4/backward/map.h 15681OLD_FILES+=usr/include/c++/3.4/backward/multimap.h 15682OLD_FILES+=usr/include/c++/3.4/backward/multiset.h 15683OLD_FILES+=usr/include/c++/3.4/backward/new.h 15684OLD_FILES+=usr/include/c++/3.4/backward/ostream.h 15685OLD_FILES+=usr/include/c++/3.4/backward/pair.h 15686OLD_FILES+=usr/include/c++/3.4/backward/queue.h 15687OLD_FILES+=usr/include/c++/3.4/backward/rope.h 15688OLD_FILES+=usr/include/c++/3.4/backward/set.h 15689OLD_FILES+=usr/include/c++/3.4/backward/slist.h 15690OLD_FILES+=usr/include/c++/3.4/backward/stack.h 15691OLD_FILES+=usr/include/c++/3.4/backward/stream.h 15692OLD_FILES+=usr/include/c++/3.4/backward/streambuf.h 15693OLD_FILES+=usr/include/c++/3.4/backward/strstream 15694OLD_FILES+=usr/include/c++/3.4/backward/tempbuf.h 15695OLD_FILES+=usr/include/c++/3.4/backward/tree.h 15696OLD_FILES+=usr/include/c++/3.4/backward/vector.h 15697OLD_FILES+=usr/include/c++/3.4/bits/allocator.h 15698OLD_FILES+=usr/include/c++/3.4/bits/atomic_word.h 15699OLD_FILES+=usr/include/c++/3.4/bits/atomicity.h 15700OLD_FILES+=usr/include/c++/3.4/bits/basic_file.h 15701OLD_FILES+=usr/include/c++/3.4/bits/basic_ios.h 15702OLD_FILES+=usr/include/c++/3.4/bits/basic_ios.tcc 15703OLD_FILES+=usr/include/c++/3.4/bits/basic_string.h 15704OLD_FILES+=usr/include/c++/3.4/bits/basic_string.tcc 15705OLD_FILES+=usr/include/c++/3.4/bits/boost_concept_check.h 15706OLD_FILES+=usr/include/c++/3.4/bits/c++allocator.h 15707OLD_FILES+=usr/include/c++/3.4/bits/c++config.h 15708OLD_FILES+=usr/include/c++/3.4/bits/c++io.h 15709OLD_FILES+=usr/include/c++/3.4/bits/c++locale.h 15710OLD_FILES+=usr/include/c++/3.4/bits/c++locale_internal.h 15711OLD_FILES+=usr/include/c++/3.4/bits/char_traits.h 15712OLD_FILES+=usr/include/c++/3.4/bits/cmath.tcc 15713OLD_FILES+=usr/include/c++/3.4/bits/codecvt.h 15714OLD_FILES+=usr/include/c++/3.4/bits/codecvt_specializations.h 15715OLD_FILES+=usr/include/c++/3.4/bits/concept_check.h 15716OLD_FILES+=usr/include/c++/3.4/bits/concurrence.h 15717OLD_FILES+=usr/include/c++/3.4/bits/cpp_type_traits.h 15718OLD_FILES+=usr/include/c++/3.4/bits/ctype_base.h 15719OLD_FILES+=usr/include/c++/3.4/bits/ctype_inline.h 15720OLD_FILES+=usr/include/c++/3.4/bits/ctype_noninline.h 15721OLD_FILES+=usr/include/c++/3.4/bits/deque.tcc 15722OLD_FILES+=usr/include/c++/3.4/bits/fstream.tcc 15723OLD_FILES+=usr/include/c++/3.4/bits/functexcept.h 15724OLD_FILES+=usr/include/c++/3.4/bits/gslice.h 15725OLD_FILES+=usr/include/c++/3.4/bits/gslice_array.h 15726OLD_FILES+=usr/include/c++/3.4/bits/gthr-default.h 15727OLD_FILES+=usr/include/c++/3.4/bits/gthr-posix.h 15728OLD_FILES+=usr/include/c++/3.4/bits/gthr-single.h 15729OLD_FILES+=usr/include/c++/3.4/bits/gthr.h 15730OLD_FILES+=usr/include/c++/3.4/bits/indirect_array.h 15731OLD_FILES+=usr/include/c++/3.4/bits/ios_base.h 15732OLD_FILES+=usr/include/c++/3.4/bits/istream.tcc 15733OLD_FILES+=usr/include/c++/3.4/bits/list.tcc 15734OLD_FILES+=usr/include/c++/3.4/bits/locale_classes.h 15735OLD_FILES+=usr/include/c++/3.4/bits/locale_facets.h 15736OLD_FILES+=usr/include/c++/3.4/bits/locale_facets.tcc 15737OLD_FILES+=usr/include/c++/3.4/bits/localefwd.h 15738OLD_FILES+=usr/include/c++/3.4/bits/mask_array.h 15739OLD_FILES+=usr/include/c++/3.4/bits/messages_members.h 15740OLD_FILES+=usr/include/c++/3.4/bits/os_defines.h 15741OLD_FILES+=usr/include/c++/3.4/bits/ostream.tcc 15742OLD_FILES+=usr/include/c++/3.4/bits/postypes.h 15743OLD_FILES+=usr/include/c++/3.4/bits/slice_array.h 15744OLD_FILES+=usr/include/c++/3.4/bits/sstream.tcc 15745OLD_FILES+=usr/include/c++/3.4/bits/stl_algo.h 15746OLD_FILES+=usr/include/c++/3.4/bits/stl_algobase.h 15747OLD_FILES+=usr/include/c++/3.4/bits/stl_bvector.h 15748OLD_FILES+=usr/include/c++/3.4/bits/stl_construct.h 15749OLD_FILES+=usr/include/c++/3.4/bits/stl_deque.h 15750OLD_FILES+=usr/include/c++/3.4/bits/stl_function.h 15751OLD_FILES+=usr/include/c++/3.4/bits/stl_heap.h 15752OLD_FILES+=usr/include/c++/3.4/bits/stl_iterator.h 15753OLD_FILES+=usr/include/c++/3.4/bits/stl_iterator_base_funcs.h 15754OLD_FILES+=usr/include/c++/3.4/bits/stl_iterator_base_types.h 15755OLD_FILES+=usr/include/c++/3.4/bits/stl_list.h 15756OLD_FILES+=usr/include/c++/3.4/bits/stl_map.h 15757OLD_FILES+=usr/include/c++/3.4/bits/stl_multimap.h 15758OLD_FILES+=usr/include/c++/3.4/bits/stl_multiset.h 15759OLD_FILES+=usr/include/c++/3.4/bits/stl_numeric.h 15760OLD_FILES+=usr/include/c++/3.4/bits/stl_pair.h 15761OLD_FILES+=usr/include/c++/3.4/bits/stl_queue.h 15762OLD_FILES+=usr/include/c++/3.4/bits/stl_raw_storage_iter.h 15763OLD_FILES+=usr/include/c++/3.4/bits/stl_relops.h 15764OLD_FILES+=usr/include/c++/3.4/bits/stl_set.h 15765OLD_FILES+=usr/include/c++/3.4/bits/stl_stack.h 15766OLD_FILES+=usr/include/c++/3.4/bits/stl_tempbuf.h 15767OLD_FILES+=usr/include/c++/3.4/bits/stl_threads.h 15768OLD_FILES+=usr/include/c++/3.4/bits/stl_tree.h 15769OLD_FILES+=usr/include/c++/3.4/bits/stl_uninitialized.h 15770OLD_FILES+=usr/include/c++/3.4/bits/stl_vector.h 15771OLD_FILES+=usr/include/c++/3.4/bits/stream_iterator.h 15772OLD_FILES+=usr/include/c++/3.4/bits/streambuf.tcc 15773OLD_FILES+=usr/include/c++/3.4/bits/streambuf_iterator.h 15774OLD_FILES+=usr/include/c++/3.4/bits/stringfwd.h 15775OLD_FILES+=usr/include/c++/3.4/bits/time_members.h 15776OLD_FILES+=usr/include/c++/3.4/bits/type_traits.h 15777OLD_FILES+=usr/include/c++/3.4/bits/valarray_after.h 15778OLD_FILES+=usr/include/c++/3.4/bits/valarray_array.h 15779OLD_FILES+=usr/include/c++/3.4/bits/valarray_array.tcc 15780OLD_FILES+=usr/include/c++/3.4/bits/valarray_before.h 15781OLD_FILES+=usr/include/c++/3.4/bits/vector.tcc 15782OLD_FILES+=usr/include/c++/3.4/bitset 15783OLD_FILES+=usr/include/c++/3.4/cassert 15784OLD_FILES+=usr/include/c++/3.4/cctype 15785OLD_FILES+=usr/include/c++/3.4/cerrno 15786OLD_FILES+=usr/include/c++/3.4/cfloat 15787OLD_FILES+=usr/include/c++/3.4/ciso646 15788OLD_FILES+=usr/include/c++/3.4/climits 15789OLD_FILES+=usr/include/c++/3.4/clocale 15790OLD_FILES+=usr/include/c++/3.4/cmath 15791OLD_FILES+=usr/include/c++/3.4/complex 15792OLD_FILES+=usr/include/c++/3.4/csetjmp 15793OLD_FILES+=usr/include/c++/3.4/csignal 15794OLD_FILES+=usr/include/c++/3.4/cstdarg 15795OLD_FILES+=usr/include/c++/3.4/cstddef 15796OLD_FILES+=usr/include/c++/3.4/cstdio 15797OLD_FILES+=usr/include/c++/3.4/cstdlib 15798OLD_FILES+=usr/include/c++/3.4/cstring 15799OLD_FILES+=usr/include/c++/3.4/ctime 15800OLD_FILES+=usr/include/c++/3.4/cwchar 15801OLD_FILES+=usr/include/c++/3.4/cwctype 15802OLD_FILES+=usr/include/c++/3.4/cxxabi.h 15803OLD_FILES+=usr/include/c++/3.4/debug/bitset 15804OLD_FILES+=usr/include/c++/3.4/debug/debug.h 15805OLD_FILES+=usr/include/c++/3.4/debug/deque 15806OLD_FILES+=usr/include/c++/3.4/debug/formatter.h 15807OLD_FILES+=usr/include/c++/3.4/debug/hash_map 15808OLD_FILES+=usr/include/c++/3.4/debug/hash_map.h 15809OLD_FILES+=usr/include/c++/3.4/debug/hash_multimap.h 15810OLD_FILES+=usr/include/c++/3.4/debug/hash_multiset.h 15811OLD_FILES+=usr/include/c++/3.4/debug/hash_set 15812OLD_FILES+=usr/include/c++/3.4/debug/hash_set.h 15813OLD_FILES+=usr/include/c++/3.4/debug/list 15814OLD_FILES+=usr/include/c++/3.4/debug/map 15815OLD_FILES+=usr/include/c++/3.4/debug/map.h 15816OLD_FILES+=usr/include/c++/3.4/debug/multimap.h 15817OLD_FILES+=usr/include/c++/3.4/debug/multiset.h 15818OLD_FILES+=usr/include/c++/3.4/debug/safe_base.h 15819OLD_FILES+=usr/include/c++/3.4/debug/safe_iterator.h 15820OLD_FILES+=usr/include/c++/3.4/debug/safe_iterator.tcc 15821OLD_FILES+=usr/include/c++/3.4/debug/safe_sequence.h 15822OLD_FILES+=usr/include/c++/3.4/debug/set 15823OLD_FILES+=usr/include/c++/3.4/debug/set.h 15824OLD_FILES+=usr/include/c++/3.4/debug/string 15825OLD_FILES+=usr/include/c++/3.4/debug/vector 15826OLD_FILES+=usr/include/c++/3.4/deque 15827OLD_FILES+=usr/include/c++/3.4/exception 15828OLD_FILES+=usr/include/c++/3.4/exception_defines.h 15829OLD_FILES+=usr/include/c++/3.4/ext/algorithm 15830OLD_FILES+=usr/include/c++/3.4/ext/bitmap_allocator.h 15831OLD_FILES+=usr/include/c++/3.4/ext/debug_allocator.h 15832OLD_FILES+=usr/include/c++/3.4/ext/enc_filebuf.h 15833OLD_FILES+=usr/include/c++/3.4/ext/functional 15834OLD_FILES+=usr/include/c++/3.4/ext/hash_fun.h 15835OLD_FILES+=usr/include/c++/3.4/ext/hash_map 15836OLD_FILES+=usr/include/c++/3.4/ext/hash_set 15837OLD_FILES+=usr/include/c++/3.4/ext/hashtable.h 15838OLD_FILES+=usr/include/c++/3.4/ext/iterator 15839OLD_FILES+=usr/include/c++/3.4/ext/malloc_allocator.h 15840OLD_FILES+=usr/include/c++/3.4/ext/memory 15841OLD_FILES+=usr/include/c++/3.4/ext/mt_allocator.h 15842OLD_FILES+=usr/include/c++/3.4/ext/new_allocator.h 15843OLD_FILES+=usr/include/c++/3.4/ext/numeric 15844OLD_FILES+=usr/include/c++/3.4/ext/pod_char_traits.h 15845OLD_FILES+=usr/include/c++/3.4/ext/pool_allocator.h 15846OLD_FILES+=usr/include/c++/3.4/ext/rb_tree 15847OLD_FILES+=usr/include/c++/3.4/ext/rope 15848OLD_FILES+=usr/include/c++/3.4/ext/ropeimpl.h 15849OLD_FILES+=usr/include/c++/3.4/ext/slist 15850OLD_FILES+=usr/include/c++/3.4/ext/stdio_filebuf.h 15851OLD_FILES+=usr/include/c++/3.4/ext/stdio_sync_filebuf.h 15852OLD_FILES+=usr/include/c++/3.4/fstream 15853OLD_FILES+=usr/include/c++/3.4/functional 15854OLD_FILES+=usr/include/c++/3.4/iomanip 15855OLD_FILES+=usr/include/c++/3.4/ios 15856OLD_FILES+=usr/include/c++/3.4/iosfwd 15857OLD_FILES+=usr/include/c++/3.4/iostream 15858OLD_FILES+=usr/include/c++/3.4/istream 15859OLD_FILES+=usr/include/c++/3.4/iterator 15860OLD_FILES+=usr/include/c++/3.4/limits 15861OLD_FILES+=usr/include/c++/3.4/list 15862OLD_FILES+=usr/include/c++/3.4/locale 15863OLD_FILES+=usr/include/c++/3.4/map 15864OLD_FILES+=usr/include/c++/3.4/memory 15865OLD_FILES+=usr/include/c++/3.4/new 15866OLD_FILES+=usr/include/c++/3.4/numeric 15867OLD_FILES+=usr/include/c++/3.4/ostream 15868OLD_FILES+=usr/include/c++/3.4/queue 15869OLD_FILES+=usr/include/c++/3.4/set 15870OLD_FILES+=usr/include/c++/3.4/sstream 15871OLD_FILES+=usr/include/c++/3.4/stack 15872OLD_FILES+=usr/include/c++/3.4/stdexcept 15873OLD_FILES+=usr/include/c++/3.4/streambuf 15874OLD_FILES+=usr/include/c++/3.4/string 15875OLD_FILES+=usr/include/c++/3.4/typeinfo 15876OLD_FILES+=usr/include/c++/3.4/utility 15877OLD_FILES+=usr/include/c++/3.4/valarray 15878OLD_FILES+=usr/include/c++/3.4/vector 15879OLD_DIRS+=usr/include/c++/3.4/backward 15880OLD_DIRS+=usr/include/c++/3.4/bits 15881OLD_DIRS+=usr/include/c++/3.4/debug 15882OLD_DIRS+=usr/include/c++/3.4/ext 15883OLD_DIRS+=usr/include/c++/3.4 15884# 20070510: zpool/zfs moved to /sbin 15885OLD_FILES+=usr/sbin/zfs 15886OLD_FILES+=usr/sbin/zpool 15887# 20070423: rc.bluetooth (examples) removed 15888OLD_FILES+=usr/share/examples/netgraph/bluetooth/rc.bluetooth 15889OLD_DIRS+=usr/share/examples/netgraph/bluetooth 15890# 20070421: worm.4 removed 15891OLD_FILES+=usr/share/man/man4/worm.4.gz 15892# 20070417: trunk(4) renamed to lagg(4) 15893OLD_FILES+=usr/include/net/if_trunk.h 15894# 20070409: uuidgen moved to /bin/ 15895OLD_FILES+=usr/bin/uuidgen 15896# 20070328: bzip2 1.0.4 15897OLD_FILES+=usr/share/info/bzip2.info.gz 15898# 20070303: libarchive 2.0 15899OLD_LIBS+=usr/lib/libarchive.so.3 15900# 20070301: remove addr2ascii and ascii2addr 15901OLD_FILES+=usr/share/man/man3/addr2ascii.3.gz 15902OLD_FILES+=usr/share/man/man3/ascii2addr.3.gz 15903# 20070225: vm_page_unmanage() removed 15904OLD_FILES+=usr/share/man/man9/vm_page_unmanage.9.gz 15905# 20070216: VFS_VPTOFH(9) -> VOP_VPTOFH(9) 15906OLD_FILES+=usr/share/man/man9/VFS_VPTOFH.9.gz 15907# 20070212: kame.4 removed 15908OLD_FILES+=usr/share/man/man4/kame.4.gz 15909# 20070201: remove libmytinfo link 15910OLD_FILES+=usr/lib/libmytinfo.a 15911OLD_FILES+=usr/lib/libmytinfo.so 15912OLD_FILES+=usr/lib/libmytinfo_p.a 15913OLD_FILES+=usr/lib/libmytinfow.a 15914OLD_FILES+=usr/lib/libmytinfow.so 15915OLD_FILES+=usr/lib/libmytinfow_p.a 15916# 20070128: remove vnconfig 15917OLD_FILES+=usr/sbin/vnconfig 15918# 20070127: remove bpf_compat.h 15919OLD_FILES+=usr/include/net/bpf_compat.h 15920# 20070125: objformat bites the dust 15921OLD_FILES+=usr/bin/objformat 15922OLD_FILES+=usr/share/man/man1/objformat.1.gz 15923OLD_FILES+=usr/include/objformat.h 15924OLD_FILES+=usr/share/man/man3/getobjformat.3.gz 15925# 20061008: rename *.so.4 libalias modules to *.so and move to /lib 15926# This uses MOVED_LIBS because the new files are libraries even though 15927# the old files to remove are symlinks 15928MOVED_LIBS+=usr/lib/libalias_cuseeme.so 15929MOVED_LIBS+=usr/lib/libalias_dummy.so 15930MOVED_LIBS+=usr/lib/libalias_ftp.so 15931MOVED_LIBS+=usr/lib/libalias_irc.so 15932MOVED_LIBS+=usr/lib/libalias_nbt.so 15933MOVED_LIBS+=usr/lib/libalias_pptp.so 15934MOVED_LIBS+=usr/lib/libalias_skinny.so 15935MOVED_LIBS+=usr/lib/libalias_smedia.so 15936OLD_LIBS+=lib/libalias_cuseeme.so.4 15937OLD_LIBS+=lib/libalias_dummy.so.4 15938OLD_LIBS+=lib/libalias_ftp.so.4 15939OLD_LIBS+=lib/libalias_irc.so.4 15940OLD_LIBS+=lib/libalias_nbt.so.4 15941OLD_LIBS+=lib/libalias_pptp.so.4 15942OLD_LIBS+=lib/libalias_skinny.so.4 15943OLD_LIBS+=lib/libalias_smedia.so.4 15944# 20061126: remove old man page 15945OLD_FILES+=usr/share/man/man3/archive_read_set_bytes_per_block.3.gz 15946# 20061125: remove old man page 15947OLD_FILES+=usr/share/man/man9/devsw.9.gz 15948# 20061122: remove obsolete mount programs 15949OLD_FILES+=sbin/mount_devfs 15950OLD_FILES+=sbin/mount_ext2fs 15951OLD_FILES+=sbin/mount_fdescfs 15952OLD_FILES+=sbin/mount_linprocfs 15953OLD_FILES+=sbin/mount_procfs 15954OLD_FILES+=sbin/mount_std 15955OLD_FILES+=rescue/mount_devfs 15956OLD_FILES+=rescue/mount_ext2fs 15957OLD_FILES+=rescue/mount_fdescfs 15958OLD_FILES+=rescue/mount_linprocfs 15959OLD_FILES+=rescue/mount_procfs 15960OLD_FILES+=rescue/mount_std 15961OLD_FILES+=usr/share/man/man8/mount_devfs.8.gz 15962OLD_FILES+=usr/share/man/man8/mount_ext2fs.8.gz 15963OLD_FILES+=usr/share/man/man8/mount_fdescfs.8.gz 15964OLD_FILES+=usr/share/man/man8/mount_linprocfs.8.gz 15965OLD_FILES+=usr/share/man/man8/mount_procfs.8.gz 15966OLD_FILES+=usr/share/man/man8/mount_std.8.gz 15967# 20061116: uhidev.4 removed 15968OLD_FILES+=usr/share/man/man4/uhidev.4.gz 15969# 20061106: archive_write_prepare.3 removed 15970OLD_FILES+=usr/share/man/man3/archive_write_prepare.3.gz 15971# 20061018: pccardc removed 15972OLD_FILES+=usr/sbin/pccardc usr/share/man/man8/pccardc.8.gz 15973# 20060930: demangle.h from contrib/libstdc++/include/ext/ 15974OLD_FILES+=usr/include/c++/3.4/ext/demangle.h 15975# 20060929: mrouted removed 15976OLD_FILES+=usr/sbin/map-mbone 15977OLD_FILES+=usr/sbin/mrinfo 15978OLD_FILES+=usr/sbin/mrouted 15979OLD_FILES+=usr/sbin/mtrace 15980OLD_FILES+=usr/share/man/man8/map-mbone.8.gz 15981OLD_FILES+=usr/share/man/man8/mrinfo.8.gz 15982OLD_FILES+=usr/share/man/man8/mrouted.8.gz 15983OLD_FILES+=usr/share/man/man8/mtrace.8.gz 15984# 20060924: tcpslice removed 15985OLD_FILES+=usr/sbin/tcpslice 15986OLD_FILES+=usr/share/man/man1/tcpslice.1.gz 15987# 20060829: kvmdb cleanup script removed 15988OLD_FILES+=etc/periodic/weekly/120.clean-kvmdb 15989# 20060822: ramdisk{,-own} have been replaced by mdconfig{,2} 15990OLD_FILES+=etc/rc.d/ramdisk 15991OLD_FILES+=etc/rc.d/ramdisk-own 15992# 20060729: OpenSSL 0.9.7e -> 0.9.8b upgrade 15993OLD_FILES+=usr/include/openssl/eng_int.h 15994OLD_FILES+=usr/include/openssl/hw_4758_cca_err.h 15995OLD_FILES+=usr/include/openssl/hw_aep_err.h 15996OLD_FILES+=usr/include/openssl/hw_atalla_err.h 15997OLD_FILES+=usr/include/openssl/hw_cswift_err.h 15998OLD_FILES+=usr/include/openssl/hw_ncipher_err.h 15999OLD_FILES+=usr/include/openssl/hw_nuron_err.h 16000OLD_FILES+=usr/include/openssl/hw_sureware_err.h 16001OLD_FILES+=usr/include/openssl/hw_ubsec_err.h 16002# 20060713: mount_linsysfs(8) never existed in 7.x 16003OLD_FILES+=sbin/mount_linsysfs 16004OLD_FILES+=usr/share/man/man8/mount_linsysfs.8.gz 16005# 20060704: KAME compat file net_osdep.h removed 16006OLD_FILES+=usr/include/net/net_osdep.h 16007# 20060605: man page links removed by OpenBSM 1.0 alpha 6 import 16008OLD_FILES+=usr/share/man/man3/au_to_socket.3.gz 16009OLD_FILES+=usr/share/man/man3/au_to_socket_ex_128.3.gz 16010OLD_FILES+=usr/share/man/man3/au_to_socket_ex_32.3.gz 16011# 20060517: pcvt removed 16012OLD_FILES+=usr/share/pcvt/README.FIRST 16013OLD_FILES+=usr/share/pcvt/Etc/xmodmap-german 16014OLD_FILES+=usr/share/pcvt/Etc/pcvt.sh 16015OLD_FILES+=usr/share/pcvt/Etc/pcvt.el 16016OLD_FILES+=usr/share/pcvt/Etc/Terminfo 16017OLD_FILES+=usr/share/pcvt/Etc/Termcap 16018OLD_DIRS+=usr/share/pcvt/Etc 16019OLD_FILES+=usr/share/pcvt/Doc/NotesAndHints 16020OLD_FILES+=usr/share/pcvt/Doc/Keyboard.VT 16021OLD_FILES+=usr/share/pcvt/Doc/Keyboard.HP 16022OLD_FILES+=usr/share/pcvt/Doc/EscapeSequences 16023OLD_FILES+=usr/share/pcvt/Doc/Charsets 16024OLD_FILES+=usr/share/pcvt/Doc/CharGen 16025OLD_FILES+=usr/share/pcvt/Doc/Bibliography 16026OLD_FILES+=usr/share/pcvt/Doc/Acknowledgements 16027OLD_DIRS+=usr/share/pcvt/Doc 16028OLD_DIRS+=usr/share/pcvt 16029OLD_FILES+=usr/share/misc/pcvtfonts/vt220l.816 16030OLD_FILES+=usr/share/misc/pcvtfonts/vt220l.814 16031OLD_FILES+=usr/share/misc/pcvtfonts/vt220l.810 16032OLD_FILES+=usr/share/misc/pcvtfonts/vt220l.808 16033OLD_FILES+=usr/share/misc/pcvtfonts/vt220h.816 16034OLD_FILES+=usr/share/misc/pcvtfonts/vt220h.814 16035OLD_FILES+=usr/share/misc/pcvtfonts/vt220h.810 16036OLD_FILES+=usr/share/misc/pcvtfonts/vt220h.808 16037OLD_DIRS+=usr/share/misc/pcvtfonts 16038OLD_FILES+=usr/share/misc/keycap.pcvt 16039OLD_FILES+=usr/share/man/man8/ispcvt.8.gz 16040OLD_FILES+=usr/share/man/man5/keycap.5.gz 16041OLD_FILES+=usr/share/man/man4/pcvt.4.gz 16042OLD_FILES+=usr/share/man/man3/kgetstr.3.gz 16043OLD_FILES+=usr/share/man/man3/kgetnum.3.gz 16044OLD_FILES+=usr/share/man/man3/kgetflag.3.gz 16045OLD_FILES+=usr/share/man/man3/kgetent.3.gz 16046OLD_FILES+=usr/share/man/man3/keycap.3.gz 16047OLD_FILES+=usr/share/man/man1/vt220keys.1.gz 16048OLD_FILES+=usr/share/man/man1/scon.1.gz 16049OLD_FILES+=usr/share/man/man1/loadfont.1.gz 16050OLD_FILES+=usr/share/man/man1/kcon.1.gz 16051OLD_FILES+=usr/share/man/man1/fontedit.1.gz 16052OLD_FILES+=usr/share/man/man1/cursor.1.gz 16053OLD_FILES+=usr/sbin/vt220keys 16054OLD_FILES+=usr/sbin/scon 16055OLD_FILES+=usr/sbin/loadfont 16056OLD_FILES+=usr/sbin/kcon 16057OLD_FILES+=usr/sbin/ispcvt 16058OLD_FILES+=usr/sbin/fontedit 16059OLD_FILES+=usr/sbin/cursor 16060OLD_FILES+=usr/lib/libkeycap_p.a 16061OLD_FILES+=usr/lib/libkeycap.a 16062OLD_FILES+=usr/include/machine/pcvt_ioctl.h 16063# 20060514: lnc(4) replaced by le(4) 16064OLD_FILES+=usr/share/man/man4/i386/lnc.4.gz 16065# 20060512: remove ip6fw 16066OLD_FILES+=etc/periodic/security/600.ip6fwdenied 16067OLD_FILES+=etc/periodic/security/650.ip6fwlimit 16068OLD_FILES+=sbin/ip6fw 16069OLD_FILES+=usr/include/netinet6/ip6_fw.h 16070OLD_FILES+=usr/share/man/man8/ip6fw.8.gz 16071# 20060424: sab(4) removed 16072OLD_FILES+=usr/share/man/man4/sab.4.gz 16073# 20060328: remove redundant rc.d script 16074OLD_FILES+=etc/rc.d/ike 16075# 20060127: revert libdisk to static-only 16076OLD_FILES+=usr/lib/libdisk.so 16077# 20060115: sys/pccard includes cleanup 16078OLD_FILES+=usr/include/pccard/driver.h 16079OLD_FILES+=usr/include/pccard/i82365.h 16080OLD_FILES+=usr/include/pccard/meciareg.h 16081OLD_FILES+=usr/include/pccard/pccard_nbk.h 16082OLD_FILES+=usr/include/pccard/pcic_pci.h 16083OLD_FILES+=usr/include/pccard/pcicvar.h 16084OLD_FILES+=usr/include/pccard/slot.h 16085# 20051215: rescue/nextboot.sh renamed to rescue/nextboot 16086OLD_FILES+=rescue/nextboot.sh 16087# 20051214: usbd(8) removed 16088OLD_FILES+=etc/rc.d/usbd 16089OLD_FILES+=etc/usbd.conf 16090OLD_FILES+=usr/sbin/usbd 16091OLD_FILES+=usr/share/man/man8/usbd.8.gz 16092# 20051029: rc.d/ppp-user renamed to rc.d/ppp for convenience 16093OLD_FILES+=etc/rc.d/ppp-user 16094# 20051012: setkey(8) moved to /sbin/ 16095OLD_FILES+=usr/sbin/setkey 16096# 20050930: pccardd(8) removed 16097OLD_FILES+=usr/sbin/pccardd 16098OLD_FILES+=usr/share/man/man5/pccard.conf.5.gz 16099OLD_FILES+=usr/share/man/man8/pccardd.8.gz 16100# 20050927: bridge(4) replaced by if_bridge(4) 16101OLD_FILES+=usr/include/net/bridge.h 16102# 20050831: not implemented 16103OLD_FILES+=usr/share/man/man3/getino.3.gz 16104OLD_FILES+=usr/share/man/man3/putino.3.gz 16105# 20050825: T/TCP retired several months ago 16106OLD_FILES+=usr/share/man/man4/ttcp.4.gz 16107# 20050805 tn3270 retired long ago 16108OLD_FILES+=usr/share/misc/map3270 16109# 20050801: too old to be interesting here 16110OLD_FILES+=usr/share/doc/papers/px.ps.gz 16111# 20050721: moved to ports 16112OLD_FILES+=usr/sbin/vttest 16113OLD_FILES+=usr/share/man/man1/vttest.1.gz 16114# 20050617: wpa man pages moved to section 8 16115OLD_FILES+=usr/share/man/man1/hostapd.1.gz 16116OLD_FILES+=usr/share/man/man1/hostapd_cli.1.gz 16117OLD_FILES+=usr/share/man/man1/wpa_cli.1.gz 16118OLD_FILES+=usr/share/man/man1/wpa_supplicant.1.gz 16119# 20050610: rexecd (insecure by design) 16120OLD_FILES+=etc/pam.d/rexecd 16121OLD_FILES+=usr/share/man/man8/rexecd.8.gz 16122OLD_FILES+=usr/libexec/rexecd 16123# 20050606: OpenBSD dhclient replaces ISC one 16124OLD_FILES+=bin/omshell 16125OLD_FILES+=sbin/omshell 16126OLD_FILES+=usr/share/man/man1/omshell.1.gz 16127OLD_FILES+=usr/share/man/man5/dhcp-eval.5.gz 16128# 200504XX: ipf tools moved from /usr to / 16129OLD_FILES+=rescue/ipfs 16130OLD_FILES+=rescue/ipfstat 16131OLD_FILES+=rescue/ipmon 16132OLD_FILES+=rescue/ipnat 16133OLD_FILES+=usr/sbin/ipftest 16134OLD_FILES+=usr/sbin/ipresend 16135OLD_FILES+=usr/sbin/ipsend 16136OLD_FILES+=usr/sbin/iptest 16137OLD_FILES+=usr/share/man/man1/ipnat.1.gz 16138OLD_FILES+=usr/share/man/man1/ipsend.1.gz 16139OLD_FILES+=usr/share/man/man1/iptest.1.gz 16140OLD_FILES+=usr/share/man/man5/ipsend.5.gz 16141# 200503XX: bsdtar takes over gtar 16142OLD_FILES+=usr/bin/gtar 16143OLD_FILES+=usr/share/man/man1/gtar.1.gz 16144# 200503XX 16145OLD_FILES+=usr/share/man/man3/exp10.3.gz 16146OLD_FILES+=usr/share/man/man3/exp10f.3.gz 16147OLD_FILES+=usr/share/man/man3/fpsetsticky.3.gz 16148# 20050324: updated release infrastructure 16149OLD_FILES+=usr/share/man/man5/drivers.conf.5.gz 16150# 20050317: removed from BIND 9 distribution 16151OLD_FILES+=usr/share/doc/bind9/KNOWN_DEFECTS 16152# 2005XXXX: 16153OLD_FILES+=sbin/mount_autofs 16154OLD_FILES+=usr/lib/libautofs.a 16155OLD_FILES+=usr/lib/libautofs.so 16156OLD_FILES+=usr/share/man/man8/mount_autofs.8.gz 16157# 20050203: Merged with fortunes 16158OLD_FILES+=usr/share/games/fortune/fortunes2 16159OLD_FILES+=usr/share/games/fortune/fortunes2.dat 16160# 200501XX: 16161OLD_FILES+=usr/libexec/getNAME 16162# 200411XX: gvinum replaces vinum 16163OLD_FILES+=bin/vinum 16164OLD_FILES+=rescue/vinum 16165OLD_FILES+=sbin/vinum 16166OLD_FILES+=usr/share/man/man8/vinum.8.gz 16167# 200411XX: libxpg4 removal 16168OLD_FILES+=usr/lib/libxpg4.a 16169OLD_FILES+=usr/lib/libxpg4.so 16170OLD_FILES+=usr/lib/libxpg4_p.a 16171# 20041109: replaced by em(4) 16172OLD_FILES+=usr/share/man/man4/gx.4.gz 16173OLD_FILES+=usr/share/man/man4/if_gx.4.gz 16174# 20041017: rune interface removed 16175OLD_FILES+=usr/include/rune.h 16176OLD_FILES+=usr/share/man/man3/fgetrune.3.gz 16177OLD_FILES+=usr/share/man/man3/fputrune.3.gz 16178OLD_FILES+=usr/share/man/man3/fungetrune.3.gz 16179OLD_FILES+=usr/share/man/man3/mbrrune.3.gz 16180OLD_FILES+=usr/share/man/man3/mbrune.3.gz 16181OLD_FILES+=usr/share/man/man3/rune.3.gz 16182OLD_FILES+=usr/share/man/man3/setinvalidrune.3.gz 16183OLD_FILES+=usr/share/man/man3/sgetrune.3.gz 16184OLD_FILES+=usr/share/man/man3/sputrune.3.gz 16185# 20040925: bind9 import 16186OLD_FILES+=usr/bin/dnskeygen 16187OLD_FILES+=usr/bin/dnsquery 16188OLD_FILES+=usr/lib/libisc.a 16189OLD_FILES+=usr/lib/libisc.so 16190OLD_FILES+=usr/lib/libisc_p.a 16191OLD_FILES+=usr/libexec/named-xfer 16192OLD_FILES+=usr/sbin/named.restart 16193OLD_FILES+=usr/sbin/ndc 16194OLD_FILES+=usr/sbin/nslookup 16195OLD_FILES+=usr/sbin/nsupdate 16196OLD_FILES+=usr/share/doc/bind/html/acl.html 16197OLD_FILES+=usr/share/doc/bind/html/address_list.html 16198OLD_FILES+=usr/share/doc/bind/html/comments.html 16199OLD_FILES+=usr/share/doc/bind/html/config.html 16200OLD_FILES+=usr/share/doc/bind/html/controls.html 16201OLD_FILES+=usr/share/doc/bind/html/docdef.html 16202OLD_FILES+=usr/share/doc/bind/html/example.html 16203OLD_FILES+=usr/share/doc/bind/html/include.html 16204OLD_FILES+=usr/share/doc/bind/html/index.html 16205OLD_FILES+=usr/share/doc/bind/html/key.html 16206OLD_FILES+=usr/share/doc/bind/html/logging.html 16207OLD_FILES+=usr/share/doc/bind/html/master.html 16208OLD_FILES+=usr/share/doc/bind/html/options.html 16209OLD_FILES+=usr/share/doc/bind/html/server.html 16210OLD_FILES+=usr/share/doc/bind/html/trusted-keys.html 16211OLD_FILES+=usr/share/doc/bind/html/zone.html 16212OLD_FILES+=usr/share/doc/bind/misc/DynamicUpdate 16213OLD_FILES+=usr/share/doc/bind/misc/FAQ.1of2 16214OLD_FILES+=usr/share/doc/bind/misc/FAQ.2of2 16215OLD_FILES+=usr/share/doc/bind/misc/rfc2317-notes.txt 16216OLD_FILES+=usr/share/doc/bind/misc/style.txt 16217OLD_FILES+=usr/share/man/man1/dnskeygen.1.gz 16218OLD_FILES+=usr/share/man/man1/dnsquery.1.gz 16219OLD_FILES+=usr/share/man/man8/named-bootconf.8.gz 16220OLD_FILES+=usr/share/man/man8/named-xfer.8.gz 16221OLD_FILES+=usr/share/man/man8/named.restart.8.gz 16222OLD_FILES+=usr/share/man/man8/ndc.8.gz 16223OLD_FILES+=usr/share/man/man8/nslookup.8.gz 16224# 200409XX 16225OLD_FILES+=usr/share/man/man3/ENSURE.3.gz 16226OLD_FILES+=usr/share/man/man3/ENSURE_ERR.3.gz 16227OLD_FILES+=usr/share/man/man3/INSIST.3.gz 16228OLD_FILES+=usr/share/man/man3/INSIST_ERR.3.gz 16229OLD_FILES+=usr/share/man/man3/INVARIANT.3.gz 16230OLD_FILES+=usr/share/man/man3/INVARIANT_ERR.3.gz 16231OLD_FILES+=usr/share/man/man3/REQUIRE.3.gz 16232OLD_FILES+=usr/share/man/man3/REQUIRE_ERR.3.gz 16233OLD_FILES+=usr/share/man/man3/assertion_type_to_text.3.gz 16234OLD_FILES+=usr/share/man/man3/assertions.3.gz 16235OLD_FILES+=usr/share/man/man3/bitncmp.3.gz 16236OLD_FILES+=usr/share/man/man3/evAddTime.3.gz 16237OLD_FILES+=usr/share/man/man3/evCancelConn.3.gz 16238OLD_FILES+=usr/share/man/man3/evCancelRW.3.gz 16239OLD_FILES+=usr/share/man/man3/evClearIdleTimer.3.gz 16240OLD_FILES+=usr/share/man/man3/evClearTimer.3.gz 16241OLD_FILES+=usr/share/man/man3/evCmpTime.3.gz 16242OLD_FILES+=usr/share/man/man3/evConnFunc.3.gz 16243OLD_FILES+=usr/share/man/man3/evConnect.3.gz 16244OLD_FILES+=usr/share/man/man3/evConsIovec.3.gz 16245OLD_FILES+=usr/share/man/man3/evConsTime.3.gz 16246OLD_FILES+=usr/share/man/man3/evCreate.3.gz 16247OLD_FILES+=usr/share/man/man3/evDefer.3.gz 16248OLD_FILES+=usr/share/man/man3/evDeselectFD.3.gz 16249OLD_FILES+=usr/share/man/man3/evDestroy.3.gz 16250OLD_FILES+=usr/share/man/man3/evDispatch.3.gz 16251OLD_FILES+=usr/share/man/man3/evDo.3.gz 16252OLD_FILES+=usr/share/man/man3/evDrop.3.gz 16253OLD_FILES+=usr/share/man/man3/evFileFunc.3.gz 16254OLD_FILES+=usr/share/man/man3/evGetNext.3.gz 16255OLD_FILES+=usr/share/man/man3/evHold.3.gz 16256OLD_FILES+=usr/share/man/man3/evInitID.3.gz 16257OLD_FILES+=usr/share/man/man3/evLastEventTime.3.gz 16258OLD_FILES+=usr/share/man/man3/evListen.3.gz 16259OLD_FILES+=usr/share/man/man3/evMainLoop.3.gz 16260OLD_FILES+=usr/share/man/man3/evNowTime.3.gz 16261OLD_FILES+=usr/share/man/man3/evPrintf.3.gz 16262OLD_FILES+=usr/share/man/man3/evRead.3.gz 16263OLD_FILES+=usr/share/man/man3/evResetTimer.3.gz 16264OLD_FILES+=usr/share/man/man3/evSelectFD.3.gz 16265OLD_FILES+=usr/share/man/man3/evSetDebug.3.gz 16266OLD_FILES+=usr/share/man/man3/evSetIdleTimer.3.gz 16267OLD_FILES+=usr/share/man/man3/evSetTimer.3.gz 16268OLD_FILES+=usr/share/man/man3/evStreamFunc.3.gz 16269OLD_FILES+=usr/share/man/man3/evSubTime.3.gz 16270OLD_FILES+=usr/share/man/man3/evTestID.3.gz 16271OLD_FILES+=usr/share/man/man3/evTimeRW.3.gz 16272OLD_FILES+=usr/share/man/man3/evTimeSpec.3.gz 16273OLD_FILES+=usr/share/man/man3/evTimeVal.3.gz 16274OLD_FILES+=usr/share/man/man3/evTimerFunc.3.gz 16275OLD_FILES+=usr/share/man/man3/evTouchIdleTimer.3.gz 16276OLD_FILES+=usr/share/man/man3/evTryAccept.3.gz 16277OLD_FILES+=usr/share/man/man3/evUnhold.3.gz 16278OLD_FILES+=usr/share/man/man3/evUntimeRW.3.gz 16279OLD_FILES+=usr/share/man/man3/evUnwait.3.gz 16280OLD_FILES+=usr/share/man/man3/evWaitFor.3.gz 16281OLD_FILES+=usr/share/man/man3/evWaitFunc.3.gz 16282OLD_FILES+=usr/share/man/man3/evWrite.3.gz 16283OLD_FILES+=usr/share/man/man3/eventlib.3.gz 16284OLD_FILES+=usr/share/man/man3/heap.3.gz 16285OLD_FILES+=usr/share/man/man3/heap_decreased.3.gz 16286OLD_FILES+=usr/share/man/man3/heap_delete.3.gz 16287OLD_FILES+=usr/share/man/man3/heap_element.3.gz 16288OLD_FILES+=usr/share/man/man3/heap_for_each.3.gz 16289OLD_FILES+=usr/share/man/man3/heap_free.3.gz 16290OLD_FILES+=usr/share/man/man3/heap_increased.3.gz 16291OLD_FILES+=usr/share/man/man3/heap_insert.3.gz 16292OLD_FILES+=usr/share/man/man3/heap_new.3.gz 16293OLD_FILES+=usr/share/man/man3/log_add_channel.3.gz 16294OLD_FILES+=usr/share/man/man3/log_category_is_active.3.gz 16295OLD_FILES+=usr/share/man/man3/log_close_stream.3.gz 16296OLD_FILES+=usr/share/man/man3/log_dec_references.3.gz 16297OLD_FILES+=usr/share/man/man3/log_free_channel.3.gz 16298OLD_FILES+=usr/share/man/man3/log_free_context.3.gz 16299OLD_FILES+=usr/share/man/man3/log_get_filename.3.gz 16300OLD_FILES+=usr/share/man/man3/log_get_stream.3.gz 16301OLD_FILES+=usr/share/man/man3/log_inc_references.3.gz 16302OLD_FILES+=usr/share/man/man3/log_new_context.3.gz 16303OLD_FILES+=usr/share/man/man3/log_new_file_channel.3.gz 16304OLD_FILES+=usr/share/man/man3/log_new_null_channel.3.gz 16305OLD_FILES+=usr/share/man/man3/log_new_syslog_channel.3.gz 16306OLD_FILES+=usr/share/man/man3/log_open_stream.3.gz 16307OLD_FILES+=usr/share/man/man3/log_option.3.gz 16308OLD_FILES+=usr/share/man/man3/log_remove_channel.3.gz 16309OLD_FILES+=usr/share/man/man3/log_set_file_owner.3.gz 16310OLD_FILES+=usr/share/man/man3/log_vwrite.3.gz 16311OLD_FILES+=usr/share/man/man3/log_write.3.gz 16312OLD_FILES+=usr/share/man/man3/logging.3.gz 16313OLD_FILES+=usr/share/man/man3/memcluster.3.gz 16314OLD_FILES+=usr/share/man/man3/memget.3.gz 16315OLD_FILES+=usr/share/man/man3/memput.3.gz 16316OLD_FILES+=usr/share/man/man3/memstats.3.gz 16317OLD_FILES+=usr/share/man/man3/set_assertion_failure_callback.3. 16318OLD_FILES+=usr/share/man/man3/sigwait.3.gz 16319OLD_FILES+=usr/share/man/man3/tree_add.3.gz 16320OLD_FILES+=usr/share/man/man3/tree_delete.3.gz 16321OLD_FILES+=usr/share/man/man3/tree_init.3.gz 16322OLD_FILES+=usr/share/man/man3/tree_mung.3.gz 16323OLD_FILES+=usr/share/man/man3/tree_srch.3.gz 16324OLD_FILES+=usr/share/man/man3/tree_trav.3.gz 16325# 2004XXYY: OS internal libs, no ports use them, no need to use OLD_LIBS 16326OLD_LIBS+=lib/geom/geom_concat.so.1 16327OLD_LIBS+=lib/geom/geom_label.so.1 16328OLD_LIBS+=lib/geom/geom_nop.so.1 16329OLD_LIBS+=lib/geom/geom_stripe.so.1 16330# 20040728: GCC 3.4.2 16331OLD_DIRS+=usr/include/c++/3.3 16332OLD_FILES+=usr/include/c++/3.3/FlexLexer.h 16333OLD_FILES+=usr/include/c++/3.3/algorithm 16334OLD_FILES+=usr/include/c++/3.3/backward/algo.h 16335OLD_FILES+=usr/include/c++/3.3/backward/algobase.h 16336OLD_FILES+=usr/include/c++/3.3/backward/alloc.h 16337OLD_FILES+=usr/include/c++/3.3/backward/backward_warning.h 16338OLD_FILES+=usr/include/c++/3.3/backward/bvector.h 16339OLD_FILES+=usr/include/c++/3.3/backward/complex.h 16340OLD_FILES+=usr/include/c++/3.3/backward/defalloc.h 16341OLD_FILES+=usr/include/c++/3.3/backward/deque.h 16342OLD_FILES+=usr/include/c++/3.3/backward/fstream.h 16343OLD_FILES+=usr/include/c++/3.3/backward/function.h 16344OLD_FILES+=usr/include/c++/3.3/backward/hash_map.h 16345OLD_FILES+=usr/include/c++/3.3/backward/hash_set.h 16346OLD_FILES+=usr/include/c++/3.3/backward/hashtable.h 16347OLD_FILES+=usr/include/c++/3.3/backward/heap.h 16348OLD_FILES+=usr/include/c++/3.3/backward/iomanip.h 16349OLD_FILES+=usr/include/c++/3.3/backward/iostream.h 16350OLD_FILES+=usr/include/c++/3.3/backward/istream.h 16351OLD_FILES+=usr/include/c++/3.3/backward/iterator.h 16352OLD_FILES+=usr/include/c++/3.3/backward/list.h 16353OLD_FILES+=usr/include/c++/3.3/backward/map.h 16354OLD_FILES+=usr/include/c++/3.3/backward/multimap.h 16355OLD_FILES+=usr/include/c++/3.3/backward/multiset.h 16356OLD_FILES+=usr/include/c++/3.3/backward/new.h 16357OLD_FILES+=usr/include/c++/3.3/backward/ostream.h 16358OLD_FILES+=usr/include/c++/3.3/backward/pair.h 16359OLD_FILES+=usr/include/c++/3.3/backward/queue.h 16360OLD_FILES+=usr/include/c++/3.3/backward/rope.h 16361OLD_FILES+=usr/include/c++/3.3/backward/set.h 16362OLD_FILES+=usr/include/c++/3.3/backward/slist.h 16363OLD_FILES+=usr/include/c++/3.3/backward/stack.h 16364OLD_FILES+=usr/include/c++/3.3/backward/stream.h 16365OLD_FILES+=usr/include/c++/3.3/backward/streambuf.h 16366OLD_FILES+=usr/include/c++/3.3/backward/strstream 16367OLD_FILES+=usr/include/c++/3.3/backward/strstream.h 16368OLD_FILES+=usr/include/c++/3.3/backward/tempbuf.h 16369OLD_FILES+=usr/include/c++/3.3/backward/tree.h 16370OLD_FILES+=usr/include/c++/3.3/backward/vector.h 16371OLD_DIRS+=usr/include/c++/3.3/backward 16372OLD_FILES+=usr/include/c++/3.3/bits/atomicity.h 16373OLD_FILES+=usr/include/c++/3.3/bits/basic_file.h 16374OLD_FILES+=usr/include/c++/3.3/bits/basic_ios.h 16375OLD_FILES+=usr/include/c++/3.3/bits/basic_ios.tcc 16376OLD_FILES+=usr/include/c++/3.3/bits/basic_string.h 16377OLD_FILES+=usr/include/c++/3.3/bits/basic_string.tcc 16378OLD_FILES+=usr/include/c++/3.3/bits/boost_concept_check.h 16379OLD_FILES+=usr/include/c++/3.3/bits/c++config.h 16380OLD_FILES+=usr/include/c++/3.3/bits/c++io.h 16381OLD_FILES+=usr/include/c++/3.3/bits/c++locale.h 16382OLD_FILES+=usr/include/c++/3.3/bits/c++locale_internal.h 16383OLD_FILES+=usr/include/c++/3.3/bits/char_traits.h 16384OLD_FILES+=usr/include/c++/3.3/bits/cmath.tcc 16385OLD_FILES+=usr/include/c++/3.3/bits/codecvt.h 16386OLD_FILES+=usr/include/c++/3.3/bits/codecvt_specializations.h 16387OLD_FILES+=usr/include/c++/3.3/bits/concept_check.h 16388OLD_FILES+=usr/include/c++/3.3/bits/cpp_type_traits.h 16389OLD_FILES+=usr/include/c++/3.3/bits/ctype_base.h 16390OLD_FILES+=usr/include/c++/3.3/bits/ctype_inline.h 16391OLD_FILES+=usr/include/c++/3.3/bits/ctype_noninline.h 16392OLD_FILES+=usr/include/c++/3.3/bits/deque.tcc 16393OLD_FILES+=usr/include/c++/3.3/bits/fpos.h 16394OLD_FILES+=usr/include/c++/3.3/bits/fstream.tcc 16395OLD_FILES+=usr/include/c++/3.3/bits/functexcept.h 16396OLD_FILES+=usr/include/c++/3.3/bits/generic_shadow.h 16397OLD_FILES+=usr/include/c++/3.3/bits/gslice.h 16398OLD_FILES+=usr/include/c++/3.3/bits/gslice_array.h 16399OLD_FILES+=usr/include/c++/3.3/bits/gthr-default.h 16400OLD_FILES+=usr/include/c++/3.3/bits/gthr-posix.h 16401OLD_FILES+=usr/include/c++/3.3/bits/gthr-single.h 16402OLD_FILES+=usr/include/c++/3.3/bits/gthr.h 16403OLD_FILES+=usr/include/c++/3.3/bits/indirect_array.h 16404OLD_FILES+=usr/include/c++/3.3/bits/ios_base.h 16405OLD_FILES+=usr/include/c++/3.3/bits/istream.tcc 16406OLD_FILES+=usr/include/c++/3.3/bits/list.tcc 16407OLD_FILES+=usr/include/c++/3.3/bits/locale_classes.h 16408OLD_FILES+=usr/include/c++/3.3/bits/locale_facets.h 16409OLD_FILES+=usr/include/c++/3.3/bits/locale_facets.tcc 16410OLD_FILES+=usr/include/c++/3.3/bits/localefwd.h 16411OLD_FILES+=usr/include/c++/3.3/bits/mask_array.h 16412OLD_FILES+=usr/include/c++/3.3/bits/messages_members.h 16413OLD_FILES+=usr/include/c++/3.3/bits/os_defines.h 16414OLD_FILES+=usr/include/c++/3.3/bits/ostream.tcc 16415OLD_FILES+=usr/include/c++/3.3/bits/pthread_allocimpl.h 16416OLD_FILES+=usr/include/c++/3.3/bits/slice.h 16417OLD_FILES+=usr/include/c++/3.3/bits/slice_array.h 16418OLD_FILES+=usr/include/c++/3.3/bits/sstream.tcc 16419OLD_FILES+=usr/include/c++/3.3/bits/stl_algo.h 16420OLD_FILES+=usr/include/c++/3.3/bits/stl_algobase.h 16421OLD_FILES+=usr/include/c++/3.3/bits/stl_alloc.h 16422OLD_FILES+=usr/include/c++/3.3/bits/stl_bvector.h 16423OLD_FILES+=usr/include/c++/3.3/bits/stl_construct.h 16424OLD_FILES+=usr/include/c++/3.3/bits/stl_deque.h 16425OLD_FILES+=usr/include/c++/3.3/bits/stl_function.h 16426OLD_FILES+=usr/include/c++/3.3/bits/stl_heap.h 16427OLD_FILES+=usr/include/c++/3.3/bits/stl_iterator.h 16428OLD_FILES+=usr/include/c++/3.3/bits/stl_iterator_base_funcs.h 16429OLD_FILES+=usr/include/c++/3.3/bits/stl_iterator_base_types.h 16430OLD_FILES+=usr/include/c++/3.3/bits/stl_list.h 16431OLD_FILES+=usr/include/c++/3.3/bits/stl_map.h 16432OLD_FILES+=usr/include/c++/3.3/bits/stl_multimap.h 16433OLD_FILES+=usr/include/c++/3.3/bits/stl_multiset.h 16434OLD_FILES+=usr/include/c++/3.3/bits/stl_numeric.h 16435OLD_FILES+=usr/include/c++/3.3/bits/stl_pair.h 16436OLD_FILES+=usr/include/c++/3.3/bits/stl_pthread_alloc.h 16437OLD_FILES+=usr/include/c++/3.3/bits/stl_queue.h 16438OLD_FILES+=usr/include/c++/3.3/bits/stl_raw_storage_iter.h 16439OLD_FILES+=usr/include/c++/3.3/bits/stl_relops.h 16440OLD_FILES+=usr/include/c++/3.3/bits/stl_set.h 16441OLD_FILES+=usr/include/c++/3.3/bits/stl_stack.h 16442OLD_FILES+=usr/include/c++/3.3/bits/stl_tempbuf.h 16443OLD_FILES+=usr/include/c++/3.3/bits/stl_threads.h 16444OLD_FILES+=usr/include/c++/3.3/bits/stl_tree.h 16445OLD_FILES+=usr/include/c++/3.3/bits/stl_uninitialized.h 16446OLD_FILES+=usr/include/c++/3.3/bits/stl_vector.h 16447OLD_FILES+=usr/include/c++/3.3/bits/stream_iterator.h 16448OLD_FILES+=usr/include/c++/3.3/bits/streambuf.tcc 16449OLD_FILES+=usr/include/c++/3.3/bits/streambuf_iterator.h 16450OLD_FILES+=usr/include/c++/3.3/bits/stringfwd.h 16451OLD_FILES+=usr/include/c++/3.3/bits/time_members.h 16452OLD_FILES+=usr/include/c++/3.3/bits/type_traits.h 16453OLD_FILES+=usr/include/c++/3.3/bits/valarray_array.h 16454OLD_FILES+=usr/include/c++/3.3/bits/valarray_array.tcc 16455OLD_FILES+=usr/include/c++/3.3/bits/valarray_meta.h 16456OLD_FILES+=usr/include/c++/3.3/bits/vector.tcc 16457OLD_DIRS+=usr/include/c++/3.3/bits 16458OLD_FILES+=usr/include/c++/3.3/bitset 16459OLD_FILES+=usr/include/c++/3.3/cassert 16460OLD_FILES+=usr/include/c++/3.3/cctype 16461OLD_FILES+=usr/include/c++/3.3/cerrno 16462OLD_FILES+=usr/include/c++/3.3/cfloat 16463OLD_FILES+=usr/include/c++/3.3/ciso646 16464OLD_FILES+=usr/include/c++/3.3/climits 16465OLD_FILES+=usr/include/c++/3.3/clocale 16466OLD_FILES+=usr/include/c++/3.3/cmath 16467OLD_FILES+=usr/include/c++/3.3/complex 16468OLD_FILES+=usr/include/c++/3.3/csetjmp 16469OLD_FILES+=usr/include/c++/3.3/csignal 16470OLD_FILES+=usr/include/c++/3.3/cstdarg 16471OLD_FILES+=usr/include/c++/3.3/cstddef 16472OLD_FILES+=usr/include/c++/3.3/cstdio 16473OLD_FILES+=usr/include/c++/3.3/cstdlib 16474OLD_FILES+=usr/include/c++/3.3/cstring 16475OLD_FILES+=usr/include/c++/3.3/ctime 16476OLD_FILES+=usr/include/c++/3.3/cwchar 16477OLD_FILES+=usr/include/c++/3.3/cwctype 16478OLD_FILES+=usr/include/c++/3.3/cxxabi.h 16479OLD_FILES+=usr/include/c++/3.3/deque 16480OLD_FILES+=usr/include/c++/3.3/exception 16481OLD_FILES+=usr/include/c++/3.3/exception_defines.h 16482OLD_FILES+=usr/include/c++/3.3/ext/algorithm 16483OLD_FILES+=usr/include/c++/3.3/ext/enc_filebuf.h 16484OLD_FILES+=usr/include/c++/3.3/ext/functional 16485OLD_FILES+=usr/include/c++/3.3/ext/hash_map 16486OLD_FILES+=usr/include/c++/3.3/ext/hash_set 16487OLD_FILES+=usr/include/c++/3.3/ext/iterator 16488OLD_FILES+=usr/include/c++/3.3/ext/memory 16489OLD_FILES+=usr/include/c++/3.3/ext/numeric 16490OLD_FILES+=usr/include/c++/3.3/ext/rb_tree 16491OLD_FILES+=usr/include/c++/3.3/ext/rope 16492OLD_FILES+=usr/include/c++/3.3/ext/ropeimpl.h 16493OLD_FILES+=usr/include/c++/3.3/ext/slist 16494OLD_FILES+=usr/include/c++/3.3/ext/stdio_filebuf.h 16495OLD_FILES+=usr/include/c++/3.3/ext/stl_hash_fun.h 16496OLD_FILES+=usr/include/c++/3.3/ext/stl_hashtable.h 16497OLD_FILES+=usr/include/c++/3.3/ext/stl_rope.h 16498OLD_DIRS+=usr/include/c++/3.3/ext 16499OLD_FILES+=usr/include/c++/3.3/fstream 16500OLD_FILES+=usr/include/c++/3.3/functional 16501OLD_FILES+=usr/include/c++/3.3/iomanip 16502OLD_FILES+=usr/include/c++/3.3/ios 16503OLD_FILES+=usr/include/c++/3.3/iosfwd 16504OLD_FILES+=usr/include/c++/3.3/iostream 16505OLD_FILES+=usr/include/c++/3.3/istream 16506OLD_FILES+=usr/include/c++/3.3/iterator 16507OLD_FILES+=usr/include/c++/3.3/limits 16508OLD_FILES+=usr/include/c++/3.3/list 16509OLD_FILES+=usr/include/c++/3.3/locale 16510OLD_FILES+=usr/include/c++/3.3/map 16511OLD_FILES+=usr/include/c++/3.3/memory 16512OLD_FILES+=usr/include/c++/3.3/new 16513OLD_FILES+=usr/include/c++/3.3/numeric 16514OLD_FILES+=usr/include/c++/3.3/ostream 16515OLD_FILES+=usr/include/c++/3.3/queue 16516OLD_FILES+=usr/include/c++/3.3/set 16517OLD_FILES+=usr/include/c++/3.3/sstream 16518OLD_FILES+=usr/include/c++/3.3/stack 16519OLD_FILES+=usr/include/c++/3.3/stdexcept 16520OLD_FILES+=usr/include/c++/3.3/streambuf 16521OLD_FILES+=usr/include/c++/3.3/string 16522OLD_FILES+=usr/include/c++/3.3/typeinfo 16523OLD_FILES+=usr/include/c++/3.3/utility 16524OLD_FILES+=usr/include/c++/3.3/valarray 16525OLD_FILES+=usr/include/c++/3.3/vector 16526# 20040713: fla(4) removed 16527OLD_FILES+=usr/share/man/man4/fla.4.gz 16528# 200407XX 16529OLD_FILES+=usr/sbin/kernbb 16530OLD_FILES+=usr/sbin/ntp-genkeys 16531OLD_FILES+=usr/sbin/ntptimeset 16532OLD_FILES+=usr/share/man/man8/kernbb.8.gz 16533OLD_FILES+=usr/share/man/man8/ntp-genkeys.8.gz 16534# 20040627: usbdevs.h and usbdevs_data.h removal 16535OLD_FILES+=usr/include/dev/usb/usbdevs.h 16536OLD_FILES+=usr/include/dev/usb/usbdevs_data.h 16537# 200406XX 16538OLD_FILES+=usr/bin/gasp 16539OLD_FILES+=usr/bin/gdbreplay 16540OLD_FILES+=usr/share/man/man1/gasp.1.gz 16541OLD_FILES+=sbin/mountd 16542OLD_FILES+=sbin/mount_fdesc 16543OLD_FILES+=sbin/mount_umap 16544OLD_FILES+=sbin/mount_union 16545OLD_FILES+=sbin/mount_msdos 16546OLD_FILES+=sbin/mount_null 16547OLD_FILES+=sbin/mount_kernfs 16548# 200405XX: arl 16549OLD_FILES+=usr/sbin/arlconfig 16550OLD_FILES+=usr/share/man/man8/arlconfig.8.gz 16551# 200403XX 16552OLD_FILES+=bin/raidctl 16553OLD_FILES+=sbin/raidctl 16554OLD_FILES+=usr/bin/sasc 16555OLD_FILES+=usr/sbin/sgsc 16556OLD_FILES+=usr/sbin/stlload 16557OLD_FILES+=usr/sbin/stlstats 16558OLD_FILES+=usr/share/man/man1/sasc.1.gz 16559OLD_FILES+=usr/share/man/man1/sgsc.1.gz 16560OLD_FILES+=usr/share/man/man4/i386/stl.4.gz 16561OLD_FILES+=usr/share/man/man8/raidctl.8.gz 16562# 20040229: clean_environment() was removed after 3 days 16563OLD_FILES+=usr/share/man/man3/clean_environment.3.gz 16564# 20040119: installed as `isdntel' in newer systems 16565OLD_FILES+=etc/isdn/isdntel.sh 16566# 200XYYZZ: /lib transition clitches 16567OLD_FILES+=lib/libalias.so 16568OLD_FILES+=lib/libatm.so 16569OLD_FILES+=lib/libbsdxml.so 16570OLD_FILES+=lib/libc.so 16571OLD_FILES+=lib/libcam.so 16572OLD_FILES+=lib/libcrypt.so 16573OLD_FILES+=lib/libcrypto.so 16574OLD_FILES+=lib/libdevstat.so 16575OLD_FILES+=lib/libedit.so 16576OLD_FILES+=lib/libgeom.so 16577OLD_FILES+=lib/libipsec.so 16578OLD_FILES+=lib/libipx.so 16579OLD_FILES+=lib/libkvm.so 16580OLD_FILES+=lib/libm.so 16581OLD_FILES+=lib/libmd.so 16582OLD_FILES+=lib/libncurses.so 16583OLD_FILES+=lib/libreadline.so 16584OLD_FILES+=lib/libsbuf.so 16585OLD_FILES+=lib/libufs.so 16586OLD_FILES+=lib/libz.so 16587# 200312XX 16588OLD_FILES+=bin/cxconfig 16589OLD_FILES+=sbin/cxconfig 16590OLD_FILES+=usr/share/man/man8/cxconfig.8.gz 16591# 20031016: MULTI_DRIVER_MODULE macro removed 16592OLD_FILES+=usr/share/man/man9/MULTI_DRIVER_MODULE.9.gz 16593# 200309XX 16594OLD_FILES+=usr/bin/symorder 16595OLD_FILES+=usr/share/man/man1/symorder.1.gz 16596# 200308XX 16597OLD_FILES+=usr/sbin/amldb 16598OLD_FILES+=usr/share/man/man8/amldb.8.gz 16599# 200307XX 16600OLD_FILES+=sbin/mount_nwfs 16601OLD_FILES+=sbin/mount_portalfs 16602OLD_FILES+=sbin/mount_smbfs 16603# 200306XX 16604OLD_FILES+=usr/sbin/dev_mkdb 16605OLD_FILES+=usr/share/man/man8/dev_mkdb.8.gz 16606# 200304XX 16607OLD_FILES+=usr/lib/libcipher.a 16608OLD_FILES+=usr/lib/libcipher.so 16609OLD_FILES+=usr/lib/libcipher_p.a 16610OLD_FILES+=usr/lib/libgmp.a 16611OLD_FILES+=usr/lib/libgmp.so 16612OLD_FILES+=usr/lib/libgmp_p.a 16613OLD_FILES+=usr/lib/libperl.a 16614OLD_FILES+=usr/lib/libperl.so 16615OLD_FILES+=usr/lib/libperl_p.a 16616OLD_FILES+=usr/lib/libposix1e.a 16617OLD_FILES+=usr/lib/libposix1e.so 16618OLD_FILES+=usr/lib/libposix1e_p.a 16619OLD_FILES+=usr/lib/libskey.a 16620OLD_FILES+=usr/lib/libskey.so 16621OLD_FILES+=usr/lib/libskey_p.a 16622OLD_FILES+=usr/libexec/tradcpp0 16623OLD_FILES+=usr/libexec/cpp0 16624# 200304XX: removal of xten 16625OLD_FILES+=usr/libexec/xtend 16626OLD_FILES+=usr/sbin/xten 16627OLD_FILES+=usr/share/man/man1/xten.1.gz 16628OLD_FILES+=usr/share/man/man8/xtend.8.gz 16629# 200303XX 16630OLD_FILES+=usr/lib/libacl.so 16631OLD_FILES+=usr/lib/libdescrypt.so 16632OLD_FILES+=usr/lib/libf2c.so 16633OLD_FILES+=usr/lib/libg++.so 16634OLD_FILES+=usr/lib/libkdb.so 16635OLD_FILES+=usr/lib/librsaINTL.so 16636OLD_FILES+=usr/lib/libscrypt.so 16637OLD_FILES+=usr/lib/libss.so 16638# 200302XX 16639OLD_FILES+=usr/lib/libacl.a 16640OLD_FILES+=usr/lib/libacl_p.a 16641OLD_FILES+=usr/lib/libkadm.a 16642OLD_FILES+=usr/lib/libkadm.so 16643OLD_FILES+=usr/lib/libkadm_p.a 16644OLD_FILES+=usr/lib/libkafs.a 16645OLD_FILES+=usr/lib/libkafs.so 16646OLD_FILES+=usr/lib/libkafs_p.a 16647OLD_FILES+=usr/lib/libkdb.a 16648OLD_FILES+=usr/lib/libkdb_p.a 16649OLD_FILES+=usr/lib/libkrb.a 16650OLD_FILES+=usr/lib/libkrb.so 16651OLD_FILES+=usr/lib/libkrb_p.a 16652OLD_FILES+=usr/share/man/man3/SSL_CIPHER_get_name.3.gz 16653OLD_FILES+=usr/share/man/man3/SSL_COMP_add_compression_method.3 16654OLD_FILES+=usr/share/man/man3/SSL_CTX_add_extra_chain_cert.3.gz 16655OLD_FILES+=usr/share/man/man3/SSL_CTX_add_session.3.gz 16656OLD_FILES+=usr/share/man/man3/SSL_CTX_ctrl.3.gz 16657OLD_FILES+=usr/share/man/man3/SSL_CTX_flush_sessions.3.gz 16658OLD_FILES+=usr/share/man/man3/SSL_CTX_free.3.gz 16659OLD_FILES+=usr/share/man/man3/SSL_CTX_get_verify_mode.3.gz 16660OLD_FILES+=usr/share/man/man3/SSL_CTX_load_verify_locations.3.gz 16661OLD_FILES+=usr/share/man/man3/SSL_CTX_new.3.gz 16662OLD_FILES+=usr/share/man/man3/SSL_CTX_sess_number.3.gz 16663OLD_FILES+=usr/share/man/man3/SSL_CTX_sess_set_cache_size.3.gz 16664OLD_FILES+=usr/share/man/man3/SSL_CTX_sess_set_get_cb.3.gz 16665OLD_FILES+=usr/share/man/man3/SSL_CTX_sessions.3.gz 16666OLD_FILES+=usr/share/man/man3/SSL_CTX_set_cert_store.3.gz 16667OLD_FILES+=usr/share/man/man3/SSL_CTX_set_cert_verify_callback.3.gz 16668OLD_FILES+=usr/share/man/man3/SSL_CTX_set_cipher_list.3.gz 16669OLD_FILES+=usr/share/man/man3/SSL_CTX_set_client_CA_list.3.gz 16670OLD_FILES+=usr/share/man/man3/SSL_CTX_set_client_cert_cb.3.gz 16671OLD_FILES+=usr/share/man/man3/SSL_CTX_set_default_passwd_cb.3.gz 16672OLD_FILES+=usr/share/man/man3/SSL_CTX_set_generate_session_id.3.gz 16673OLD_FILES+=usr/share/man/man3/SSL_CTX_set_info_callback.3.gz 16674OLD_FILES+=usr/share/man/man3/SSL_CTX_set_max_cert_list.3.gz 16675OLD_FILES+=usr/share/man/man3/SSL_CTX_set_mode.3.gz 16676OLD_FILES+=usr/share/man/man3/SSL_CTX_set_msg_callback.3.gz 16677OLD_FILES+=usr/share/man/man3/SSL_CTX_set_options.3.gz 16678OLD_FILES+=usr/share/man/man3/SSL_CTX_set_quiet_shutdown.3.gz 16679OLD_FILES+=usr/share/man/man3/SSL_CTX_set_session_cache_mode.3.gz 16680OLD_FILES+=usr/share/man/man3/SSL_CTX_set_session_id_context.3.gz 16681OLD_FILES+=usr/share/man/man3/SSL_CTX_set_ssl_version.3.gz 16682OLD_FILES+=usr/share/man/man3/SSL_CTX_set_timeout.3.gz 16683OLD_FILES+=usr/share/man/man3/SSL_CTX_set_tmp_dh_callback.3.gz 16684OLD_FILES+=usr/share/man/man3/SSL_CTX_set_tmp_rsa_callback.3.gz 16685OLD_FILES+=usr/share/man/man3/SSL_CTX_set_verify.3.gz 16686OLD_FILES+=usr/share/man/man3/SSL_CTX_use_certificate.3.gz 16687OLD_FILES+=usr/share/man/man3/SSL_SESSION_free.3.gz 16688OLD_FILES+=usr/share/man/man3/SSL_SESSION_get_ex_new_index.3.gz 16689OLD_FILES+=usr/share/man/man3/SSL_SESSION_get_time.3.gz 16690OLD_FILES+=usr/share/man/man3/SSL_accept.3.gz 16691OLD_FILES+=usr/share/man/man3/SSL_alert_type_string.3.gz 16692OLD_FILES+=usr/share/man/man3/SSL_clear.3.gz 16693OLD_FILES+=usr/share/man/man3/SSL_connect.3.gz 16694OLD_FILES+=usr/share/man/man3/SSL_do_handshake.3.gz 16695OLD_FILES+=usr/share/man/man3/SSL_free.3.gz 16696OLD_FILES+=usr/share/man/man3/SSL_get_SSL_CTX.3.gz 16697OLD_FILES+=usr/share/man/man3/SSL_get_ciphers.3.gz 16698OLD_FILES+=usr/share/man/man3/SSL_get_client_CA_list.3.gz 16699OLD_FILES+=usr/share/man/man3/SSL_get_current_cipher.3.gz 16700OLD_FILES+=usr/share/man/man3/SSL_get_default_timeout.3.gz 16701OLD_FILES+=usr/share/man/man3/SSL_get_error.3.gz 16702OLD_FILES+=usr/share/man/man3/SSL_get_ex_data_X509_STORE_CTX_idx.3.gz 16703OLD_FILES+=usr/share/man/man3/SSL_get_fd.3.gz 16704OLD_FILES+=usr/share/man/man3/SSL_get_peer_cert_chain.3.gz 16705OLD_FILES+=usr/share/man/man3/SSL_get_peer_certificate.3.gz 16706OLD_FILES+=usr/share/man/man3/SSL_get_rbio.3.gz 16707OLD_FILES+=usr/share/man/man3/SSL_get_session.3.gz 16708OLD_FILES+=usr/share/man/man3/SSL_get_verify_result.3.gz 16709OLD_FILES+=usr/share/man/man3/SSL_get_version.3.gz 16710OLD_FILES+=usr/share/man/man3/SSL_library_init.3.gz 16711OLD_FILES+=usr/share/man/man3/SSL_load_client_CA_file.3.gz 16712OLD_FILES+=usr/share/man/man3/SSL_new.3.gz 16713OLD_FILES+=usr/share/man/man3/SSL_pending.3.gz 16714OLD_FILES+=usr/share/man/man3/SSL_read.3.gz 16715OLD_FILES+=usr/share/man/man3/SSL_rstate_string.3.gz 16716OLD_FILES+=usr/share/man/man3/SSL_session_reused.3.gz 16717OLD_FILES+=usr/share/man/man3/SSL_set_bio.3.gz 16718OLD_FILES+=usr/share/man/man3/SSL_set_connect_state.3.gz 16719OLD_FILES+=usr/share/man/man3/SSL_set_fd.3.gz 16720OLD_FILES+=usr/share/man/man3/SSL_set_session.3.gz 16721OLD_FILES+=usr/share/man/man3/SSL_set_shutdown.3.gz 16722OLD_FILES+=usr/share/man/man3/SSL_set_verify_result.3.gz 16723OLD_FILES+=usr/share/man/man3/SSL_shutdown.3.gz 16724OLD_FILES+=usr/share/man/man3/SSL_state_string.3.gz 16725OLD_FILES+=usr/share/man/man3/SSL_want.3.gz 16726OLD_FILES+=usr/share/man/man3/SSL_write.3.gz 16727OLD_FILES+=usr/share/man/man3/d2i_SSL_SESSION.3.gz 16728# 200301XX 16729OLD_FILES+=usr/share/man/man3/des_3cbc_encrypt.3.gz 16730OLD_FILES+=usr/share/man/man3/des_3ecb_encrypt.3.gz 16731OLD_FILES+=usr/share/man/man3/des_cbc_cksum.3.gz 16732OLD_FILES+=usr/share/man/man3/des_cbc_encrypt.3.gz 16733OLD_FILES+=usr/share/man/man3/des_cfb_encrypt.3.gz 16734OLD_FILES+=usr/share/man/man3/des_ecb_encrypt.3.gz 16735OLD_FILES+=usr/share/man/man3/des_enc_read.3.gz 16736OLD_FILES+=usr/share/man/man3/des_enc_write.3.gz 16737OLD_FILES+=usr/share/man/man3/des_is_weak_key.3.gz 16738OLD_FILES+=usr/share/man/man3/des_key_sched.3.gz 16739OLD_FILES+=usr/share/man/man3/des_ofb_encrypt.3.gz 16740OLD_FILES+=usr/share/man/man3/des_pcbc_encrypt.3.gz 16741OLD_FILES+=usr/share/man/man3/des_quad_cksum.3.gz 16742OLD_FILES+=usr/share/man/man3/des_random_key.3.gz 16743OLD_FILES+=usr/share/man/man3/des_read_2password.3.gz 16744OLD_FILES+=usr/share/man/man3/des_read_password.3.gz 16745OLD_FILES+=usr/share/man/man3/des_read_pw_string.3.gz 16746OLD_FILES+=usr/share/man/man3/des_set_key.3.gz 16747OLD_FILES+=usr/share/man/man3/des_set_odd_parity.3.gz 16748OLD_FILES+=usr/share/man/man3/des_string_to_2key.3.gz 16749OLD_FILES+=usr/share/man/man3/des_string_to_key.3.gz 16750# 200212XX 16751OLD_FILES+=usr/sbin/kenv 16752OLD_FILES+=usr/bin/kenv 16753OLD_FILES+=usr/sbin/elf2aout 16754# 200210XX 16755OLD_FILES+=usr/include/libusbhid.h 16756OLD_FILES+=usr/share/man/man3/All_FreeBSD.3.gz 16757OLD_FILES+=usr/share/man/man3/CheckRules.3.gz 16758OLD_FILES+=usr/share/man/man3/ChunkCanBeRoot.3.gz 16759OLD_FILES+=usr/share/man/man3/Clone_Disk.3.gz 16760OLD_FILES+=usr/share/man/man3/Collapse_Chunk.3.gz 16761OLD_FILES+=usr/share/man/man3/Collapse_Disk.3.gz 16762OLD_FILES+=usr/share/man/man3/Create_Chunk.3.gz 16763OLD_FILES+=usr/share/man/man3/Create_Chunk_DWIM.3.gz 16764OLD_FILES+=usr/share/man/man3/Cyl_Aligned.3.gz 16765OLD_FILES+=usr/share/man/man3/Debug_Disk.3.gz 16766OLD_FILES+=usr/share/man/man3/Delete_Chunk.3.gz 16767OLD_FILES+=usr/share/man/man3/Disk_Names.3.gz 16768OLD_FILES+=usr/share/man/man3/Free_Disk.3.gz 16769OLD_FILES+=usr/share/man/man3/MakeDev.3.gz 16770OLD_FILES+=usr/share/man/man3/MakeDevDisk.3.gz 16771OLD_FILES+=usr/share/man/man3/Next_Cyl_Aligned.3.gz 16772OLD_FILES+=usr/share/man/man3/Next_Track_Aligned.3.gz 16773OLD_FILES+=usr/share/man/man3/Open_Disk.3.gz 16774OLD_FILES+=usr/share/man/man3/Prev_Cyl_Aligned.3.gz 16775OLD_FILES+=usr/share/man/man3/Prev_Track_Aligned.3.gz 16776OLD_FILES+=usr/share/man/man3/Set_Bios_Geom.3.gz 16777OLD_FILES+=usr/share/man/man3/Set_Boot_Blocks.3.gz 16778OLD_FILES+=usr/share/man/man3/Set_Boot_Mgr.3.gz 16779OLD_FILES+=usr/share/man/man3/ShowChunkFlags.3.gz 16780OLD_FILES+=usr/share/man/man3/Track_Aligned.3.gz 16781OLD_FILES+=usr/share/man/man3/Write_Disk.3.gz 16782OLD_FILES+=usr/share/man/man3/slice_type_name.3.gz 16783# 200210XX: most games moved to ports 16784OLD_FILES+=usr/share/man/man6/adventure.6.gz 16785OLD_FILES+=usr/share/man/man6/arithmetic.6.gz 16786OLD_FILES+=usr/share/man/man6/atc.6.gz 16787OLD_FILES+=usr/share/man/man6/backgammon.6.gz 16788OLD_FILES+=usr/share/man/man6/battlestar.6.gz 16789OLD_FILES+=usr/share/man/man6/bs.6.gz 16790OLD_FILES+=usr/share/man/man6/canfield.6.gz 16791OLD_FILES+=usr/share/man/man6/cfscores.6.gz 16792OLD_FILES+=usr/share/man/man6/cribbage.6.gz 16793OLD_FILES+=usr/share/man/man6/fish.6.gz 16794OLD_FILES+=usr/share/man/man6/hack.6.gz 16795OLD_FILES+=usr/share/man/man6/hangman.6.gz 16796OLD_FILES+=usr/share/man/man6/larn.6.gz 16797OLD_FILES+=usr/share/man/man6/mille.6.gz 16798OLD_FILES+=usr/share/man/man6/phantasia.6.gz 16799OLD_FILES+=usr/share/man/man6/piano.6.gz 16800OLD_FILES+=usr/share/man/man6/pig.6.gz 16801OLD_FILES+=usr/share/man/man6/quiz.6.gz 16802OLD_FILES+=usr/share/man/man6/rain.6.gz 16803OLD_FILES+=usr/share/man/man6/robots.6.gz 16804OLD_FILES+=usr/share/man/man6/rogue.6.gz 16805OLD_FILES+=usr/share/man/man6/sail.6.gz 16806OLD_FILES+=usr/share/man/man6/snake.6.gz 16807OLD_FILES+=usr/share/man/man6/snscore.6.gz 16808OLD_FILES+=usr/share/man/man6/trek.6.gz 16809OLD_FILES+=usr/share/man/man6/wargames.6.gz 16810OLD_FILES+=usr/share/man/man6/worm.6.gz 16811OLD_FILES+=usr/share/man/man6/worms.6.gz 16812OLD_FILES+=usr/share/man/man6/wump.6.gz 16813# 200207XX 16814OLD_FILES+=usr/share/man/man1aout/ar.1aout.gz 16815OLD_FILES+=usr/share/man/man1aout/as.1aout.gz 16816OLD_FILES+=usr/share/man/man1aout/ld.1aout.gz 16817OLD_FILES+=usr/share/man/man1aout/nm.1aout.gz 16818OLD_FILES+=usr/share/man/man1aout/ranlib.1aout.gz 16819OLD_FILES+=usr/share/man/man1aout/size.1aout.gz 16820OLD_FILES+=usr/share/man/man1aout/strings.1aout.gz 16821OLD_FILES+=usr/share/man/man1aout/strip.1aout.gz 16822OLD_FILES+=bin/mountd 16823OLD_FILES+=bin/nfsd 16824# 20020707 sbin/nfsd -> usr.sbin/nfsd 16825OLD_FILES+=sbin/nfsd 16826# 200206XX 16827OLD_FILES+=usr/lib/libpam_ssh.a 16828OLD_FILES+=usr/lib/libpam_ssh_p.a 16829OLD_FILES+=usr/bin/help 16830OLD_FILES+=usr/bin/sccs 16831.if ${TARGET_ARCH} != "amd64" && ${TARGET} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET} != "powerpc" 16832OLD_FILES+=usr/bin/gdbserver 16833.endif 16834OLD_FILES+=usr/bin/ssh-keysign 16835OLD_FILES+=usr/sbin/gifconfig 16836OLD_FILES+=usr/sbin/prefix 16837# 200205XX 16838OLD_FILES+=usr/bin/doscmd 16839# 200204XX 16840OLD_FILES+=usr/bin/a2p 16841OLD_FILES+=usr/bin/ptx 16842OLD_FILES+=usr/bin/pod2text 16843OLD_FILES+=usr/bin/pod2man 16844OLD_FILES+=usr/bin/pod2latex 16845OLD_FILES+=usr/bin/pod2html 16846OLD_FILES+=usr/bin/h2ph 16847OLD_FILES+=usr/bin/dprofpp 16848OLD_FILES+=usr/bin/c2ph 16849OLD_FILES+=usr/bin/h2xs 16850OLD_FILES+=usr/bin/pl2pm 16851OLD_FILES+=usr/bin/splain 16852OLD_FILES+=usr/bin/s2p 16853OLD_FILES+=usr/bin/find2perl 16854OLD_FILES+=usr/sbin/pkg_update 16855OLD_FILES+=usr/sbin/scriptdump 16856# 20020409 GC kget(1), userconfig is long dead. 16857OLD_FILES+=sbin/kget 16858OLD_FILES+=usr/share/man/man8/kget.8.gz 16859# 200203XX 16860OLD_FILES+=usr/lib/libss.a 16861OLD_FILES+=usr/lib/libss_p.a 16862OLD_FILES+=usr/lib/libtelnet.a 16863OLD_FILES+=usr/lib/libtelnet_p.a 16864OLD_FILES+=usr/sbin/diskpart 16865# 200202XX 16866OLD_FILES+=usr/bin/gprof4 16867# 200201XX 16868OLD_FILES+=usr/sbin/linux 16869# 2001XXXX 16870OLD_FILES+=usr/bin/joy 16871OLD_FILES+=usr/sbin/ibcs2 16872OLD_FILES+=usr/sbin/svr4 16873OLD_FILES+=usr/bin/chflags 16874OLD_FILES+=usr/sbin/uuconv 16875OLD_FILES+=usr/sbin/uuchk 16876OLD_FILES+=usr/sbin/portmap 16877OLD_FILES+=usr/sbin/pmap_set 16878OLD_FILES+=usr/sbin/pmap_dump 16879OLD_FILES+=usr/sbin/mcon 16880OLD_FILES+=usr/sbin/stlstty 16881OLD_FILES+=usr/sbin/ispppcontrol 16882OLD_FILES+=usr/sbin/rndcontrol 16883# 20011001: UUCP migration to ports 16884OLD_FILES+=usr/bin/uucp 16885OLD_FILES+=usr/bin/uulog 16886OLD_FILES+=usr/bin/uuname 16887OLD_FILES+=usr/bin/uupick 16888OLD_FILES+=usr/bin/uusched 16889OLD_FILES+=usr/bin/uustat 16890OLD_FILES+=usr/bin/uuto 16891OLD_FILES+=usr/bin/uux 16892OLD_FILES+=usr/libexec/uucp/uucico 16893OLD_FILES+=usr/libexec/uucp/uuxqt 16894OLD_FILES+=usr/libexec/uucpd 16895OLD_FILES+=usr/share/man/man1/uuconv.1.gz 16896OLD_FILES+=usr/share/man/man1/uucp.1.gz 16897OLD_FILES+=usr/share/man/man1/uulog.1.gz 16898OLD_FILES+=usr/share/man/man1/uuname.1.gz 16899OLD_FILES+=usr/share/man/man1/uupick.1.gz 16900OLD_FILES+=usr/share/man/man1/uustat.1.gz 16901OLD_FILES+=usr/share/man/man1/uuto.1.gz 16902OLD_FILES+=usr/share/man/man1/uux.1.gz 16903OLD_FILES+=usr/share/man/man8/uuchk.8.gz 16904OLD_FILES+=usr/share/man/man8/uucico.8.gz 16905OLD_FILES+=usr/share/man/man8/uucpd.8.gz 16906OLD_FILES+=usr/share/man/man8/uusched.8.gz 16907OLD_FILES+=usr/share/man/man8/uuxqt.8.gz 16908# 20010523 mount_portal -> mount_portalfs 16909OLD_FILES+=sbin/mount_portal 16910OLD_FILES+=usr/share/man/man8/mount_portal.8.gz 16911# 200104XX 16912OLD_FILES+=usr/lib/libdescrypt.a 16913OLD_FILES+=usr/lib/libscrypt.a 16914OLD_FILES+=usr/lib/libscrypt_p.a 16915OLD_FILES+=usr/sbin/pim6stat 16916OLD_FILES+=usr/sbin/pim6sd 16917OLD_FILES+=usr/sbin/pim6dd 16918# 20010217 16919OLD_FILES+=usr/share/doc/bind/misc/dns-setup 16920# 20001200 16921OLD_FILES+=usr/lib/libgcc_r_pic.a 16922# 200009XX 16923OLD_FILES+=usr/lib/libRSAglue.a 16924OLD_FILES+=usr/lib/libRSAglue.so 16925OLD_FILES+=usr/lib/librsaINTL.a 16926OLD_FILES+=usr/lib/librsaUSA.a 16927OLD_FILES+=usr/lib/librsaUSA.so 16928# 200002XX ? 16929OLD_FILES+=usr/lib/libf2c.a 16930OLD_FILES+=usr/lib/libf2c_p.a 16931OLD_FILES+=usr/lib/libg++.a 16932OLD_FILES+=usr/lib/libg++_p.a 16933# 20001006 16934OLD_FILES+=usr/bin/miniperl 16935# 20000810 16936OLD_FILES+=usr/bin/sperl 16937# 200001XX 16938OLD_FILES+=usr/sbin/apmconf 16939## unsorted 16940# do we still support aout builds? 16941#OLD_FILES+=usr/lib/aout/c++rt0.o 16942#OLD_FILES+=usr/lib/aout/crt0.o 16943#OLD_FILES+=usr/lib/aout/gcrt0.o 16944#OLD_FILES+=usr/lib/aout/scrt0.o 16945#OLD_FILES+=usr/lib/aout/sgcrt0.o 16946OLD_FILES+=usr/lib/pam_ftp.so 16947OLD_FILES+=usr/share/man/man1/CA.pl.1.gz 16948OLD_FILES+=usr/share/man/man1/asn1parse.1.gz 16949OLD_FILES+=usr/share/man/man1/ca.1.gz 16950OLD_FILES+=usr/share/man/man1/ciphers.1.gz 16951OLD_FILES+=usr/share/man/man1/config.1.gz 16952OLD_FILES+=usr/share/man/man1/crl.1.gz 16953OLD_FILES+=usr/share/man/man1/crl2pkcs7.1.gz 16954OLD_FILES+=usr/share/man/man1/dgst.1.gz 16955OLD_FILES+=usr/share/man/man1/dhparam.1.gz 16956OLD_FILES+=usr/share/man/man1/doscmd.1.gz 16957OLD_FILES+=usr/share/man/man1/dsa.1.gz 16958OLD_FILES+=usr/share/man/man1/dsaparam.1.gz 16959OLD_FILES+=usr/share/man/man1/enc.1.gz 16960OLD_FILES+=usr/share/man/man1/gendsa.1.gz 16961OLD_FILES+=usr/share/man/man1/genrsa.1.gz 16962OLD_FILES+=usr/share/man/man1/getNAME.1.gz 16963OLD_FILES+=usr/share/man/man1/nseq.1.gz 16964OLD_FILES+=usr/share/man/man1/ocsp.1.gz 16965OLD_FILES+=usr/share/man/man1/openssl.1.gz 16966OLD_FILES+=usr/share/man/man1/pkcs12.1.gz 16967OLD_FILES+=usr/share/man/man1/pkcs7.1.gz 16968OLD_FILES+=usr/share/man/man1/pkcs8.1.gz 16969OLD_FILES+=usr/share/man/man1/rand.1.gz 16970OLD_FILES+=usr/share/man/man1/req.1.gz 16971OLD_FILES+=usr/share/man/man1/rsa.1.gz 16972OLD_FILES+=usr/share/man/man1/rsautl.1.gz 16973OLD_FILES+=usr/share/man/man1/s_client.1.gz 16974OLD_FILES+=usr/share/man/man1/s_server.1.gz 16975OLD_FILES+=usr/share/man/man1/sess_id.1.gz 16976OLD_FILES+=usr/share/man/man1/smime.1.gz 16977OLD_FILES+=usr/share/man/man1/speed.1.gz 16978OLD_FILES+=usr/share/man/man1/spkac.1.gz 16979OLD_FILES+=usr/share/man/man1/verify.1.gz 16980OLD_FILES+=usr/share/man/man1/version.1.gz 16981OLD_FILES+=usr/share/man/man1/x509.1.gz 16982OLD_FILES+=usr/share/man/man3/SSL_COMP_add_compression_method.3.gz 16983OLD_FILES+=usr/share/man/man3/SSL_CTX_get_ex_new_index.3.gz 16984OLD_FILES+=usr/share/man/man3/archive_entry_dup.3.gz 16985OLD_FILES+=usr/share/man/man3/archive_entry_set_tartype.3.gz 16986OLD_FILES+=usr/share/man/man3/archive_entry_tartype.3.gz 16987OLD_FILES+=usr/share/man/man3/archive_read_data_into_file.3.gz 16988OLD_FILES+=usr/share/man/man3/archive_read_open_tar.3.gz 16989OLD_FILES+=usr/share/man/man3/archive_read_support_format_gnutar.3.gz 16990OLD_FILES+=usr/share/man/man3/cipher.3.gz 16991OLD_FILES+=usr/share/man/man3/des_cipher.3.gz 16992OLD_FILES+=usr/share/man/man3/des_setkey.3.gz 16993OLD_FILES+=usr/share/man/man3/encrypt.3.gz 16994OLD_FILES+=usr/share/man/man3/endvfsent.3.gz 16995OLD_FILES+=usr/share/man/man3/getvfsbytype.3.gz 16996OLD_FILES+=usr/share/man/man3/getvfsent.3.gz 16997OLD_FILES+=usr/share/man/man3/isnanf.3.gz 16998OLD_FILES+=usr/share/man/man3/libautofs.3.gz 16999OLD_FILES+=usr/share/man/man3/pthread_attr_setsstack.3.gz 17000OLD_FILES+=usr/share/man/man3/pthread_getcancelstate.3.gz 17001OLD_FILES+=usr/share/man/man3/set_assertion_failure_callback.3.gz 17002OLD_FILES+=usr/share/man/man3/setkey.3.gz 17003OLD_FILES+=usr/share/man/man3/setvfsent.3.gz 17004OLD_FILES+=usr/share/man/man3/ssl.3.gz 17005OLD_FILES+=usr/share/man/man3/vfsisloadable.3.gz 17006OLD_FILES+=usr/share/man/man3/vfsload.3.gz 17007OLD_FILES+=usr/share/man/man4/als4000.4.gz 17008OLD_FILES+=usr/share/man/man4/csa.4.gz 17009OLD_FILES+=usr/share/man/man4/emu10k1.4.gz 17010OLD_FILES+=usr/share/man/man4/euc.4.gz 17011OLD_FILES+=usr/share/man/man4/gusc.4.gz 17012OLD_FILES+=usr/share/man/man4/if_fwp.4.gz 17013OLD_FILES+=usr/share/man/man4/lomac.4.gz 17014OLD_FILES+=usr/share/man/man4/maestro3.4.gz 17015OLD_FILES+=usr/share/man/man4/raid.4.gz 17016OLD_FILES+=usr/share/man/man4/sbc.4.gz 17017OLD_FILES+=usr/share/man/man4/sd.4.gz 17018OLD_FILES+=usr/share/man/man4/snc.4.gz 17019OLD_FILES+=usr/share/man/man4/st.4.gz 17020OLD_FILES+=usr/share/man/man4/uaudio.4.gz 17021OLD_FILES+=usr/share/man/man4/utf2.4.gz 17022OLD_FILES+=usr/share/man/man4/vinumdebug.4.gz 17023OLD_FILES+=usr/share/man/man5/disklabel.5.gz 17024OLD_FILES+=usr/share/man/man5/dm.conf.5.gz 17025OLD_FILES+=usr/share/man/man5/ranlib.5.gz 17026OLD_FILES+=usr/share/man/man5/utf2.5.gz 17027OLD_FILES+=usr/share/man/man7/groff_mwww.7.gz 17028OLD_FILES+=usr/share/man/man7/mmroff.7.gz 17029OLD_FILES+=usr/share/man/man7/mwww.7.gz 17030OLD_FILES+=usr/share/man/man8/dm.8.gz 17031OLD_FILES+=usr/share/man/man8/pam_ftp.8.gz 17032OLD_FILES+=usr/share/man/man8/pam_wheel.8.gz 17033OLD_FILES+=usr/share/man/man8/ssl.8.gz 17034OLD_FILES+=usr/share/man/man8/wlconfig.8.gz 17035OLD_FILES+=usr/share/man/man9/CURSIG.9.gz 17036OLD_FILES+=usr/share/man/man9/VFS_INIT.9.gz 17037OLD_FILES+=usr/share/man/man9/at_exit.9.gz 17038OLD_FILES+=usr/share/man/man9/at_fork.9.gz 17039OLD_FILES+=usr/share/man/man9/cdevsw_add.9.gz 17040OLD_FILES+=usr/share/man/man9/cdevsw_remove.9.gz 17041OLD_FILES+=usr/share/man/man9/cv_waitq_empty.9.gz 17042OLD_FILES+=usr/share/man/man9/cv_waitq_remove.9.gz 17043OLD_FILES+=usr/share/man/man9/endtsleep.9.gz 17044OLD_FILES+=usr/share/man/man9/jumbo.9.gz 17045OLD_FILES+=usr/share/man/man9/jumbo_freem.9.gz 17046OLD_FILES+=usr/share/man/man9/jumbo_pg_alloc.9.gz 17047OLD_FILES+=usr/share/man/man9/jumbo_pg_free.9.gz 17048OLD_FILES+=usr/share/man/man9/jumbo_pg_steal.9.gz 17049OLD_FILES+=usr/share/man/man9/jumbo_phys_to_kva.9.gz 17050OLD_FILES+=usr/share/man/man9/jumbo_vm_init.9.gz 17051OLD_FILES+=usr/share/man/man9/mac_biba.9.gz 17052OLD_FILES+=usr/share/man/man9/mac_bsdextended.9.gz 17053OLD_FILES+=usr/share/man/man9/mono_time.9.gz 17054OLD_FILES+=usr/share/man/man9/p1003_1b.9.gz 17055OLD_FILES+=usr/share/man/man9/pmap_prefault.9.gz 17056OLD_FILES+=usr/share/man/man9/posix4.9.gz 17057OLD_FILES+=usr/share/man/man9/resource_query_name.9.gz 17058OLD_FILES+=usr/share/man/man9/resource_query_string.9.gz 17059OLD_FILES+=usr/share/man/man9/resource_query_unit.9.gz 17060OLD_FILES+=usr/share/man/man9/rm_at_exit.9.gz 17061OLD_FILES+=usr/share/man/man9/rm_at_fork.9.gz 17062OLD_FILES+=usr/share/man/man9/runtime.9.gz 17063OLD_FILES+=usr/share/man/man9/sleepinit.9.gz 17064OLD_FILES+=usr/share/man/man9/unsleep.9.gz 17065OLD_FILES+=usr/share/games/atc/Game_List 17066OLD_FILES+=usr/share/games/atc/Killer 17067OLD_FILES+=usr/share/games/atc/crossover 17068OLD_FILES+=usr/share/games/atc/default 17069OLD_FILES+=usr/share/games/atc/easy 17070OLD_FILES+=usr/share/games/atc/game_2 17071OLD_FILES+=usr/share/games/larn/larnmaze 17072OLD_FILES+=usr/share/games/larn/larnopts 17073OLD_FILES+=usr/share/games/larn/larn.help 17074OLD_FILES+=usr/share/games/quiz.db/africa 17075OLD_FILES+=usr/share/games/quiz.db/america 17076OLD_FILES+=usr/share/games/quiz.db/areas 17077OLD_FILES+=usr/share/games/quiz.db/arith 17078OLD_FILES+=usr/share/games/quiz.db/asia 17079OLD_FILES+=usr/share/games/quiz.db/babies 17080OLD_FILES+=usr/share/games/quiz.db/bard 17081OLD_FILES+=usr/share/games/quiz.db/chinese 17082OLD_FILES+=usr/share/games/quiz.db/collectives 17083OLD_FILES+=usr/share/games/quiz.db/ed 17084OLD_FILES+=usr/share/games/quiz.db/elements 17085OLD_FILES+=usr/share/games/quiz.db/europe 17086OLD_FILES+=usr/share/games/quiz.db/flowers 17087OLD_FILES+=usr/share/games/quiz.db/greek 17088OLD_FILES+=usr/share/games/quiz.db/inca 17089OLD_FILES+=usr/share/games/quiz.db/index 17090OLD_FILES+=usr/share/games/quiz.db/latin 17091OLD_FILES+=usr/share/games/quiz.db/locomotive 17092OLD_FILES+=usr/share/games/quiz.db/midearth 17093OLD_FILES+=usr/share/games/quiz.db/morse 17094OLD_FILES+=usr/share/games/quiz.db/murders 17095OLD_FILES+=usr/share/games/quiz.db/poetry 17096OLD_FILES+=usr/share/games/quiz.db/posneg 17097OLD_FILES+=usr/share/games/quiz.db/pres 17098OLD_FILES+=usr/share/games/quiz.db/province 17099OLD_FILES+=usr/share/games/quiz.db/seq-easy 17100OLD_FILES+=usr/share/games/quiz.db/seq-hard 17101OLD_FILES+=usr/share/games/quiz.db/sexes 17102OLD_FILES+=usr/share/games/quiz.db/sov 17103OLD_FILES+=usr/share/games/quiz.db/spell 17104OLD_FILES+=usr/share/games/quiz.db/state 17105OLD_FILES+=usr/share/games/quiz.db/trek 17106OLD_FILES+=usr/share/games/quiz.db/ucc 17107OLD_FILES+=usr/share/games/cribbage.instr 17108OLD_FILES+=usr/share/games/fish.instr 17109OLD_FILES+=usr/share/games/wump.info 17110OLD_FILES+=usr/games/hide/adventure 17111OLD_FILES+=usr/games/hide/arithmetic 17112OLD_FILES+=usr/games/hide/atc 17113OLD_FILES+=usr/games/hide/backgammon 17114OLD_FILES+=usr/games/hide/teachgammon 17115OLD_FILES+=usr/games/hide/battlestar 17116OLD_FILES+=usr/games/hide/bs 17117OLD_FILES+=usr/games/hide/canfield 17118OLD_FILES+=usr/games/hide/cribbage 17119OLD_FILES+=usr/games/hide/fish 17120OLD_FILES+=usr/games/hide/hack 17121OLD_FILES+=usr/games/hide/hangman 17122OLD_FILES+=usr/games/hide/larn 17123OLD_FILES+=usr/games/hide/mille 17124OLD_FILES+=usr/games/hide/phantasia 17125OLD_FILES+=usr/games/hide/quiz 17126OLD_FILES+=usr/games/hide/robots 17127OLD_FILES+=usr/games/hide/rogue 17128OLD_FILES+=usr/games/hide/sail 17129OLD_FILES+=usr/games/hide/snake 17130OLD_FILES+=usr/games/hide/trek 17131OLD_FILES+=usr/games/hide/worm 17132OLD_FILES+=usr/games/hide/wump 17133OLD_FILES+=usr/games/adventure 17134OLD_FILES+=usr/games/arithmetic 17135OLD_FILES+=usr/games/atc 17136OLD_FILES+=usr/games/backgammon 17137OLD_FILES+=usr/games/teachgammon 17138OLD_FILES+=usr/games/battlestar 17139OLD_FILES+=usr/games/bs 17140OLD_FILES+=usr/games/canfield 17141OLD_FILES+=usr/games/cfscores 17142OLD_FILES+=usr/games/cribbage 17143OLD_FILES+=usr/games/dm 17144OLD_FILES+=usr/games/fish 17145OLD_FILES+=usr/games/hack 17146OLD_FILES+=usr/games/hangman 17147OLD_FILES+=usr/games/larn 17148OLD_FILES+=usr/games/mille 17149OLD_FILES+=usr/games/phantasia 17150OLD_FILES+=usr/games/piano 17151OLD_FILES+=usr/games/pig 17152OLD_FILES+=usr/games/quiz 17153OLD_FILES+=usr/games/rain 17154OLD_FILES+=usr/games/robots 17155OLD_FILES+=usr/games/rogue 17156OLD_FILES+=usr/games/sail 17157OLD_FILES+=usr/games/snake 17158OLD_FILES+=usr/games/snscore 17159OLD_FILES+=usr/games/trek 17160OLD_FILES+=usr/games/wargames 17161OLD_FILES+=usr/games/worm 17162OLD_FILES+=usr/games/worms 17163OLD_FILES+=usr/games/wump 17164OLD_FILES+=sbin/mount_reiserfs 17165OLD_FILES+=usr/include/cam/cam_extend.h 17166OLD_FILES+=usr/include/dev/wi/wi_hostap.h 17167OLD_FILES+=usr/include/disktab.h 17168OLD_FILES+=usr/include/g++/FlexLexer.h 17169OLD_FILES+=usr/include/g++/PlotFile.h 17170OLD_FILES+=usr/include/g++/SFile.h 17171OLD_FILES+=usr/include/g++/_G_config.h 17172OLD_FILES+=usr/include/g++/algo.h 17173OLD_FILES+=usr/include/g++/algobase.h 17174OLD_FILES+=usr/include/g++/algorithm 17175OLD_FILES+=usr/include/g++/alloc.h 17176OLD_FILES+=usr/include/g++/bitset 17177OLD_FILES+=usr/include/g++/builtinbuf.h 17178OLD_FILES+=usr/include/g++/bvector.h 17179OLD_FILES+=usr/include/g++/cassert 17180OLD_FILES+=usr/include/g++/cctype 17181OLD_FILES+=usr/include/g++/cerrno 17182OLD_FILES+=usr/include/g++/cfloat 17183OLD_FILES+=usr/include/g++/ciso646 17184OLD_FILES+=usr/include/g++/climits 17185OLD_FILES+=usr/include/g++/clocale 17186OLD_FILES+=usr/include/g++/cmath 17187OLD_FILES+=usr/include/g++/complex 17188OLD_FILES+=usr/include/g++/complex.h 17189OLD_FILES+=usr/include/g++/csetjmp 17190OLD_FILES+=usr/include/g++/csignal 17191OLD_FILES+=usr/include/g++/cstdarg 17192OLD_FILES+=usr/include/g++/cstddef 17193OLD_FILES+=usr/include/g++/cstdio 17194OLD_FILES+=usr/include/g++/cstdlib 17195OLD_FILES+=usr/include/g++/cstring 17196OLD_FILES+=usr/include/g++/ctime 17197OLD_FILES+=usr/include/g++/cwchar 17198OLD_FILES+=usr/include/g++/cwctype 17199OLD_FILES+=usr/include/g++/defalloc.h 17200OLD_FILES+=usr/include/g++/deque 17201OLD_FILES+=usr/include/g++/deque.h 17202OLD_FILES+=usr/include/g++/editbuf.h 17203OLD_FILES+=usr/include/g++/exception 17204OLD_FILES+=usr/include/g++/floatio.h 17205OLD_FILES+=usr/include/g++/fstream 17206OLD_FILES+=usr/include/g++/fstream.h 17207OLD_FILES+=usr/include/g++/function.h 17208OLD_FILES+=usr/include/g++/functional 17209OLD_FILES+=usr/include/g++/hash_map 17210OLD_FILES+=usr/include/g++/hash_map.h 17211OLD_FILES+=usr/include/g++/hash_set 17212OLD_FILES+=usr/include/g++/hash_set.h 17213OLD_FILES+=usr/include/g++/hashtable.h 17214OLD_FILES+=usr/include/g++/heap.h 17215OLD_FILES+=usr/include/g++/indstream.h 17216OLD_FILES+=usr/include/g++/iolibio.h 17217OLD_FILES+=usr/include/g++/iomanip 17218OLD_FILES+=usr/include/g++/iomanip.h 17219OLD_FILES+=usr/include/g++/iosfwd 17220OLD_FILES+=usr/include/g++/iostdio.h 17221OLD_FILES+=usr/include/g++/iostream 17222OLD_FILES+=usr/include/g++/iostream.h 17223OLD_FILES+=usr/include/g++/iostreamP.h 17224OLD_FILES+=usr/include/g++/istream.h 17225OLD_FILES+=usr/include/g++/iterator 17226OLD_FILES+=usr/include/g++/iterator.h 17227OLD_FILES+=usr/include/g++/libio.h 17228OLD_FILES+=usr/include/g++/libioP.h 17229OLD_FILES+=usr/include/g++/list 17230OLD_FILES+=usr/include/g++/list.h 17231OLD_FILES+=usr/include/g++/map 17232OLD_FILES+=usr/include/g++/map.h 17233OLD_FILES+=usr/include/g++/memory 17234OLD_FILES+=usr/include/g++/multimap.h 17235OLD_FILES+=usr/include/g++/multiset.h 17236OLD_FILES+=usr/include/g++/new 17237OLD_FILES+=usr/include/g++/new.h 17238OLD_FILES+=usr/include/g++/numeric 17239OLD_FILES+=usr/include/g++/ostream.h 17240OLD_FILES+=usr/include/g++/pair.h 17241OLD_FILES+=usr/include/g++/parsestream.h 17242OLD_FILES+=usr/include/g++/pfstream.h 17243OLD_FILES+=usr/include/g++/procbuf.h 17244OLD_FILES+=usr/include/g++/pthread_alloc 17245OLD_FILES+=usr/include/g++/pthread_alloc.h 17246OLD_FILES+=usr/include/g++/queue 17247OLD_FILES+=usr/include/g++/rope 17248OLD_FILES+=usr/include/g++/rope.h 17249OLD_FILES+=usr/include/g++/ropeimpl.h 17250OLD_FILES+=usr/include/g++/set 17251OLD_FILES+=usr/include/g++/set.h 17252OLD_FILES+=usr/include/g++/slist 17253OLD_FILES+=usr/include/g++/slist.h 17254OLD_FILES+=usr/include/g++/sstream 17255OLD_FILES+=usr/include/g++/stack 17256OLD_FILES+=usr/include/g++/stack.h 17257OLD_FILES+=usr/include/g++/std/bastring.cc 17258OLD_FILES+=usr/include/g++/std/bastring.h 17259OLD_FILES+=usr/include/g++/std/complext.cc 17260OLD_FILES+=usr/include/g++/std/complext.h 17261OLD_FILES+=usr/include/g++/std/dcomplex.h 17262OLD_FILES+=usr/include/g++/std/fcomplex.h 17263OLD_FILES+=usr/include/g++/std/gslice.h 17264OLD_FILES+=usr/include/g++/std/gslice_array.h 17265OLD_FILES+=usr/include/g++/std/indirect_array.h 17266OLD_FILES+=usr/include/g++/std/ldcomplex.h 17267OLD_FILES+=usr/include/g++/std/mask_array.h 17268OLD_FILES+=usr/include/g++/std/slice.h 17269OLD_FILES+=usr/include/g++/std/slice_array.h 17270OLD_FILES+=usr/include/g++/std/std_valarray.h 17271OLD_FILES+=usr/include/g++/std/straits.h 17272OLD_FILES+=usr/include/g++/std/valarray_array.h 17273OLD_FILES+=usr/include/g++/std/valarray_array.tcc 17274OLD_FILES+=usr/include/g++/std/valarray_meta.h 17275OLD_FILES+=usr/include/g++/stdexcept 17276OLD_FILES+=usr/include/g++/stdiostream.h 17277OLD_FILES+=usr/include/g++/stl.h 17278OLD_FILES+=usr/include/g++/stl_algo.h 17279OLD_FILES+=usr/include/g++/stl_algobase.h 17280OLD_FILES+=usr/include/g++/stl_alloc.h 17281OLD_FILES+=usr/include/g++/stl_bvector.h 17282OLD_FILES+=usr/include/g++/stl_config.h 17283OLD_FILES+=usr/include/g++/stl_construct.h 17284OLD_FILES+=usr/include/g++/stl_deque.h 17285OLD_FILES+=usr/include/g++/stl_function.h 17286OLD_FILES+=usr/include/g++/stl_hash_fun.h 17287OLD_FILES+=usr/include/g++/stl_hash_map.h 17288OLD_FILES+=usr/include/g++/stl_hash_set.h 17289OLD_FILES+=usr/include/g++/stl_hashtable.h 17290OLD_FILES+=usr/include/g++/stl_heap.h 17291OLD_FILES+=usr/include/g++/stl_iterator.h 17292OLD_FILES+=usr/include/g++/stl_list.h 17293OLD_FILES+=usr/include/g++/stl_map.h 17294OLD_FILES+=usr/include/g++/stl_multimap.h 17295OLD_FILES+=usr/include/g++/stl_multiset.h 17296OLD_FILES+=usr/include/g++/stl_numeric.h 17297OLD_FILES+=usr/include/g++/stl_pair.h 17298OLD_FILES+=usr/include/g++/stl_queue.h 17299OLD_FILES+=usr/include/g++/stl_raw_storage_iter.h 17300OLD_FILES+=usr/include/g++/stl_relops.h 17301OLD_FILES+=usr/include/g++/stl_rope.h 17302OLD_FILES+=usr/include/g++/stl_set.h 17303OLD_FILES+=usr/include/g++/stl_slist.h 17304OLD_FILES+=usr/include/g++/stl_stack.h 17305OLD_FILES+=usr/include/g++/stl_tempbuf.h 17306OLD_FILES+=usr/include/g++/stl_tree.h 17307OLD_FILES+=usr/include/g++/stl_uninitialized.h 17308OLD_FILES+=usr/include/g++/stl_vector.h 17309OLD_FILES+=usr/include/g++/stream.h 17310OLD_FILES+=usr/include/g++/streambuf.h 17311OLD_FILES+=usr/include/g++/strfile.h 17312OLD_FILES+=usr/include/g++/string 17313OLD_FILES+=usr/include/g++/strstream 17314OLD_FILES+=usr/include/g++/strstream.h 17315OLD_FILES+=usr/include/g++/tempbuf.h 17316OLD_FILES+=usr/include/g++/tree.h 17317OLD_FILES+=usr/include/g++/type_traits.h 17318OLD_FILES+=usr/include/g++/typeinfo 17319OLD_FILES+=usr/include/g++/utility 17320OLD_FILES+=usr/include/g++/valarray 17321OLD_FILES+=usr/include/g++/vector 17322OLD_FILES+=usr/include/g++/vector.h 17323OLD_FILES+=usr/include/gmp.h 17324OLD_FILES+=usr/include/isc/assertions.h 17325OLD_FILES+=usr/include/isc/ctl.h 17326OLD_FILES+=usr/include/isc/dst.h 17327OLD_FILES+=usr/include/isc/eventlib.h 17328OLD_FILES+=usr/include/isc/heap.h 17329OLD_FILES+=usr/include/isc/irpmarshall.h 17330OLD_FILES+=usr/include/isc/list.h 17331OLD_FILES+=usr/include/isc/logging.h 17332OLD_FILES+=usr/include/isc/memcluster.h 17333OLD_FILES+=usr/include/isc/misc.h 17334OLD_FILES+=usr/include/isc/tree.h 17335OLD_FILES+=usr/include/machine/ansi.h 17336OLD_FILES+=usr/include/machine/apic.h 17337OLD_FILES+=usr/include/machine/asc_ioctl.h 17338OLD_FILES+=usr/include/machine/asnames.h 17339OLD_FILES+=usr/include/machine/bus_at386.h 17340OLD_FILES+=usr/include/machine/bus_memio.h 17341OLD_FILES+=usr/include/machine/bus_pc98.h 17342OLD_FILES+=usr/include/machine/bus_pio.h 17343OLD_FILES+=usr/include/machine/cdk.h 17344OLD_FILES+=usr/include/machine/comstats.h 17345OLD_FILES+=usr/include/machine/console.h 17346OLD_FILES+=usr/include/machine/critical.h 17347OLD_FILES+=usr/include/machine/cronyx.h 17348OLD_FILES+=usr/include/machine/dvcfg.h 17349OLD_FILES+=usr/include/machine/globaldata.h 17350OLD_FILES+=usr/include/machine/globals.h 17351OLD_FILES+=usr/include/machine/gsc.h 17352OLD_FILES+=usr/include/machine/i4b_isppp.h 17353OLD_FILES+=usr/include/machine/if_wavelan_ieee.h 17354OLD_FILES+=usr/include/machine/iic.h 17355OLD_FILES+=usr/include/machine/ioctl_ctx.h 17356OLD_FILES+=usr/include/machine/ioctl_fd.h 17357OLD_FILES+=usr/include/machine/ipl.h 17358OLD_FILES+=usr/include/machine/lock.h 17359OLD_FILES+=usr/include/machine/mouse.h 17360OLD_FILES+=usr/include/machine/mpapic.h 17361OLD_FILES+=usr/include/machine/mtpr.h 17362OLD_FILES+=usr/include/machine/pc/msdos.h 17363OLD_FILES+=usr/include/machine/physio_proc.h 17364OLD_FILES+=usr/include/machine/smb.h 17365OLD_FILES+=usr/include/machine/spigot.h 17366OLD_FILES+=usr/include/machine/types.h 17367OLD_FILES+=usr/include/machine/uc_device.h 17368OLD_FILES+=usr/include/machine/ultrasound.h 17369OLD_FILES+=usr/include/machine/wtio.h 17370OLD_FILES+=usr/include/msdosfs/bootsect.h 17371OLD_FILES+=usr/include/msdosfs/bpb.h 17372OLD_FILES+=usr/include/msdosfs/denode.h 17373OLD_FILES+=usr/include/msdosfs/direntry.h 17374OLD_FILES+=usr/include/msdosfs/fat.h 17375OLD_FILES+=usr/include/msdosfs/msdosfsmount.h 17376OLD_FILES+=usr/include/net/hostcache.h 17377OLD_FILES+=usr/include/net/if_faith.h 17378OLD_FILES+=usr/include/net/if_ieee80211.h 17379OLD_FILES+=usr/include/net/if_tunvar.h 17380OLD_FILES+=usr/include/net/intrq.h 17381OLD_FILES+=usr/include/netatm/kern_include.h 17382OLD_FILES+=usr/include/netinet/if_fddi.h 17383OLD_FILES+=usr/include/netinet/in_hostcache.h 17384OLD_FILES+=usr/include/netinet/ip_flow.h 17385OLD_FILES+=usr/include/netinet/ip_fw2.h 17386OLD_FILES+=usr/include/netinet6/in6_prefix.h 17387OLD_FILES+=usr/include/netns/idp.h 17388OLD_FILES+=usr/include/netns/idp_var.h 17389OLD_FILES+=usr/include/netns/ns.h 17390OLD_FILES+=usr/include/netns/ns_error.h 17391OLD_FILES+=usr/include/netns/ns_if.h 17392OLD_FILES+=usr/include/netns/ns_pcb.h 17393OLD_FILES+=usr/include/netns/sp.h 17394OLD_FILES+=usr/include/netns/spidp.h 17395OLD_FILES+=usr/include/netns/spp_debug.h 17396OLD_FILES+=usr/include/netns/spp_timer.h 17397OLD_FILES+=usr/include/netns/spp_var.h 17398OLD_FILES+=usr/include/nfs/nfs.h 17399OLD_FILES+=usr/include/nfs/nfsm_subs.h 17400OLD_FILES+=usr/include/nfs/nfsmount.h 17401OLD_FILES+=usr/include/nfs/nfsnode.h 17402OLD_FILES+=usr/include/nfs/nfsrtt.h 17403OLD_FILES+=usr/include/nfs/nfsrvcache.h 17404OLD_FILES+=usr/include/nfs/nfsv2.h 17405OLD_FILES+=usr/include/nfs/nqnfs.h 17406OLD_FILES+=usr/include/ntfs/ntfs.h 17407OLD_FILES+=usr/include/ntfs/ntfs_compr.h 17408OLD_FILES+=usr/include/ntfs/ntfs_ihash.h 17409OLD_FILES+=usr/include/ntfs/ntfs_inode.h 17410OLD_FILES+=usr/include/ntfs/ntfs_subr.h 17411OLD_FILES+=usr/include/ntfs/ntfs_vfsops.h 17412OLD_FILES+=usr/include/ntfs/ntfsmount.h 17413OLD_FILES+=usr/include/nwfs/nwfs.h 17414OLD_FILES+=usr/include/nwfs/nwfs_mount.h 17415OLD_FILES+=usr/include/nwfs/nwfs_node.h 17416OLD_FILES+=usr/include/nwfs/nwfs_subr.h 17417OLD_FILES+=usr/include/posix4/_semaphore.h 17418OLD_FILES+=usr/include/posix4/aio.h 17419OLD_FILES+=usr/include/posix4/ksem.h 17420OLD_FILES+=usr/include/posix4/mqueue.h 17421OLD_FILES+=usr/include/posix4/posix4.h 17422OLD_FILES+=usr/include/posix4/sched.h 17423OLD_FILES+=usr/include/posix4/semaphore.h 17424OLD_DIRS+=usr/include/posix4 17425OLD_FILES+=usr/include/security/_pam_compat.h 17426OLD_FILES+=usr/include/security/_pam_macros.h 17427OLD_FILES+=usr/include/security/_pam_types.h 17428OLD_FILES+=usr/include/security/pam_malloc.h 17429OLD_FILES+=usr/include/security/pam_misc.h 17430OLD_FILES+=usr/include/skey.h 17431OLD_FILES+=usr/include/strhash.h 17432OLD_FILES+=usr/include/struct.h 17433OLD_FILES+=usr/include/sys/_label.h 17434OLD_FILES+=usr/include/sys/_posix.h 17435OLD_FILES+=usr/include/sys/bus_private.h 17436OLD_FILES+=usr/include/sys/ccdvar.h 17437OLD_FILES+=usr/include/sys/diskslice.h 17438OLD_FILES+=usr/include/sys/dmap.h 17439OLD_FILES+=usr/include/sys/inttypes.h 17440OLD_FILES+=usr/include/sys/jumbo.h 17441OLD_FILES+=usr/include/sys/mac_policy.h 17442OLD_FILES+=usr/include/sys/pbioio.h 17443OLD_FILES+=usr/include/sys/syscall-hide.h 17444OLD_FILES+=usr/include/sys/tprintf.h 17445OLD_FILES+=usr/include/sys/vnioctl.h 17446OLD_FILES+=usr/include/sys/wormio.h 17447OLD_FILES+=usr/include/telnet.h 17448OLD_FILES+=usr/include/ufs/mfs/mfs_extern.h 17449OLD_FILES+=usr/include/ufs/mfs/mfsnode.h 17450OLD_FILES+=usr/include/values.h 17451OLD_FILES+=usr/include/vm/vm_zone.h 17452OLD_FILES+=usr/share/examples/etc/usbd.conf 17453OLD_FILES+=usr/share/examples/meteor/README 17454OLD_FILES+=usr/share/examples/meteor/rgb16.c 17455OLD_FILES+=usr/share/examples/meteor/rgb24.c 17456OLD_FILES+=usr/share/examples/meteor/test-n.c 17457OLD_FILES+=usr/share/examples/meteor/yuvpk.c 17458OLD_FILES+=usr/share/examples/meteor/yuvpl.c 17459OLD_FILES+=usr/share/examples/worm/README 17460OLD_FILES+=usr/share/examples/worm/makecdfs.sh 17461OLD_FILES+=usr/share/groff_font/devlj4/Makefile 17462OLD_FILES+=usr/share/groff_font/devlj4/text.map 17463OLD_FILES+=usr/share/groff_font/devlj4/special.map 17464OLD_FILES+=usr/share/misc/nslookup.help 17465OLD_FILES+=usr/share/sendmail/cf/feature/nodns.m4 17466OLD_FILES+=usr/share/syscons/keymaps/lat-amer.kbd 17467OLD_FILES+=usr/share/vi/catalog/ru_SU.KOI8-R 17468OLD_FILES+=usr/share/zoneinfo/SystemV/YST9 17469OLD_FILES+=usr/share/zoneinfo/SystemV/PST8 17470OLD_FILES+=usr/share/zoneinfo/SystemV/EST5EDT 17471OLD_FILES+=usr/share/zoneinfo/SystemV/CST6CDT 17472OLD_FILES+=usr/share/zoneinfo/SystemV/MST7MDT 17473OLD_FILES+=usr/share/zoneinfo/SystemV/PST8PDT 17474OLD_FILES+=usr/share/zoneinfo/SystemV/YST9YDT 17475OLD_FILES+=usr/share/zoneinfo/SystemV/HST10 17476OLD_FILES+=usr/share/zoneinfo/SystemV/MST7 17477OLD_FILES+=usr/share/zoneinfo/SystemV/EST5 17478OLD_FILES+=usr/share/zoneinfo/SystemV/AST4ADT 17479OLD_FILES+=usr/share/zoneinfo/SystemV/CST6 17480OLD_FILES+=usr/share/zoneinfo/SystemV/AST4 17481OLD_DIRS+=usr/share/zoneinfo/SystemV 17482OLD_FILES+=usr/share/doc/ntp/accopt.htm 17483OLD_FILES+=usr/share/doc/ntp/assoc.htm 17484OLD_FILES+=usr/share/doc/ntp/audio.htm 17485OLD_FILES+=usr/share/doc/ntp/authopt.htm 17486OLD_FILES+=usr/share/doc/ntp/biblio.htm 17487OLD_FILES+=usr/share/doc/ntp/build.htm 17488OLD_FILES+=usr/share/doc/ntp/clockopt.htm 17489OLD_FILES+=usr/share/doc/ntp/config.htm 17490OLD_FILES+=usr/share/doc/ntp/confopt.htm 17491OLD_FILES+=usr/share/doc/ntp/copyright.htm 17492OLD_FILES+=usr/share/doc/ntp/debug.htm 17493OLD_FILES+=usr/share/doc/ntp/driver1.htm 17494OLD_FILES+=usr/share/doc/ntp/driver10.htm 17495OLD_FILES+=usr/share/doc/ntp/driver11.htm 17496OLD_FILES+=usr/share/doc/ntp/driver12.htm 17497OLD_FILES+=usr/share/doc/ntp/driver16.htm 17498OLD_FILES+=usr/share/doc/ntp/driver18.htm 17499OLD_FILES+=usr/share/doc/ntp/driver19.htm 17500OLD_FILES+=usr/share/doc/ntp/driver2.htm 17501OLD_FILES+=usr/share/doc/ntp/driver20.htm 17502OLD_FILES+=usr/share/doc/ntp/driver22.htm 17503OLD_FILES+=usr/share/doc/ntp/driver23.htm 17504OLD_FILES+=usr/share/doc/ntp/driver24.htm 17505OLD_FILES+=usr/share/doc/ntp/driver26.htm 17506OLD_FILES+=usr/share/doc/ntp/driver27.htm 17507OLD_FILES+=usr/share/doc/ntp/driver28.htm 17508OLD_FILES+=usr/share/doc/ntp/driver29.htm 17509OLD_FILES+=usr/share/doc/ntp/driver3.htm 17510OLD_FILES+=usr/share/doc/ntp/driver30.htm 17511OLD_FILES+=usr/share/doc/ntp/driver32.htm 17512OLD_FILES+=usr/share/doc/ntp/driver33.htm 17513OLD_FILES+=usr/share/doc/ntp/driver34.htm 17514OLD_FILES+=usr/share/doc/ntp/driver35.htm 17515OLD_FILES+=usr/share/doc/ntp/driver36.htm 17516OLD_FILES+=usr/share/doc/ntp/driver37.htm 17517OLD_FILES+=usr/share/doc/ntp/driver4.htm 17518OLD_FILES+=usr/share/doc/ntp/driver5.htm 17519OLD_FILES+=usr/share/doc/ntp/driver6.htm 17520OLD_FILES+=usr/share/doc/ntp/driver7.htm 17521OLD_FILES+=usr/share/doc/ntp/driver8.htm 17522OLD_FILES+=usr/share/doc/ntp/driver9.htm 17523OLD_FILES+=usr/share/doc/ntp/exec.htm 17524OLD_FILES+=usr/share/doc/ntp/extern.htm 17525OLD_FILES+=usr/share/doc/ntp/gadget.htm 17526OLD_FILES+=usr/share/doc/ntp/hints.htm 17527OLD_FILES+=usr/share/doc/ntp/howto.htm 17528OLD_FILES+=usr/share/doc/ntp/htmlprimer.htm 17529OLD_FILES+=usr/share/doc/ntp/index.htm 17530OLD_FILES+=usr/share/doc/ntp/kern.htm 17531OLD_FILES+=usr/share/doc/ntp/kernpps.htm 17532OLD_FILES+=usr/share/doc/ntp/ldisc.htm 17533OLD_FILES+=usr/share/doc/ntp/measure.htm 17534OLD_FILES+=usr/share/doc/ntp/miscopt.htm 17535OLD_FILES+=usr/share/doc/ntp/monopt.htm 17536OLD_FILES+=usr/share/doc/ntp/mx4200data.htm 17537OLD_FILES+=usr/share/doc/ntp/notes.htm 17538OLD_FILES+=usr/share/doc/ntp/ntpd.htm 17539OLD_FILES+=usr/share/doc/ntp/ntpdate.htm 17540OLD_FILES+=usr/share/doc/ntp/ntpdc.htm 17541OLD_FILES+=usr/share/doc/ntp/ntpq.htm 17542OLD_FILES+=usr/share/doc/ntp/ntptime.htm 17543OLD_FILES+=usr/share/doc/ntp/ntptrace.htm 17544OLD_FILES+=usr/share/doc/ntp/parsedata.htm 17545OLD_FILES+=usr/share/doc/ntp/parsenew.htm 17546OLD_FILES+=usr/share/doc/ntp/patches.htm 17547OLD_FILES+=usr/share/doc/ntp/porting.htm 17548OLD_FILES+=usr/share/doc/ntp/pps.htm 17549OLD_FILES+=usr/share/doc/ntp/prefer.htm 17550OLD_FILES+=usr/share/doc/ntp/qth.htm 17551OLD_FILES+=usr/share/doc/ntp/quick.htm 17552OLD_FILES+=usr/share/doc/ntp/rdebug.htm 17553OLD_FILES+=usr/share/doc/ntp/refclock.htm 17554OLD_FILES+=usr/share/doc/ntp/release.htm 17555OLD_FILES+=usr/share/doc/ntp/tickadj.htm 17556OLD_FILES+=usr/share/doc/papers/nqnfs.ascii.gz 17557OLD_FILES+=usr/share/doc/papers/px.ascii.gz 17558OLD_FILES+=usr/share/man/man3/exp10.3.gz 17559OLD_FILES+=usr/share/man/man3/exp10f.3.gz 17560OLD_FILES+=usr/share/man/man3/fpsetsticky.3.gz 17561OLD_FILES+=usr/share/man/man3/gss_krb5_compat_des3_mic.3.gz 17562OLD_FILES+=usr/share/man/man3/gss_krb5_copy_ccache.3.gz 17563OLD_FILES+=usr/share/man/man3/mac_is_present_np.3.gz 17564OLD_FILES+=usr/share/man/man3/mbmb.3.gz 17565OLD_FILES+=usr/share/man/man3/setrunelocale.3.gz 17566OLD_FILES+=usr/share/man/man5/usbd.conf.5.gz 17567.if ${TARGET_ARCH} != "i386" && ${TARGET_ARCH} != "amd64" 17568OLD_FILES+=usr/share/man/man8/boot_i386.8.gz 17569.endif 17570.if ${TARGET_ARCH} != "aarch64" && ${TARGET} != "arm" && \ 17571 ${TARGET_ARCH} != "powerpc" && ${TARGET_ARCH} != "powerpc64" && \ 17572 ${TARGET_ARCH} != "sparc64" && ${TARGET} != "mips" 17573OLD_FILES+=usr/share/man/man8/ofwdump.8.gz 17574.endif 17575OLD_FILES+=usr/share/man/man8/mount_reiserfs.8.gz 17576OLD_FILES+=usr/share/man/man9/VFS_START.9.gz 17577OLD_FILES+=usr/share/man/man9/cpu_critical_exit.9.gz 17578OLD_FILES+=usr/share/man/man9/cpu_critical_enter.9.gz 17579OLD_FILES+=usr/share/info/annotate.info.gz 17580OLD_FILES+=usr/share/info/tar.info.gz 17581OLD_FILES+=usr/share/bsnmp/defs/tree.def 17582OLD_FILES+=usr/share/bsnmp/defs/mibII_tree.def 17583OLD_FILES+=usr/share/bsnmp/defs/netgraph_tree.def 17584OLD_FILES+=usr/share/bsnmp/mibs/FOKUS-MIB.txt 17585OLD_FILES+=usr/share/bsnmp/mibs/BEGEMOT-MIB.txt 17586OLD_FILES+=usr/share/bsnmp/mibs/BEGEMOT-SNMPD.txt 17587OLD_FILES+=usr/share/bsnmp/mibs/BEGEMOT-NETGRAPH.txt 17588OLD_FILES+=usr/libdata/msdosfs/iso22dos 17589OLD_FILES+=usr/libdata/msdosfs/iso72dos 17590OLD_FILES+=usr/libdata/msdosfs/koi2dos 17591OLD_FILES+=usr/libdata/msdosfs/koi8u2dos 17592# The following files are *not* obsolete, they just don't get touched at 17593# install, so don't add them: 17594# - boot/loader.rc 17595# - usr/share/tmac/man.local 17596# - usr/share/tmac/mm/locale 17597# - usr/share/tmac/mm/se_locale 17598# - var/yp/Makefile 17599 17600# Early entries split OLD_FILES, OLD_LIBS, and OLD_DIRS into separate sections 17601# in this file, but this practice was abandoned in the mid-2000s. 17602# 17603# 20071120: shared library version bump 17604OLD_LIBS+=usr/lib/libasn1.so.8 17605OLD_LIBS+=usr/lib/libgssapi.so.8 17606OLD_LIBS+=usr/lib/libgssapi_krb5.so.8 17607OLD_LIBS+=usr/lib/libhdb.so.8 17608OLD_LIBS+=usr/lib/libkadm5clnt.so.8 17609OLD_LIBS+=usr/lib/libkadm5srv.so.8 17610OLD_LIBS+=usr/lib/libkafs5.so.8 17611OLD_LIBS+=usr/lib/libkrb5.so.8 17612OLD_LIBS+=usr/lib/libobjc.so.2 17613# 20070519: GCC 4.2 17614OLD_FILES+=usr/lib/libg2c.a 17615OLD_FILES+=usr/lib/libg2c.so 17616OLD_LIBS+=usr/lib/libg2c.so.2 17617OLD_FILES+=usr/lib/libg2c_p.a 17618OLD_FILES+=usr/lib/libgcc_pic.a 17619# 20060729: OpenSSL 0.9.7e -> 0.9.8b upgrade 17620OLD_LIBS+=lib/libcrypto.so.4 17621OLD_LIBS+=usr/lib/libssl.so.4 17622# 20060521: gethostbyaddr(3) ABI change 17623OLD_LIBS+=usr/lib/libroken.so.8 17624OLD_LIBS+=lib/libatm.so.3 17625OLD_LIBS+=lib/libc.so.6 17626OLD_LIBS+=lib/libutil.so.5 17627# 20060413: shared library moved to /usr/lib 17628MOVED_LIBS+=lib/libgpib.so.1 17629# 20060413: libpcap.so.4 moved to /lib/ 17630MOVED_LIBS+=usr/lib/libpcap.so.4 17631# 20060412: libpthread.so.2 moved to /lib/ 17632MOVED_LIBS+=usr/lib/libpthread.so.2 17633# 20060127: revert libdisk to static-only 17634OLD_LIBS+=usr/lib/libdisk.so.3 17635# 20051027: libc_r discontinued (removed 20101113) 17636OLD_FILES+=usr/lib/libc_r.a 17637OLD_FILES+=usr/lib/libc_r.so 17638OLD_LIBS+=usr/lib/libc_r.so.7 17639OLD_FILES+=usr/lib/libc_r_p.a 17640# 20050722: bump for 6.0-RELEASE 17641OLD_LIBS+=lib/libalias.so.4 17642OLD_LIBS+=lib/libatm.so.2 17643OLD_LIBS+=lib/libbegemot.so.1 17644OLD_LIBS+=lib/libbsdxml.so.1 17645OLD_LIBS+=lib/libbsnmp.so.2 17646OLD_LIBS+=lib/libc.so.5 17647OLD_LIBS+=lib/libcam.so.2 17648OLD_LIBS+=lib/libcrypt.so.2 17649OLD_LIBS+=lib/libcrypto.so.3 17650OLD_LIBS+=lib/libdevstat.so.4 17651OLD_LIBS+=lib/libedit.so.4 17652OLD_LIBS+=lib/libgeom.so.2 17653OLD_LIBS+=lib/libgpib.so.0 17654OLD_LIBS+=lib/libipsec.so.1 17655OLD_LIBS+=lib/libipx.so.2 17656OLD_LIBS+=lib/libkiconv.so.1 17657OLD_LIBS+=lib/libkvm.so.2 17658OLD_LIBS+=lib/libm.so.3 17659OLD_LIBS+=lib/libmd.so.2 17660OLD_LIBS+=lib/libncurses.so.5 17661OLD_LIBS+=lib/libreadline.so.5 17662OLD_LIBS+=lib/libsbuf.so.2 17663OLD_LIBS+=lib/libufs.so.2 17664OLD_LIBS+=lib/libutil.so.4 17665OLD_LIBS+=lib/libz.so.2 17666OLD_LIBS+=usr/lib/libarchive.so.1 17667OLD_LIBS+=usr/lib/libasn1.so.7 17668OLD_LIBS+=usr/lib/libbluetooth.so.1 17669OLD_LIBS+=usr/lib/libbz2.so.1 17670OLD_LIBS+=usr/lib/libc_r.so.5 17671OLD_LIBS+=usr/lib/libcalendar.so.2 17672OLD_LIBS+=usr/lib/libcom_err.so.2 17673OLD_LIBS+=usr/lib/libdevinfo.so.2 17674OLD_LIBS+=usr/lib/libdialog.so.4 17675OLD_LIBS+=usr/lib/libfetch.so.3 17676OLD_LIBS+=usr/lib/libform.so.2 17677OLD_LIBS+=usr/lib/libftpio.so.5 17678OLD_LIBS+=usr/lib/libg2c.so.1 17679OLD_LIBS+=usr/lib/libgnuregex.so.2 17680OLD_LIBS+=usr/lib/libgssapi.so.7 17681OLD_LIBS+=usr/lib/libhdb.so.7 17682OLD_LIBS+=usr/lib/libhistory.so.5 17683OLD_LIBS+=usr/lib/libkadm5clnt.so.7 17684OLD_LIBS+=usr/lib/libkadm5srv.so.7 17685OLD_LIBS+=usr/lib/libkafs5.so.7 17686OLD_LIBS+=usr/lib/libkrb5.so.7 17687OLD_LIBS+=usr/lib/libmagic.so.1 17688OLD_LIBS+=usr/lib/libmenu.so.2 17689OLD_LIBS+=usr/lib/libmilter.so.2 17690OLD_LIBS+=usr/lib/libmp.so.4 17691OLD_LIBS+=usr/lib/libncp.so.1 17692OLD_LIBS+=usr/lib/libnetgraph.so.1 17693OLD_LIBS+=usr/lib/libngatm.so.1 17694OLD_LIBS+=usr/lib/libobjc.so.1 17695OLD_LIBS+=usr/lib/libopie.so.3 17696OLD_LIBS+=usr/lib/libpam.so.2 17697OLD_LIBS+=usr/lib/libpanel.so.2 17698OLD_LIBS+=usr/lib/libpcap.so.3 17699OLD_LIBS+=usr/lib/libpmc.so.2 17700OLD_LIBS+=usr/lib/libpthread.so.1 17701OLD_LIBS+=usr/lib/libradius.so.1 17702OLD_LIBS+=usr/lib/libroken.so.7 17703OLD_LIBS+=usr/lib/librpcsvc.so.2 17704OLD_LIBS+=usr/lib/libsdp.so.1 17705OLD_LIBS+=usr/lib/libsmb.so.1 17706OLD_LIBS+=usr/lib/libssh.so.2 17707OLD_LIBS+=usr/lib/libssl.so.3 17708OLD_LIBS+=usr/lib/libstdc++.so.4 17709OLD_LIBS+=usr/lib/libtacplus.so.1 17710OLD_LIBS+=usr/lib/libthr.so.1 17711OLD_LIBS+=usr/lib/libthread_db.so.1 17712OLD_LIBS+=usr/lib/libugidfw.so.1 17713OLD_LIBS+=usr/lib/libusbhid.so.1 17714OLD_LIBS+=usr/lib/libvgl.so.3 17715OLD_LIBS+=usr/lib/libwrap.so.3 17716OLD_LIBS+=usr/lib/libypclnt.so.1 17717OLD_LIBS+=usr/lib/pam_chroot.so.2 17718OLD_LIBS+=usr/lib/pam_deny.so.2 17719OLD_LIBS+=usr/lib/pam_echo.so.2 17720OLD_LIBS+=usr/lib/pam_exec.so.2 17721OLD_LIBS+=usr/lib/pam_ftpusers.so.2 17722OLD_LIBS+=usr/lib/pam_group.so.2 17723OLD_LIBS+=usr/lib/pam_guest.so.2 17724OLD_LIBS+=usr/lib/pam_krb5.so.2 17725OLD_LIBS+=usr/lib/pam_ksu.so.2 17726OLD_LIBS+=usr/lib/pam_lastlog.so.2 17727OLD_LIBS+=usr/lib/pam_login_access.so.2 17728OLD_LIBS+=usr/lib/pam_nologin.so.2 17729OLD_LIBS+=usr/lib/pam_opie.so.2 17730OLD_LIBS+=usr/lib/pam_opieaccess.so.2 17731OLD_LIBS+=usr/lib/pam_passwdqc.so.2 17732OLD_LIBS+=usr/lib/pam_permit.so.2 17733OLD_LIBS+=usr/lib/pam_radius.so.2 17734OLD_LIBS+=usr/lib/pam_rhosts.so.2 17735OLD_LIBS+=usr/lib/pam_rootok.so.2 17736OLD_LIBS+=usr/lib/pam_securetty.so.2 17737OLD_LIBS+=usr/lib/pam_self.so.2 17738OLD_LIBS+=usr/lib/pam_ssh.so.2 17739OLD_LIBS+=usr/lib/pam_tacplus.so.2 17740OLD_LIBS+=usr/lib/pam_unix.so.2 17741OLD_LIBS+=usr/lib/snmp_atm.so.3 17742OLD_LIBS+=usr/lib/snmp_mibII.so.3 17743OLD_LIBS+=usr/lib/snmp_netgraph.so.3 17744OLD_LIBS+=usr/lib/snmp_pf.so.3 17745# 200505XX: ? 17746OLD_LIBS+=usr/lib/snmp_atm.so.2 17747OLD_LIBS+=usr/lib/snmp_mibII.so.2 17748OLD_LIBS+=usr/lib/snmp_netgraph.so.2 17749OLD_LIBS+=usr/lib/snmp_pf.so.2 17750# 2005XXXX: not ready for primetime yet 17751OLD_LIBS+=usr/lib/libautofs.so.1 17752# 200411XX: libxpg4 removal 17753OLD_LIBS+=usr/lib/libxpg4.so.3 17754# 200410XX: libm compatibility fix 17755OLD_LIBS+=lib/libm.so.2 17756# 20041001: version bump 17757OLD_LIBS+=lib/libreadline.so.4 17758OLD_LIBS+=usr/lib/libhistory.so.4 17759OLD_LIBS+=usr/lib/libopie.so.2 17760OLD_LIBS+=usr/lib/libpcap.so.2 17761# 20040925: bind9 import 17762OLD_LIBS+=usr/lib/libisc.so.1 17763# 200408XX 17764OLD_LIBS+=usr/lib/snmp_netgraph.so.1 17765# 200404XX 17766OLD_LIBS+=usr/lib/libsnmp.so.1 17767OLD_LIBS+=usr/lib/snmp_mibII.so.1 17768# 200309XX 17769OLD_LIBS+=usr/lib/libasn1.so.6 17770OLD_LIBS+=usr/lib/libhdb.so.6 17771OLD_LIBS+=usr/lib/libkadm5clnt.so.6 17772OLD_LIBS+=usr/lib/libkadm5srv.so.6 17773OLD_LIBS+=usr/lib/libkrb5.so.6 17774OLD_LIBS+=usr/lib/libroken.so.6 17775# 200304XX 17776OLD_LIBS+=usr/lib/libc.so.4 17777OLD_LIBS+=usr/lib/libc_r.so.4 17778OLD_LIBS+=usr/lib/libdevstat.so.2 17779OLD_LIBS+=usr/lib/libedit.so.3 17780OLD_LIBS+=usr/lib/libgmp.so.3 17781OLD_LIBS+=usr/lib/libmp.so.3 17782OLD_LIBS+=usr/lib/libpam.so.1 17783OLD_LIBS+=usr/lib/libposix1e.so.2 17784OLD_LIBS+=usr/lib/libskey.so.2 17785OLD_LIBS+=usr/lib/libusbhid.so.0 17786OLD_LIBS+=usr/lib/libvgl.so.2 17787# 20030218: OpenSSL 0.9.7 import 17788OLD_FILES+=usr/include/des.h 17789OLD_FILES+=usr/lib/libdes.a 17790OLD_FILES+=usr/lib/libdes.so 17791OLD_LIBS+=usr/lib/libdes.so.3 17792OLD_FILES+=usr/lib/libdes_p.a 17793# 200302XX 17794OLD_LIBS+=usr/lib/libacl.so.3 17795OLD_LIBS+=usr/lib/libasn1.so.5 17796OLD_LIBS+=usr/lib/libcrypto.so.2 17797OLD_LIBS+=usr/lib/libgssapi.so.5 17798OLD_LIBS+=usr/lib/libhdb.so.5 17799OLD_LIBS+=usr/lib/libkadm.so.3 17800OLD_LIBS+=usr/lib/libkadm5clnt.so.5 17801OLD_LIBS+=usr/lib/libkadm5srv.so.5 17802OLD_LIBS+=usr/lib/libkafs.so.3 17803OLD_LIBS+=usr/lib/libkafs5.so.5 17804OLD_LIBS+=usr/lib/libkdb.so.3 17805OLD_LIBS+=usr/lib/libkrb.so.3 17806OLD_LIBS+=usr/lib/libroken.so.5 17807OLD_LIBS+=usr/lib/libssl.so.2 17808OLD_LIBS+=usr/lib/pam_kerberosIV.so 17809# 200208XX 17810OLD_LIBS+=usr/lib/libgssapi.so.4 17811# 200203XX 17812OLD_LIBS+=usr/lib/libss.so.3 17813OLD_LIBS+=usr/lib/libusb.so.0 17814# 200112XX 17815OLD_LIBS+=usr/lib/libfetch.so.2 17816# 200110XX 17817OLD_LIBS+=usr/lib/libgssapi.so.3 17818# 200104XX 17819OLD_LIBS+=usr/lib/libdescrypt.so.2 17820OLD_LIBS+=usr/lib/libscrypt.so.2 17821# 200102XX 17822OLD_LIBS+=usr/lib/libcrypto.so.1 17823OLD_LIBS+=usr/lib/libssl.so.1 17824# 200009XX 17825OLD_LIBS+=usr/lib/libRSAglue.so.1 17826OLD_LIBS+=usr/lib/librsaINTL.so.1 17827OLD_LIBS+=usr/lib/librsaUSA.so.1 17828# 200006XX 17829OLD_LIBS+=usr/lib/libalias.so.3 17830OLD_LIBS+=usr/lib/libfetch.so.1 17831OLD_LIBS+=usr/lib/libipsec.so.0 17832# 200005XX 17833OLD_LIBS+=usr/lib/libxpg4.so.2 17834# 200002XX 17835OLD_LIBS+=usr/lib/libc.so.3 17836OLD_LIBS+=usr/lib/libcurses.so.2 17837OLD_LIBS+=usr/lib/libdialog.so.3 17838OLD_LIBS+=usr/lib/libedit.so.2 17839OLD_LIBS+=usr/lib/libf2c.so.2 17840OLD_LIBS+=usr/lib/libftpio.so.4 17841OLD_LIBS+=usr/lib/libg++.so.4 17842OLD_LIBS+=usr/lib/libhistory.so.3 17843OLD_LIBS+=usr/lib/libmytinfo.so.2 17844OLD_LIBS+=usr/lib/libncurses.so.3 17845OLD_LIBS+=usr/lib/libreadline.so.3 17846OLD_LIBS+=usr/lib/libss.so.2 17847OLD_LIBS+=usr/lib/libtermcap.so.2 17848OLD_LIBS+=usr/lib/libutil.so.2 17849OLD_LIBS+=usr/lib/libvgl.so.1 17850OLD_LIBS+=usr/lib/libwrap.so.2 17851# ??? 17852OLD_LIBS+=usr/lib/libarchive.so.2 17853OLD_LIBS+=usr/lib/libbsnmp.so.1 17854OLD_LIBS+=usr/lib/libc_r.so.6 17855OLD_LIBS+=usr/lib/libcipher.so.2 17856OLD_LIBS+=usr/lib/libgssapi.so.6 17857OLD_LIBS+=usr/lib/libkse.so.1 17858OLD_LIBS+=usr/lib/liblwres.so.3 17859OLD_LIBS+=usr/lib/pam_ftp.so.2 17860 17861# 20040925: bind9 import 17862OLD_DIRS+=usr/share/doc/bind/html 17863OLD_DIRS+=usr/share/doc/bind/misc 17864OLD_DIRS+=usr/share/doc/bind/ 17865# ??? 17866OLD_DIRS+=usr/include/g++/std 17867OLD_DIRS+=usr/include/msdosfs 17868OLD_DIRS+=usr/include/ntfs 17869OLD_DIRS+=usr/include/nwfs 17870OLD_DIRS+=usr/include/ufs/mfs 17871# 20011001: UUCP migration to ports 17872OLD_DIRS+=usr/libexec/uucp 17873 17874 17875.include "tools/build/mk/OptionalObsoleteFiles.inc" 17876